diff --git a/.gitignore b/.gitignore index df29f7aa..15489c2c 100644 --- a/.gitignore +++ b/.gitignore @@ -30,4 +30,7 @@ __pycache__/ src/api/.venv/* src/api/build/ src/api/Pipfile.lock -*.log \ No newline at end of file +*.log# R build artifacts +*.Rcheck/ +*.tar.gz + diff --git a/src/r-api/swatplusEditoR/DESCRIPTION b/src/r-api/swatplusEditoR/DESCRIPTION new file mode 100644 index 00000000..d652eff4 --- /dev/null +++ b/src/r-api/swatplusEditoR/DESCRIPTION @@ -0,0 +1,29 @@ +Package: swatplusEditoR +Title: R Interface to SWAT+ Editor API +Version: 0.1.0 +Authors@R: + person("SWAT+ Editor", "Development Team", role = c("aut", "cre"), + email = "swatplus@example.com") +Description: Provides an R interface to the SWAT+ Editor project database. + Supports direct SQLite access for managing weather stations, updating model + parameters, configuring groundwater flow (GWFLOW), and writing SWAT+ model + configuration files. Works with project objects containing GIS data stored + in SQLite databases with gis_* tables. +License: GPL (>= 3) +Encoding: UTF-8 +Roxygen: list(markdown = TRUE) +RoxygenNote: 7.3.3 +Imports: + DBI, + RSQLite +Suggests: + testthat (>= 3.0.0), + httr, + jsonlite, + knitr, + rmarkdown, + rQSWATPlus +Remotes: + limnotrack/QSWATPlus/rQSWATPlus@copilot/develop-r-package-for-qgis-plugin +VignetteBuilder: knitr +Config/testthat/edition: 3 diff --git a/src/r-api/swatplusEditoR/NAMESPACE b/src/r-api/swatplusEditoR/NAMESPACE new file mode 100644 index 00000000..6bd9d38d --- /dev/null +++ b/src/r-api/swatplusEditoR/NAMESPACE @@ -0,0 +1,50 @@ +# Generated by roxygen2: do not edit by hand + +export(add_weather_generators) +export(add_weather_stations) +export(check_swatplus) +export(create_project_db) +export(get_gwflow_base) +export(get_gwflow_status) +export(get_gwflow_zones) +export(get_project_config) +export(get_project_info) +export(get_wgn_cfsr_world) +export(init_gwflow) +export(list_weather_stations) +export(load_project) +export(match_weather_stations) +export(open_project_db) +export(read_gis_aquifers) +export(read_gis_channels) +export(read_gis_data) +export(read_gis_deep_aquifers) +export(read_gis_hrus) +export(read_gis_lsus) +export(read_gis_points) +export(read_gis_routing) +export(read_gis_subbasins) +export(read_gis_water) +export(read_swat) +export(remove_weather_stations) +export(run_swatplus) +export(set_print_options) +export(set_simulation_time) +export(set_weather_dir) +export(setup_project) +export(swatplus_exe) +export(update_gwflow_base) +export(update_gwflow_zones) +export(update_parameters) +export(update_weather_station) +export(write_config_files) +importFrom(DBI,dbConnect) +importFrom(DBI,dbDisconnect) +importFrom(DBI,dbExecute) +importFrom(DBI,dbGetQuery) +importFrom(DBI,dbListTables) +importFrom(DBI,dbReadTable) +importFrom(DBI,dbWriteTable) +importFrom(RSQLite,SQLite) +importFrom(rQSWATPlus,qswat_write_database) +importFrom(utils,tail) diff --git a/src/r-api/swatplusEditoR/R/check_swatplus.R b/src/r-api/swatplusEditoR/R/check_swatplus.R new file mode 100644 index 00000000..8c9f7b6b --- /dev/null +++ b/src/r-api/swatplusEditoR/R/check_swatplus.R @@ -0,0 +1,901 @@ +#' Check SWAT+ input file consistency +#' +#' @inheritParams write_config_files +#' +#' @returns A list of issues found, or an empty list if no issues detected. Each issue is a character string describing the problem. +#' @export +#' + +check_swatplus <- function(project, output_dir) { + + issues <- list() + + cat("=== SWAT+ Connectivity Check ===\n\n") + + # ── 1. Object counts ────────────────────────────────────────────────────── + cat("-- 1. Object counts (object.cnt vs actual file rows) --\n") + + cnt <- read_swat("object.cnt", output_dir) + + if (!is.null(cnt)) { + checks <- list( + hru = list(file = "hru-data.hru", col = "hru"), + rtu = list(file = "rout_unit.ele", col = "hru"), + aqu = list(file = "aquifer.aqu", col = "aqu"), + cha = list(file = "chandeg.con", col = "lcha") + ) + + for (nm in names(checks)) { + chk <- checks[[nm]] + dat <- read_swat(chk$file, output_dir, skip = 1) + if (is.null(dat)) next + + actual <- nrow(dat) + declared <- cnt[[chk$col]] + + if (length(declared) == 0) { + cat(sprintf(" [WARN] Column '%s' not found in object.cnt\n", chk$col)) + issues[[length(issues) + 1]] <- sprintf("object.cnt missing column: %s", chk$col) + } else if (actual != declared) { + msg <- sprintf(" [MISMATCH] %s: object.cnt says %d, file has %d rows", + chk$file, declared, actual) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] %-20s %d rows\n", chk$file, actual)) + } + } + } + + # ── 2. HRU consistency ─────────────────────────────────────────────────── + cat("\n-- 2. HRU name consistency (hru.con vs hru-data.hru) --\n") + + hru_con <- read_swat("hru.con", output_dir) + hru_data <- read_swat("hru-data.hru", output_dir) + + if (!is.null(hru_con) && !is.null(hru_data)) { + missing_hru <- setdiff(hru_con[[1]], hru_data[[1]]) + if (length(missing_hru) > 0) { + msg <- sprintf(" [MISMATCH] %d HRU names in hru.con missing from hru-data.hru", + length(missing_hru)) + cat(msg, "\n") + cat(" First 5:", paste(head(missing_hru, 5), collapse = ", "), "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] All %d HRU names match\n", nrow(hru_con))) + } + } + + # ── 3. Routing unit consistency ─────────────────────────────────────────── + cat("\n-- 3. Routing unit name consistency (rout_unit.con vs rout_unit.ele) --\n") + + rtu_con <- read_swat("rout_unit.con", output_dir) + rtu_ele <- read_swat("rout_unit.ele", output_dir) + + if (!is.null(rtu_con) && !is.null(rtu_ele)) { + missing_rtu <- setdiff(rtu_con[[1]], rtu_ele[[1]]) + if (length(missing_rtu) > 0) { + msg <- sprintf(" [MISMATCH] %d routing unit names in rout_unit.con missing from rout_unit.ele", + length(missing_rtu)) + cat(msg, "\n") + cat(" First 5:", paste(head(missing_rtu, 5), collapse = ", "), "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] All %d routing unit names match\n", nrow(rtu_con))) + } + } + + # ── 4. Outflow targets in rout_unit.con ─────────────────────────────────── + cat("\n-- 4. Outflow targets in rout_unit.con --\n") + + cha_con <- read_swat("chandeg.con", output_dir) + aqu_con <- read_swat("aquifer.con", output_dir) + + if (!is.null(rtu_con) && !is.null(cha_con) && !is.null(aqu_con)) { + valid_targets <- c( + cha_con[[1]], + aqu_con[[1]], + rtu_con[[1]], + "null" + ) + + # Outflow object name columns — typically col 7 onwards (obj_typ + obj_name pairs) + # rout_unit.con structure: name, area, lat, lon, elev, wst, obj_typ, obj_name, ... + outflow_cols <- rtu_con[, 8, drop = TRUE] # obj_name column + + bad_targets <- setdiff( + unique(outflow_cols[!is.na(outflow_cols)]), + valid_targets + ) + + if (length(bad_targets) > 0) { + msg <- sprintf(" [MISMATCH] %d outflow targets not found in chandeg.con / aquifer.con", + length(bad_targets)) + cat(msg, "\n") + cat(" Bad targets:", paste(head(bad_targets, 5), collapse = ", "), "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(" [OK] All outflow targets are valid\n") + } + } + + # ── 5. Weather station name consistency ─────────────────────────────────── + cat("\n-- 5. Weather station names (weather-sta.cli vs weather-wgn.cli) --\n") + + sta <- read_swat("weather-sta.cli", output_dir) + wgn <- read_wgn_cli(output_dir = output_dir) + + if (!is.null(sta) && !is.null(wgn)) { + missing_wgn <- setdiff(sta[[2]], wgn$summary$name) + if (length(missing_wgn) > 0) { + msg <- sprintf(" [MISMATCH] %d station names in weather-sta.cli missing from weather-wgn.cli", + length(missing_wgn)) + cat(msg, "\n") + cat(" Missing:", paste(head(missing_wgn, 5), collapse = ", "), "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] All %d weather station names match\n", nrow(sta))) + } + } + + # ── 6. Weather station count matches project HRU subbasin count ─────────── + cat("\n-- 6. Weather station count vs subbasin count --\n") + + n_subbasins <- length(unique(project$hru_data$subbasin)) + n_stations <- if (!is.null(sta)) nrow(sta) else NA + + if (!is.na(n_stations)) { + if (n_stations != n_subbasins) { + msg <- sprintf(" [WARN] %d weather stations but %d subbasins in project", + n_stations, n_subbasins) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] %d stations match %d subbasins\n", n_stations, n_subbasins)) + } + } + + # ── 7. Channel count matches project stream topology ────────────────────── + cat("\n-- 7. Channel count vs project stream topology --\n") + + n_channels_project <- nrow(project$channel_topology) + n_channels_file <- if (!is.null(cha_con)) nrow(cha_con) else NA + + if (!is.na(n_channels_file)) { + if (n_channels_file != n_channels_project) { + msg <- sprintf(" [WARN] %d channels in chandeg.con but %d in project$channel_topology", + n_channels_file, n_channels_project) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] %d channels match project topology\n", n_channels_file)) + } + } + + # ── 8. HRU count matches project hru_data ──────────────────────────────── + cat("\n-- 8. HRU count vs project$hru_data --\n") + + n_hrus_project <- nrow(project$hru_data) + n_hrus_file <- if (!is.null(hru_data)) nrow(hru_data) else NA + + if (!is.na(n_hrus_file)) { + if (n_hrus_file != n_hrus_project) { + msg <- sprintf(" [WARN] %d HRUs in hru-data.hru but %d in project$hru_data", + n_hrus_file, n_hrus_project) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] %d HRUs match project$hru_data\n", n_hrus_file)) + } + } + + # ── 9. file.cio validation ─────────────────────────────────────────────── + cat("\n-- 9. file.cio validation --\n") + + cio_path <- file.path(output_dir, "file.cio") + + if (!file.exists(cio_path)) { + msg <- " [MISSING] file.cio not found" + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + + cio_lines <- readLines(cio_path) + + # Check editor version resolved (vNA indicates a write failure) + if (grepl("vNA", cio_lines[1])) { + msg <- " [WARN] file.cio header shows 'vNA' - editor version not resolved during write" + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } + + # Parse entries: split each line into category + file entries + # Skip title line (line 1) + cio_entries <- lapply(cio_lines[-1], function(l) { + parts <- strsplit(trimws(l), "\\s+")[[1]] + list(category = parts[1], files = parts[-1]) + }) + + # Count how many categories are all-null + all_null <- sapply(cio_entries, function(e) all(e$files == "null")) + n_all_null <- sum(all_null) + n_categories <- length(cio_entries) + + if (n_all_null == n_categories) { + msg <- " [ERROR] file.cio has all entries set to null - no input files will be read" + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else if (n_all_null > 0) { + cat(sprintf(" [WARN] %d of %d categories are fully null\n", n_all_null, n_categories)) + } + + # Check that files referenced in file.cio actually exist in output_dir + existing_files <- list.files(output_dir) + referenced <- unique(unlist(lapply(cio_entries, `[[`, "files"))) + referenced <- referenced[referenced != "null"] + + missing_refs <- setdiff(referenced, existing_files) + if (length(missing_refs) > 0) { + msg <- sprintf(" [MISSING] %d file(s) referenced in file.cio not found on disk", + length(missing_refs)) + cat(msg, "\n") + cat(" Missing:", paste(head(missing_refs, 5), collapse = ", "), "\n") + issues[[length(issues) + 1]] <- msg + } else if (length(referenced) > 0) { + cat(sprintf(" [OK] All %d files referenced in file.cio exist on disk\n", + length(referenced))) + } + + # Check key categories have non-null entries + key_categories <- c("simulation", "basin", "climate", "connect", + "hru", "aquifer", "soils", "hydrology") + + category_names <- sapply(cio_entries, `[[`, "category") + + for (cat_name in key_categories) { + idx <- which(category_names == cat_name) + if (length(idx) == 0) { + msg <- sprintf(" [WARN] Category '%s' not found in file.cio", cat_name) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat_files <- cio_entries[[idx]]$files + if (all(cat_files == "null")) { + msg <- sprintf(" [ERROR] Category '%s' is all null in file.cio", cat_name) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] %-20s %s\n", cat_name, + paste(cat_files[cat_files != "null"], collapse = ", "))) + } + } + } + } + + # ── 10. Plant community checks ─────────────────────────────────────────── + cat("\n-- 10. Plant community checks --\n") + + plt <- read_swat("plants.plt", output_dir) + lum <- read_swat("landuse.lum", output_dir) + + if (!is.null(hru_data) && !is.null(lum)) { + # Check lu_mgt pointers in hru-data.hru exist in landuse.lum + missing_lum <- setdiff(hru_data$lu_mgt, lum$name) + if (length(missing_lum) > 0) { + msg <- sprintf(" [ERROR] %d lu_mgt value(s) in hru-data.hru missing from landuse.lum: %s", + length(missing_lum), + paste(head(missing_lum, 5), collapse = ", ")) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] All %d hru-data.hru lu_mgt names found in landuse.lum\n", + length(unique(hru_data$lu_mgt)))) + } + } + + if (!is.null(lum)) { + + # Detect whether plnt_com is integer IDs or names — IDs indicate a writer bug + plnt_col <- if ("plnt_com" %in% names(lum)) { + "plnt_com" + } else if ("plnt_com_id" %in% names(lum)) { + "plnt_com_id" + } else { + NULL + } + + if (is.null(plnt_col)) { + msg <- " [WARN] Neither 'plnt_com' nor 'plnt_com_id' column found in landuse.lum" + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else if (plnt_col == "plnt_com_id" || is.numeric(lum[[plnt_col]])) { + msg <- sprintf( + " [ERROR] landuse.lum column '%s' contains integer IDs instead of plant community names - writer must resolve IDs to names before writing", + plnt_col + ) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(" [OK] landuse.lum plnt_com column contains names (not integer IDs)\n") + } + } + + if (!is.null(plt)) { + # Check for duplicate plant codes + dupes <- plt$name[duplicated(plt$name)] + if (length(dupes) > 0) { + msg <- sprintf(" [ERROR] %d duplicate plant codes in plants.plt: %s", + length(dupes), paste(head(dupes, 5), collapse = ", ")) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] plants.plt: %d unique plant codes, no duplicates\n", nrow(plt))) + } + + # Info only - show available urban/water codes + urban_water_codes <- plt$name[grepl("^ur|^wat", plt$name, ignore.case = TRUE)] + cat(sprintf(" [INFO] Available urban/water codes in plants.plt: %s\n", + paste(urban_water_codes, collapse = ", "))) + } + + # ── 11. HRU routing element checks ─────────────────────────────────────── + cat("\n-- 11. HRU routing element checks (rout_unit.ele) --\n") + + if (!is.null(rtu_ele) && !is.null(hru_data)) { + # rout_unit.ele columns: id, name, obj_typ, obj_id, frac, dlr + hru_eles <- rtu_ele[rtu_ele$obj_typ == "hru", , drop = FALSE] + + if (nrow(hru_eles) == 0) { + msg <- " [WARN] No HRU elements found in rout_unit.ele" + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + # Check all obj_id values reference valid HRU IDs (sequential 1..n) + max_hru_id <- nrow(hru_data) + bad_ids <- hru_eles$obj_id[hru_eles$obj_id < 1 | hru_eles$obj_id > max_hru_id] + if (length(bad_ids) > 0) { + msg <- sprintf( + " [ERROR] %d rout_unit.ele HRU elements have obj_id outside valid range [1, %d]", + length(bad_ids), max_hru_id) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] All %d HRU element obj_ids are valid\n", nrow(hru_eles))) + } + } + } + + # ── 12. Every HRU appears in rout_unit.ele ─────────────────────────────── + cat("\n-- 12. Every HRU accounted for in routing elements --\n") + + if (!is.null(rtu_ele) && !is.null(hru_con)) { + hru_eles <- rtu_ele[rtu_ele$obj_typ == "hru", , drop = FALSE] + hru_names_in_ele <- hru_eles$name + hru_names_in_con <- hru_con$name + + missing_from_ele <- setdiff(hru_names_in_con, hru_names_in_ele) + if (length(missing_from_ele) > 0) { + msg <- sprintf(" [ERROR] %d HRU(s) in hru.con not found in rout_unit.ele", + length(missing_from_ele)) + cat(msg, "\n") + cat(" First 5:", paste(head(missing_from_ele, 5), collapse = ", "), "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] All %d HRUs from hru.con appear in rout_unit.ele\n", + length(hru_names_in_con))) + } + } + + # ── 13. rout_unit.ele fraction sums per RTU ────────────────────────────── + cat("\n-- 13. Routing unit element fraction sums --\n") + + if (!is.null(rtu_ele)) { + + # Re-read rout_unit.def with enough columns + rtu_def_raw <- read.table( + file.path(output_dir, "rout_unit.def"), + skip = 1, header = TRUE, fill = TRUE, + col.names = c("id", "name", "elem_tot", paste0("e", seq_len(20))) + ) + + # Expand range notation into full element ID sequences + expand_ranges <- function(parts) { + parts <- as.integer(parts[!is.na(parts)]) + if (length(parts) == 0) return(integer(0)) + + result <- integer(0) + i <- 1L + + while (i <= length(parts)) { + val <- parts[i] + if (val > 0) { + # Check if next value is negative (range end) + if (i + 1L <= length(parts) && parts[i + 1L] < 0) { + # Range: val through abs(next) + result <- c(result, seq(val, abs(parts[i + 1L]))) + i <- i + 2L + } else { + # Single element + result <- c(result, val) + i <- i + 1L + } + } else { + i <- i + 1L # skip orphan negatives + } + } + result + } + + frac_issues <- lapply(seq_len(nrow(rtu_def_raw)), function(i) { + rtu_name <- rtu_def_raw$name[i] + elem_tot <- as.integer(rtu_def_raw$elem_tot[i]) + + if (is.na(elem_tot) || elem_tot == 0) return(NULL) + + # Get element parts (columns 4 onwards) + parts <- as.numeric(rtu_def_raw[i, 4:(3 + elem_tot)]) + + # Expand ranges to full element ID list + all_ele_ids <- expand_ranges(parts) + + if (length(all_ele_ids) == 0) return(NULL) + + # Sum fractions from rout_unit.ele + hru_fracs <- rtu_ele$frac[rtu_ele$id %in% all_ele_ids] + frac_sum <- sum(hru_fracs, na.rm = TRUE) + + if (abs(frac_sum - 1.0) > 0.01) { + sprintf( + "RTU %s: frac sum = %.4f (expected 1.0, %d elements expanded from parts: %s)", + rtu_name, frac_sum, length(all_ele_ids), + paste(parts, collapse = ", ") + ) + } else { + NULL + } + }) + + frac_issues <- Filter(Negate(is.null), frac_issues) + + if (length(frac_issues) > 0) { + msg <- sprintf(" [WARN] %d RTU(s) have HRU fractions not summing to 1.0", + length(frac_issues)) + cat(msg, "\n") + cat(paste(" ", head(frac_issues, 5), collapse = "\n"), "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] All %d RTUs have HRU fractions summing to 1.0\n", + nrow(rtu_def_raw))) + } + } + + # ── 14. Outflow connectivity in connection files ───────────────────────── + cat("\n-- 14. Connection outflow validation --\n") + + # Parse connection files to check outflow targets + # Connection files have variable-width rows: base columns + repeated outflow groups + # Base: id, name, gis_id, area, lat, lon, elev, elem, wst, cst, ovfl, rule, out_tot + # Then: [obj_typ, obj_id, hyd_typ, frac] repeated out_tot times + + .parse_con_outflows <- function(con_file) { + dat <- read_swat(con_file, output_dir) + if (is.null(dat)) return(NULL) + # The out_tot column tells how many outflow groups follow + if (!"out_tot" %in% names(dat)) return(NULL) + + # Connection files are wide-format; outflow columns appear after out_tot + # Column positions: 1=id, 2=name, ..., 13=out_tot, 14=obj_typ, 15=obj_id, ... + outs <- list() + out_tot_col <- which(names(dat) == "out_tot") + if (length(out_tot_col) == 0) return(NULL) + + # Check if there are columns after out_tot (outflow data) + remaining_cols <- ncol(dat) - out_tot_col + if (remaining_cols < 4) return(NULL) + + # Extract obj_typ and obj_id from the first outflow group + obj_typ_col <- out_tot_col + 1 + obj_id_col <- out_tot_col + 2 + + data.frame( + con_name = dat[[2]], + out_tot = dat$out_tot, + obj_typ = dat[[obj_typ_col]], + obj_id = dat[[obj_id_col]], + stringsAsFactors = FALSE + ) + } + + # Check hru.con outflows + hru_outs <- .parse_con_outflows("hru.con") + if (!is.null(hru_outs)) { + n_with_outs <- sum(hru_outs$out_tot > 0, na.rm = TRUE) + n_total <- nrow(hru_outs) + if (n_with_outs == 0 && n_total > 0) { + cat(sprintf(" [INFO] hru.con: %d connections, none have outflow targets (normal for standard mode)\n", n_total)) + } else { + cat(sprintf(" [OK] hru.con: %d of %d connections have outflow targets\n", + n_with_outs, n_total)) + } + } + + # Check rout_unit.con outflows + rtu_outs <- .parse_con_outflows("rout_unit.con") + if (!is.null(rtu_outs) && !is.null(cha_con)) { + rtu_with_outs <- rtu_outs[rtu_outs$out_tot > 0, , drop = FALSE] + n_with_outs <- nrow(rtu_with_outs) + n_total <- nrow(rtu_outs) + + if (n_with_outs == 0 && n_total > 0) { + msg <- " [WARN] rout_unit.con: no connections have outflow targets - routing may be broken" + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + # Check obj_typ values are valid + valid_obj_typs <- c("sdc", "ru", "aqu", "res", "hru") + bad_typs <- setdiff(unique(rtu_with_outs$obj_typ), valid_obj_typs) + if (length(bad_typs) > 0) { + msg <- sprintf(" [WARN] rout_unit.con has unknown obj_typ values: %s", + paste(bad_typs, collapse = ", ")) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] rout_unit.con: %d of %d connections have valid outflow targets\n", + n_with_outs, n_total)) + } + } + } + + # Check chandeg.con outflows + cha_outs <- .parse_con_outflows("chandeg.con") + if (!is.null(cha_outs)) { + cha_with_outs <- cha_outs[cha_outs$out_tot > 0, , drop = FALSE] + n_with_outs <- nrow(cha_with_outs) + n_total <- nrow(cha_outs) + + # Exactly one channel should have out_tot == 0 (the outlet) + n_outlets <- sum(cha_outs$out_tot == 0, na.rm = TRUE) + if (n_outlets == 0 && n_total > 0) { + msg <- " [WARN] chandeg.con: no outlet channel found (all channels have outflow targets)" + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else if (n_outlets > 1) { + msg <- sprintf(" [WARN] chandeg.con: %d channels have no outflow (expected 1 outlet)", n_outlets) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] chandeg.con: %d channels with outflows, %d outlet(s)\n", + n_with_outs, n_outlets)) + } + } + + # ── 15. HRU hydrology_hyd consistency ────────────────────────────────────── + cat("\n-- 15. HRU hydrology consistency (hru-data.hru vs hydrology.hyd) --\n") + + hyd_file <- read_swat("hydrology.hyd", output_dir) + + if (!is.null(hru_data) && !is.null(hyd_file)) { + # hru-data.hru has a hydro column that references hydrology.hyd names + hydro_col <- if ("hydro" %in% names(hru_data)) "hydro" else + if ("hydro_id" %in% names(hru_data)) "hydro_id" else NULL + + if (!is.null(hydro_col)) { + n_hrus <- nrow(hru_data) + n_hyds <- nrow(hyd_file) + if (n_hyds < n_hrus) { + msg <- sprintf( + " [WARN] Only %d hydrology.hyd entries but %d HRUs - some HRUs lack hydrology", + n_hyds, n_hrus) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] %d hydrology.hyd entries cover %d HRUs\n", n_hyds, n_hrus)) + } + } else { + cat(" [SKIP] Could not find hydro/hydro_id column in hru-data.hru\n") + } + } + + # ── 16. HRU topography consistency ────────────────────────────────────── + cat("\n-- 16. HRU topography consistency (hru-data.hru vs topography.hyd) --\n") + + topo_file <- read_swat("topography.hyd", output_dir) + + if (!is.null(hru_data) && !is.null(topo_file)) { + # Each HRU should have a topo entry + topo_col <- if ("topo" %in% names(hru_data)) "topo" else + if ("topo_id" %in% names(hru_data)) "topo_id" else NULL + + if (!is.null(topo_col)) { + # Check that referenced topo names exist + if (is.character(hru_data[[topo_col]])) { + missing_topo <- setdiff(hru_data[[topo_col]], topo_file$name) + if (length(missing_topo) > 0) { + msg <- sprintf( + " [ERROR] %d topo references in hru-data.hru missing from topography.hyd", + length(missing_topo)) + cat(msg, "\n") + cat(" First 5:", paste(head(missing_topo, 5), collapse = ", "), "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] All %d HRU topo references found in topography.hyd\n", + nrow(hru_data))) + } + } else { + # ID-based reference: count check + n_hru_topos <- sum(grepl("hru", topo_file$name, ignore.case = TRUE)) + n_rtu_topos <- nrow(topo_file) - n_hru_topos + cat(sprintf(" [INFO] topography.hyd: %d total entries (%d RTU-level, %d HRU-level)\n", + nrow(topo_file), n_rtu_topos, n_hru_topos)) + if (n_hru_topos < nrow(hru_data)) { + msg <- sprintf( + " [WARN] Only %d HRU topography entries but %d HRUs", + n_hru_topos, nrow(hru_data)) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } + } + } else { + cat(" [SKIP] Could not find topo/topo_id column in hru-data.hru\n") + } + } + + # ── 17. ls_unit_ele completeness ────────────────────────────────────────── + cat("\n-- 17. Landscape unit element completeness (ls_unit.ele) --\n") + + ls_ele_file <- read_swat("ls_unit.ele", output_dir) + # ls_unit.def row count should match unique LSU count + ls_def_file <- read_swat("ls_unit.def", output_dir) + + if (!is.null(ls_ele_file) && !is.null(hru_data)) { + + # Row count should match HRU count (one row per HRU) + n_ls_eles <- nrow(ls_ele_file) + n_hrus_expected <- nrow(hru_data) + + if (n_ls_eles != n_hrus_expected) { + msg <- sprintf( + " [WARN] ls_unit.ele has %d rows but expected %d (one per HRU)", + n_ls_eles, n_hrus_expected) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] ls_unit.ele has %d rows matching HRU count\n", + n_ls_eles)) + } + + # Unique ls_unit_def_id count should match subbasin/LSU count + if ("ls_unit_def_id" %in% names(ls_ele_file)) { + n_lsu_ids <- length(unique(ls_ele_file$ls_unit_def_id)) + n_lsus_expected <- length(unique(hru_data$id)) + + if (n_lsu_ids != n_lsus_expected) { + msg <- sprintf( + " [WARN] ls_unit.ele has %d unique ls_unit_def_ids but expected %d LSUs", + n_lsu_ids, n_lsus_expected) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] %d unique LSU IDs matching subbasin count\n", + n_lsu_ids)) + } + } + + # bsn_frac should sum to ~1.0 across all HRU rows + if ("bsn_frac" %in% names(ls_ele_file)) { + bsn_sum <- sum(ls_ele_file$bsn_frac, na.rm = TRUE) + if (abs(bsn_sum - 1.0) > 0.01) { + msg <- sprintf( + " [WARN] ls_unit.ele bsn_frac sums to %.4f (expected ~1.0)", bsn_sum) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] bsn_frac sums to %.4f across all HRUs\n", bsn_sum)) + } + } + + # sub_frac should sum to ~1.0 per LSU + if (all(c("sub_frac", "ls_unit_def_id") %in% names(ls_ele_file))) { + sub_sums <- tapply(ls_ele_file$sub_frac, + ls_ele_file$ls_unit_def_id, sum) + bad_subs <- sum(abs(sub_sums - 1.0) > 0.01) + if (bad_subs > 0) { + msg <- sprintf( + " [WARN] %d LSU(s) have sub_frac not summing to 1.0 (range: %.4f - %.4f)", + bad_subs, min(sub_sums), max(sub_sums)) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] sub_frac sums to ~1.0 in all %d LSUs\n", + length(sub_sums))) + } + } + + if (!is.null(ls_def_file)) { + n_lsus_expected <- length(unique(hru_data$subbasin)) + if (nrow(ls_def_file) != n_lsus_expected) { + msg <- sprintf( + " [WARN] ls_unit.def has %d rows but expected %d LSUs", + nrow(ls_def_file), n_lsus_expected) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] ls_unit.def has %d rows matching LSU count\n", + nrow(ls_def_file))) + } + } + } + + # ── 18. HRU routing: hru_con columns ──────────────────────────────────── + cat("\n-- 18. HRU routing: hru.con structure --\n") + + if (!is.null(hru_con)) { + # Check that hru_con has the hru_id / hru column (FK to hru_data_hru) + has_hru_fk <- any(c("hru", "hru_id") %in% names(hru_con)) + if (!has_hru_fk) { + msg <- " [WARN] hru.con missing 'hru' / 'hru_id' column - HRU foreign key not set" + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(" [OK] hru.con has HRU foreign key column\n") + } + + # Check that hru_con has wst column (weather station assignment) + has_wst <- any(c("wst", "wst_id") %in% names(hru_con)) + if (!has_wst) { + msg <- " [WARN] hru.con missing 'wst' / 'wst_id' column - weather station not assigned" + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + # Check if any wst values are actually set (non-NA, non-null) + wst_col <- if ("wst" %in% names(hru_con)) "wst" else "wst_id" + n_wst_set <- sum(!is.na(hru_con[[wst_col]]) & hru_con[[wst_col]] != "null", na.rm = TRUE) + if (n_wst_set == 0) { + cat(sprintf(" [INFO] hru.con: wst column present but no weather stations assigned (%d HRUs)\n", + nrow(hru_con))) + } else { + cat(sprintf(" [OK] hru.con: %d of %d HRUs have weather stations assigned\n", + n_wst_set, nrow(hru_con))) + } + } + + # Check area > 0 + if ("area" %in% names(hru_con)) { + zero_area <- sum(hru_con$area <= 0 | is.na(hru_con$area)) + if (zero_area > 0) { + msg <- sprintf(" [WARN] %d HRU(s) in hru.con have zero or missing area", zero_area) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] All %d HRUs have positive area\n", nrow(hru_con))) + } + } + } + + # ── 19. HRU routing: rout_unit_ele references valid RTUs ──────────────── + cat("\n-- 19. HRU routing: rout_unit.ele RTU references --\n") + + if (!is.null(rtu_ele) && !is.null(rtu_con)) { + hru_eles <- rtu_ele[rtu_ele$obj_typ == "hru", , drop = FALSE] + + if (nrow(hru_eles) > 0) { + # rtu_ele doesn't have rtu_id in the file output, but we can check + # that each HRU name appears and fraction is valid + bad_frac <- sum(is.na(hru_eles$frac) | hru_eles$frac <= 0 | hru_eles$frac > 1.0001) + if (bad_frac > 0) { + msg <- sprintf(" [WARN] %d HRU element(s) in rout_unit.ele have invalid fraction", + bad_frac) + cat(msg, "\n") + issues[[length(issues) + 1]] <- msg + } else { + cat(sprintf(" [OK] All %d HRU elements have valid fractions (0, 1]\n", + nrow(hru_eles))) + } + } + } + + # ── Summary ─────────────────────────────────────────────────────────────── + cat("\n=== Summary ===\n") + if (length(issues) == 0) { + cat("No issues found. If SWAT+ still crashes, check diagnostics.out for runtime errors.\n") + } else { + cat(sprintf("%d issue(s) found:\n", length(issues))) + for (i in seq_along(issues)) { + cat(sprintf(" %d. %s\n", i, issues[[i]])) + } + } + + invisible(issues) +} + +read_wgn_cli <- function(output_dir) { + + path <- file.path(output_dir, "weather-wgn.cli") + + if (!file.exists(path)) { + stop("weather-wgn.cli not found in: ", output_dir) + } + + lines <- readLines(path) + + # Skip the first title line + lines <- lines[-1] + + # Monthly variable names come from the header row of the first station + # Header rows start with whitespace + "tmp_max_ave..." + # Station rows contain the station name (no leading space) + coords + n_months + + # Identify line types + is_header <- grepl("^\\s+tmp_max_ave", lines) + is_station <- !is_header & nchar(trimws(lines)) > 0 + is_monthly <- !is_header & !is_station & nchar(trimws(lines)) > 0 + + # Better approach: parse block by block + # Station line pattern: name, lat, lon, elev, n_months (no leading whitespace on name) + is_station_line <- grepl("^\\S+\\s+-?\\d+\\.\\d+\\s+-?\\d+\\.\\d+", lines) + is_header_line <- grepl("^\\s+tmp_max_ave", lines) + is_data_line <- !is_station_line & !is_header_line & nchar(trimws(lines)) > 0 + + station_idx <- which(is_station_line) + n_stations <- length(station_idx) + + # Parse monthly variable names from first header line + first_header <- lines[which(is_header_line)[1]] + mon_vars <- strsplit(trimws(first_header), "\\s+")[[1]] + + # Build results + stations <- vector("list", n_stations) + + for (i in seq_len(n_stations)) { + + # Parse station metadata line + sta_line <- trimws(lines[station_idx[i]]) + sta_parts <- strsplit(sta_line, "\\s+")[[1]] + + name <- sta_parts[1] + lat <- as.numeric(sta_parts[2]) + lon <- as.numeric(sta_parts[3]) + elev <- as.numeric(sta_parts[4]) + n_months <- as.integer(sta_parts[5]) + + # Data lines follow the header line after the station line + # Structure per station: station line, header line, 12 data lines + data_start <- station_idx[i] + 2 # skip station + header lines + data_end <- data_start + n_months - 1 + + monthly_lines <- lines[data_start:data_end] + + monthly_vals <- lapply(monthly_lines, function(l) { + as.numeric(strsplit(trimws(l), "\\s+")[[1]]) + }) + + monthly_df <- as.data.frame(do.call(rbind, monthly_vals)) + names(monthly_df) <- mon_vars + monthly_df$month <- seq_len(n_months) + monthly_df$name <- name + + stations[[i]] <- list( + name = name, + lat = lat, + lon = lon, + elev = elev, + n_months = n_months, + monthly = monthly_df + ) + } + + # Also return a flat summary table (one row per station) + summary_tbl <- data.frame( + name = sapply(stations, `[[`, "name"), + lat = sapply(stations, `[[`, "lat"), + lon = sapply(stations, `[[`, "lon"), + elev = sapply(stations, `[[`, "elev"), + n_months = sapply(stations, `[[`, "n_months") + ) + + list( + stations = stations, + summary = summary_tbl, + n_stations = n_stations + ) +} diff --git a/src/r-api/swatplusEditoR/R/db_connect.R b/src/r-api/swatplusEditoR/R/db_connect.R new file mode 100644 index 00000000..f2be4cfd --- /dev/null +++ b/src/r-api/swatplusEditoR/R/db_connect.R @@ -0,0 +1,105 @@ +# Database connection utilities for swatplusEditoR +# Direct SQLite access to SWAT+ Editor project databases + +#' Open a connection to the SWAT+ project database +#' +#' @param db_path Character. Path to the SQLite project database file. +#' @return A DBI connection object. +#' @export +#' @importFrom DBI dbConnect +#' @importFrom RSQLite SQLite +#' @examples +#' \dontrun{ +#' con <- open_project_db("/path/to/project.sqlite") +#' DBI::dbDisconnect(con) +#' } +open_project_db <- function(db_path) { + if (!file.exists(db_path)) { + stop("Database file not found: ", db_path, call. = FALSE) + } + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + # Enable foreign keys + + DBI::dbExecute(con, "PRAGMA foreign_keys = ON") + con +} + +#' List all tables in the project database +#' +#' @param con A DBI connection object. +#' @return Character vector of table names. +#' @importFrom DBI dbListTables +#' @keywords internal +list_db_tables <- function(con) { + DBI::dbListTables(con) +} + +#' Read a table from the project database +#' +#' @param con A DBI connection object. +#' @param table_name Character. Name of the table to read. +#' @return A data.frame with the table contents. +#' @importFrom DBI dbReadTable +#' @keywords internal +read_db_table <- function(con, table_name) { + tables <- DBI::dbListTables(con) + if (!table_name %in% tables) { + stop("Table '", table_name, "' not found in database. ", + "Available tables: ", paste(tables, collapse = ", "), call. = FALSE) + } + DBI::dbReadTable(con, table_name) +} + +#' Execute a query on the project database +#' +#' @param con A DBI connection object. +#' @param query Character. SQL query to execute. +#' @param params List. Optional query parameters. +#' @return A data.frame with query results. +#' @importFrom DBI dbGetQuery +#' @keywords internal +query_db <- function(con, query, params = NULL) { + if (is.null(params)) { + DBI::dbGetQuery(con, query) + } else { + DBI::dbGetQuery(con, query, params = params) + } +} + +#' Execute a statement on the project database (INSERT, UPDATE, DELETE) +#' +#' @param con A DBI connection object. +#' @param statement Character. SQL statement to execute. +#' @param params List. Optional statement parameters. +#' @return Number of affected rows. +#' @importFrom DBI dbExecute +#' @keywords internal +execute_db <- function(con, statement, params = NULL) { + if (is.null(params)) { + DBI::dbExecute(con, statement) + } else { + DBI::dbExecute(con, statement, params = params) + } +} + +#' Check if a table exists in the database +#' +#' @param con A DBI connection object. +#' @param table_name Character. Name of the table to check. +#' @return Logical. TRUE if the table exists. +#' @keywords internal +table_exists <- function(con, table_name) { + table_name %in% DBI::dbListTables(con) +} + +#' Safely close a database connection +#' +#' @param con A DBI connection object. +#' @importFrom DBI dbDisconnect +#' @keywords internal +close_db <- function(con) { + tryCatch( + DBI::dbDisconnect(con), + error = function(e) invisible(NULL) + ) +} diff --git a/src/r-api/swatplusEditoR/R/fileio.R b/src/r-api/swatplusEditoR/R/fileio.R new file mode 100644 index 00000000..51de4458 --- /dev/null +++ b/src/r-api/swatplusEditoR/R/fileio.R @@ -0,0 +1,317 @@ +# Low-level SWAT+ file formatting and writing utilities +# These mirror the Python helpers/utils.py and fileio/base.py formatting + +# ---- Format constants (matching Python helpers/utils.py) ---- +SWAT_STR_PAD <- 16L +SWAT_KEY_PAD <- 16L +SWAT_CODE_PAD <- 12L +SWAT_NUM_PAD <- 12L +SWAT_INT_PAD <- 8L +SWAT_DECIMALS <- 5L +SWAT_SPACES <- 2L +SWAT_NULL_STR <- "null" +SWAT_NULL_NUM <- "0" +SWAT_NON_ZERO_MIN <- 0.00001 + +#' Format a string value with padding (mirrors Python string_pad) +#' @param val Value to format. +#' @param pad Padding width. +#' @param align "right" or "left". +#' @param null_text Replacement text for NULL/NA values. +#' @return Formatted string. +#' @keywords internal +swat_string_pad <- function(val, pad = SWAT_STR_PAD, align = "right", + null_text = SWAT_NULL_STR) { + txt <- if (is.null(val) || is.na(val) || val == "") null_text else gsub(" ", "_", val) + fmt <- if (align == "right") { + paste0("%", pad, "s ") + } else { + paste0("%-", pad, "s ") + } + sprintf(fmt, txt) +} + +#' Format a numeric value with padding (mirrors Python num_pad) +#' @param val Numeric value. +#' @param decimals Number of decimal places. +#' @param pad Padding width. +#' @param align "right" or "left". +#' @param null_text Replacement for NULL/NA. +#' @param use_non_zero_min If TRUE, enforce minimum value. +#' @param non_zero_min Minimum value to use. +#' @return Formatted string. +#' @keywords internal +swat_num_pad <- function(val, decimals = SWAT_DECIMALS, pad = SWAT_NUM_PAD, + align = "right", null_text = SWAT_NULL_NUM, + use_non_zero_min = FALSE, non_zero_min = SWAT_NON_ZERO_MIN) { + if (is.null(val) || is.na(val)) { + return(swat_string_pad(null_text, pad, align, null_text)) + } + if (is.numeric(val)) { + if (use_non_zero_min && val < non_zero_min) val <- non_zero_min + txt <- formatC(val, format = "f", digits = decimals, width = 1) + } else { + txt <- as.character(val) + } + swat_string_pad(txt, pad, align, null_text) +} + +#' Format an integer value with padding (mirrors Python int_pad) +#' @param val Integer value. +#' @param pad Padding width. +#' @param align "right" or "left". +#' @return Formatted string. +#' @keywords internal +swat_int_pad <- function(val, pad = SWAT_INT_PAD, align = "right") { + swat_num_pad(val, decimals = 0, pad = pad, align = align, null_text = SWAT_NULL_NUM) +} + +#' Format a boolean value as y/n (mirrors Python write_bool_yn) +#' @param val Logical value. +#' @param pad Padding width. +#' @param align "right" or "left". +#' @return Formatted string. +#' @keywords internal +swat_bool_pad <- function(val, pad = SWAT_CODE_PAD, align = "right") { + yn <- if (isTRUE(as.logical(val))) "y" else "n" + swat_string_pad(yn, pad, align, SWAT_NULL_STR) +} + +#' Generate SWAT+ file meta line (mirrors Python get_meta_line) +#' @param file_name Output file name (basename only). +#' @param version Editor version string. +#' @param swat_version SWAT+ version string. +#' @return Meta line string. +#' @keywords internal +swat_meta_line <- function(file_name, version = NULL, swat_version = NULL) { + pkg_ver <- tryCatch(as.character(packageVersion("swatplusEditoR")), error = function(e) "unknown") + vtxt <- paste0(" v", pkg_ver) + svtxt <- if (!is.null(swat_version)) paste0("for SWAT+ ", swat_version) else "" + date_str <- format(Sys.time(), "%Y-%m-%d %H:%M") + paste0(basename(file_name), ": written by swatplusEditoR R package", vtxt, + " on ", date_str, " ", svtxt) +} + +#' Format a single value based on its R type for SWAT+ output +#' @param val Value to format. +#' @param col_name Column name for special handling. +#' @param is_header If TRUE, format as header text not data. +#' @return Formatted string. +#' @keywords internal +swat_format_value <- function(val, col_name = "", is_header = FALSE) { + if (is_header) { + nm <- tolower(col_name) + if (nm == "description" || nm == "desc") { + return(if (is.null(nm) || is.na(nm)) "" else nm) + } + if (nm == "name" || nm == "file_name") { + return(swat_string_pad(nm, SWAT_STR_PAD, "left")) + } + # Detect type from column name patterns for headers + return(swat_string_pad(nm, SWAT_STR_PAD, "right")) + } + + # Data value formatting + if (col_name == "description" || col_name == "desc") { + return(if (is.null(val) || is.na(val)) "" else as.character(val)) + } + if (col_name == "name" || col_name == "file_name") { + return(swat_string_pad(val, SWAT_STR_PAD, "left")) + } + if (is.logical(val)) { + return(swat_bool_pad(val)) + } + if (is.integer(val)) { + return(swat_int_pad(val)) + } + if (is.numeric(val)) { + return(swat_num_pad(val)) + } + swat_string_pad(val) +} + +#' Write a database table to a SWAT+ formatted text file +#' +#' Generic writer that queries a database table and writes it in standard +#' SWAT+ fixed-width format. Mimics Python's write_default_table(). +#' +#' @param con DBI database connection. +#' @param table_name Character. Name of the database table to query. +#' @param file_path Character. Full path for the output file. +#' @param version Character. Editor version string. +#' @param swat_version Character. SWAT+ version string. +#' @param ignore_id Logical. If TRUE, skip the 'id' column. +#' @param ignored_cols Character vector. Additional columns to skip. +#' @param query Character. Custom SQL query (overrides table_name). +#' @param write_count Logical. If TRUE, write row count line. +#' @param non_zero_min_cols Character vector. Columns to enforce non-zero minimum. +#' @param col_types Named list. Override column types: "int", "num", "str", "bool". +#' @param col_aligns Named list. Override column alignments. +#' @param col_pads Named list. Override column padding widths. +#' @param col_names Named list. Override header names for columns. +#' @return Invisible NULL. +#' @keywords internal +swat_write_table <- function(con, table_name, file_path, + version = NULL, swat_version = NULL, + ignore_id = FALSE, ignored_cols = character(0), + query = NULL, write_count = FALSE, + non_zero_min_cols = character(0), + col_types = list(), col_aligns = list(), + col_pads = list(), col_names = list()) { + # Get data + sql <- if (!is.null(query)) query else paste0("SELECT * FROM ", table_name, " ORDER BY id") + data <- tryCatch(query_db(con, sql), error = function(e) data.frame()) + if (nrow(data) == 0) return(invisible(NULL)) + + # Determine columns to write + cols <- names(data) + if (ignore_id) cols <- cols[cols != "id"] + cols <- cols[!cols %in% ignored_cols] + + # Open file and write + f <- tryCatch(file(file_path, "w"), + error = function(e) { + warning(sprintf("Failed to write file '%s': %s", + basename(file_path), e$message)) + NULL + }) + if (is.null(f)) return(invisible(NULL)) + on.exit(close(f)) + + tryCatch({ + # Meta line + writeLines(swat_meta_line(file_path, version, swat_version), f) + + # Count line + if (write_count) { + writeLines(as.character(nrow(data)), f) + } + + # Header line + header_parts <- vapply(cols, function(cn) { + display_name <- if (cn %in% names(col_names)) col_names[[cn]] else cn + align <- if (cn %in% names(col_aligns)) col_aligns[[cn]] else { + if (cn == "name" || cn == "file_name") "left" else "right" + } + pad <- if (cn %in% names(col_pads)) col_pads[[cn]] else NULL + + ctype <- if (cn %in% names(col_types)) col_types[[cn]] else NULL + if (is.null(ctype)) { + # Infer type from data + sample_val <- data[[cn]][!is.na(data[[cn]])] + if (length(sample_val) == 0) { + ctype <- "str" + } else { + sample_val <- sample_val[1] + if (is.integer(sample_val)) ctype <- "int" + else if (is.numeric(sample_val)) ctype <- "num" + else ctype <- "str" + } + } + if (cn == "description" || cn == "desc") { + return(tolower(display_name)) + } + if (is.null(pad)) { + pad <- switch(ctype, + int = SWAT_INT_PAD, + num = SWAT_NUM_PAD, + bool = SWAT_CODE_PAD, + SWAT_STR_PAD) + } + swat_string_pad(tolower(display_name), pad = pad, align = align) + }, character(1)) + writeLines(paste0(header_parts, collapse = ""), f) + + # Data rows + for (i in seq_len(nrow(data))) { + row_parts <- vapply(cols, function(cn) { + # Use sequential row number for id column (matching Python bug fix) + val <- if (cn == "id") i else data[[cn]][i] + align <- if (cn %in% names(col_aligns)) col_aligns[[cn]] else { + if (cn == "name" || cn == "file_name") "left" else "right" + } + pad <- if (cn %in% names(col_pads)) col_pads[[cn]] else NULL + + ctype <- if (cn %in% names(col_types)) col_types[[cn]] else NULL + if (is.null(ctype)) { + if (is.integer(val)) ctype <- "int" + else if (is.numeric(val)) ctype <- "num" + else if (is.logical(val)) ctype <- "bool" + else ctype <- "str" + } + + if (cn == "description" || cn == "desc") { + return(if (is.na(val) || is.null(val)) "" else as.character(val)) + } + + use_nzm <- cn %in% non_zero_min_cols + + if (is.null(pad)) { + pad <- switch(ctype, + int = SWAT_INT_PAD, + num = SWAT_NUM_PAD, + bool = SWAT_CODE_PAD, + SWAT_STR_PAD) + } + + switch(ctype, + int = swat_int_pad(val, pad = pad, align = align), + num = swat_num_pad(val, pad = pad, align = align, use_non_zero_min = use_nzm), + bool = swat_bool_pad(val, pad = pad, align = align), + swat_string_pad(val, pad = pad, align = align)) + }, character(1)) + writeLines(paste0(row_parts, collapse = ""), f) + } + }, error = function(e) { + warning(sprintf("Failed to write file '%s' from table '%s': %s", + basename(file_path), table_name, e$message)) + }) + + invisible(NULL) +} + +#' Get file names from file_cio for a classification section +#' @param con DBI connection. +#' @param section Character. Classification name (e.g. "simulation"). +#' @return Character vector of file names. +#' @keywords internal +get_cio_file_names <- function(con, section) { + # 1. Fixed the column name to default_file_name + sql <- "SELECT f.default_file_name FROM file_cio f + JOIN file_cio_classification c ON f.classification_id = c.id + WHERE c.name = ? ORDER BY f.order_in_class" + + result <- tryCatch( + query_db(con, sql, params = list(section)), + error = function(e) { + message("Database error: ", e$message) # Added message to see if it's actually crashing + return(data.frame(default_file_name = character(0))) + } + ) + + if (is.null(result) || nrow(result) == 0) return(character(0)) + + # 2. Match the column name here as well + result$default_file_name +} + +#' Get count of rows in a table (safely) +#' @param con DBI connection. +#' @param table_name Table name. +#' @return Integer count, 0 if table doesn't exist. +#' @keywords internal +safe_count <- function(con, table_name) { + tryCatch({ + result <- query_db(con, paste0("SELECT COUNT(*) as cnt FROM ", table_name)) + result$cnt[1] + }, error = function(e) 0L) +} + +#' Safely check if a table exists and has data +#' @param con DBI connection. +#' @param table_name Table name. +#' @return Logical. +#' @keywords internal +has_data <- function(con, table_name) { + safe_count(con, table_name) > 0 +} diff --git a/src/r-api/swatplusEditoR/R/gis_data.R b/src/r-api/swatplusEditoR/R/gis_data.R new file mode 100644 index 00000000..52425547 --- /dev/null +++ b/src/r-api/swatplusEditoR/R/gis_data.R @@ -0,0 +1,146 @@ +# GIS data reading functions for swatplusEditoR +# Read gis_* tables from the SWAT+ project SQLite database + +#' Read all GIS data from the project database +#' +#' Returns a list containing all available GIS tables as data.frames. +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A named list of data.frames for each GIS table present in the +#' database. +#' @export +#' @examples +#' \dontrun{ +#' gis <- read_gis_data(project) +#' names(gis) +#' head(gis$subbasins) +#' } +read_gis_data <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + tables <- list_db_tables(con) + gis_names <- c("gis_aquifers", "gis_channels", "gis_deep_aquifers", + "gis_hrus", "gis_lsus", "gis_points", "gis_routing", + "gis_subbasins", "gis_water") + + result <- list() + for (tbl in gis_names) { + short_name <- sub("^gis_", "", tbl) + if (tbl %in% tables) { + result[[short_name]] <- read_db_table(con, tbl) + } + } + + message("Read ", length(result), " GIS tables from database") + result +} + +#' Read GIS subbasins table +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A data.frame with subbasin data (area, slope, length, elevation). +#' @export +read_gis_subbasins <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + read_db_table(con, "gis_subbasins") +} + +#' Read GIS channels table +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A data.frame with channel data (length, slope, width, depth). +#' @export +read_gis_channels <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + read_db_table(con, "gis_channels") +} + +#' Read GIS HRUs table +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A data.frame with HRU data (landuse, soil, slope, area). +#' @export +read_gis_hrus <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + read_db_table(con, "gis_hrus") +} + +#' Read GIS landscape units table +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A data.frame with LSU data. +#' @export +read_gis_lsus <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + read_db_table(con, "gis_lsus") +} + +#' Read GIS aquifers table +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A data.frame with aquifer data. +#' @export +read_gis_aquifers <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + read_db_table(con, "gis_aquifers") +} + +#' Read GIS deep aquifers table +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A data.frame with deep aquifer data. +#' @export +read_gis_deep_aquifers <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + read_db_table(con, "gis_deep_aquifers") +} + +#' Read GIS water bodies table +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A data.frame with water body data. +#' @export +read_gis_water <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + read_db_table(con, "gis_water") +} + +#' Read GIS points table +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A data.frame with point feature data. +#' @export +read_gis_points <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + read_db_table(con, "gis_points") +} + +#' Read GIS routing table +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A data.frame with routing connectivity data. +#' @export +read_gis_routing <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + read_db_table(con, "gis_routing") +} diff --git a/src/r-api/swatplusEditoR/R/gwflow.R b/src/r-api/swatplusEditoR/R/gwflow.R new file mode 100644 index 00000000..0a559ec8 --- /dev/null +++ b/src/r-api/swatplusEditoR/R/gwflow.R @@ -0,0 +1,351 @@ +# Groundwater flow (GWFLOW) configuration for swatplusEditoR +# Enable, configure, and manage GWFLOW settings + +#' Get GWFLOW status +#' +#' Checks whether GWFLOW is enabled and available in the project. +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A list with \code{use_gwflow} (logical) and \code{can_enable} +#' (logical). +#' @export +#' @examples +#' \dontrun{ +#' status <- get_gwflow_status(project) +#' status$use_gwflow +#' } +get_gwflow_status <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + tables <- list_db_tables(con) + + use_gwflow <- FALSE + can_enable <- FALSE + + if ("project_config" %in% tables) { + cfg <- query_db(con, "SELECT use_gwflow FROM project_config LIMIT 1") + if (nrow(cfg) > 0 && !is.na(cfg$use_gwflow)) { + use_gwflow <- as.logical(cfg$use_gwflow) + } + } + + # GWFLOW can be enabled if grid tables exist + can_enable <- "gwflow_grid" %in% tables && + query_db(con, "SELECT COUNT(*) as n FROM gwflow_grid")$n > 0 + + list(use_gwflow = use_gwflow, can_enable = can_enable) +} + +#' Initialize GWFLOW in the project +#' +#' Enables the groundwater flow module and creates the necessary database +#' tables if they don't exist. +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param cell_size Numeric. Grid cell size in map units. +#' @param row_count Integer. Number of grid rows. +#' @param col_count Integer. Number of grid columns. +#' @param boundary_conditions Integer. Boundary condition type. +#' @param recharge Integer. Recharge option (1 = soil water, 2 = specific rate). +#' @param soil_transfer Integer. Soil transfer option. +#' @param saturation_excess Integer. Saturation excess routing. +#' @param external_pumping Integer. External pumping flag. +#' @param tile_drainage Integer. Tile drainage flag. +#' @param reservoir_exchange Integer. Reservoir exchange flag. +#' @param wetland_exchange Integer. Wetland exchange flag. +#' @param floodplain_exchange Integer. Floodplain exchange flag. +#' @param canal_seepage Integer. Canal seepage flag. +#' @param solute_transport Integer. Solute transport flag. +#' @param daily_output Integer. Daily output flag. +#' @param annual_output Integer. Annual output flag. +#' @param aa_output Integer. Average annual output flag. +#' @return The project object (invisibly). +#' @export +#' @examples +#' \dontrun{ +#' init_gwflow(project, cell_size = 200, row_count = 100, +#' col_count = 150) +#' } +init_gwflow <- function(project, cell_size, row_count, col_count, + boundary_conditions = 1, recharge = 1, + soil_transfer = 0, saturation_excess = 0, + external_pumping = 0, tile_drainage = 0, + reservoir_exchange = 0, wetland_exchange = 0, + floodplain_exchange = 0, canal_seepage = 0, + solute_transport = 0, daily_output = 0, + annual_output = 0, aa_output = 0) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + gw_flow_ini_file <- system.file("extdata", "gwflow.ini", + package = "rQSWATPlus") + + # Create gwflow tables if needed + execute_db(con, " + CREATE TABLE IF NOT EXISTS gwflow_base ( + cell_size REAL, row_count INTEGER, col_count INTEGER, + boundary_conditions INTEGER DEFAULT 1, + recharge INTEGER DEFAULT 1, + soil_transfer INTEGER DEFAULT 0, + saturation_excess INTEGER DEFAULT 0, + external_pumping INTEGER DEFAULT 0, + tile_drainage INTEGER DEFAULT 0, + reservoir_exchange INTEGER DEFAULT 0, + wetland_exchange INTEGER DEFAULT 0, + floodplain_exchange INTEGER DEFAULT 0, + canal_seepage INTEGER DEFAULT 0, + solute_transport INTEGER DEFAULT 0, + daily_output INTEGER DEFAULT 0, + annual_output INTEGER DEFAULT 0, + aa_output INTEGER DEFAULT 0 + )") + + execute_db(con, " + CREATE TABLE IF NOT EXISTS gwflow_grid ( + cell_id INTEGER PRIMARY KEY, + status INTEGER DEFAULT 1, + row INTEGER, col INTEGER, + lat REAL, lon REAL, elev REAL, + zone INTEGER DEFAULT 1 + )") + + execute_db(con, " + CREATE TABLE IF NOT EXISTS gwflow_zone ( + zone_id INTEGER PRIMARY KEY, + aquifer_k REAL DEFAULT 10.0, + specific_yield REAL DEFAULT 0.1, + streambed_k REAL DEFAULT 1.0, + streambed_thickness REAL DEFAULT 1.0 + )") + + execute_db(con, " + CREATE TABLE IF NOT EXISTS gwflow_hrucell ( + id INTEGER PRIMARY KEY, + cell_id INTEGER, + hru_id INTEGER, + FOREIGN KEY (cell_id) REFERENCES gwflow_grid(cell_id) + )") + + execute_db(con, " + CREATE TABLE IF NOT EXISTS gwflow_fpcell ( + cell_id INTEGER PRIMARY KEY, + channel INTEGER, + area_m2 REAL, + conductivity REAL DEFAULT 1.0, + FOREIGN KEY (cell_id) REFERENCES gwflow_grid(cell_id) + )") + + execute_db(con, " + CREATE TABLE IF NOT EXISTS gwflow_rivcell ( + cell_id INTEGER PRIMARY KEY, + channel INTEGER, + FOREIGN KEY (cell_id) REFERENCES gwflow_grid(cell_id) + )") + + execute_db(con, " + CREATE TABLE IF NOT EXISTS gwflow_lsucell ( + id INTEGER PRIMARY KEY, + cell_id INTEGER, + lsu_id INTEGER, + FOREIGN KEY (cell_id) REFERENCES gwflow_grid(cell_id) + )") + + execute_db(con, " + CREATE TABLE IF NOT EXISTS gwflow_rescell ( + cell_id INTEGER PRIMARY KEY, + res INTEGER, + res_stage REAL DEFAULT 0.0, + FOREIGN KEY (cell_id) REFERENCES gwflow_grid(cell_id) + )") + + execute_db(con, " + CREATE TABLE IF NOT EXISTS gwflow_wetland ( + wet_id INTEGER PRIMARY KEY, + thickness REAL DEFAULT 1.0 + )") + + execute_db(con, " + CREATE TABLE IF NOT EXISTS gwflow_solutes ( + solute_name TEXT, + sorption REAL DEFAULT 0.0, + rate_const REAL DEFAULT 0.0, + canal_irr REAL DEFAULT 0.0, + init_data INTEGER DEFAULT 0, + init_conc REAL DEFAULT 0.0 + )") + + # Insert or update gwflow_base + result <- query_db(con, "SELECT COUNT(*) as n FROM gwflow_base") + if (result$n == 0) { + execute_db(con, " + INSERT INTO gwflow_base + (cell_size, row_count, col_count, boundary_conditions, recharge, + soil_transfer, saturation_excess, external_pumping, tile_drainage, + reservoir_exchange, wetland_exchange, floodplain_exchange, + canal_seepage, solute_transport, daily_output, annual_output, + aa_output) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", + params = list(cell_size, row_count, col_count, + boundary_conditions, recharge, soil_transfer, + saturation_excess, external_pumping, tile_drainage, + reservoir_exchange, wetland_exchange, + floodplain_exchange, canal_seepage, solute_transport, + daily_output, annual_output, aa_output)) + } else { + execute_db(con, " + UPDATE gwflow_base SET cell_size = ?, row_count = ?, col_count = ?, + boundary_conditions = ?, recharge = ?, soil_transfer = ?, + saturation_excess = ?, external_pumping = ?, tile_drainage = ?, + reservoir_exchange = ?, wetland_exchange = ?, + floodplain_exchange = ?, canal_seepage = ?, + solute_transport = ?, daily_output = ?, annual_output = ?, + aa_output = ?", + params = list(cell_size, row_count, col_count, + boundary_conditions, recharge, soil_transfer, + saturation_excess, external_pumping, tile_drainage, + reservoir_exchange, wetland_exchange, + floodplain_exchange, canal_seepage, solute_transport, + daily_output, annual_output, aa_output)) + } + + # Enable gwflow in project config + if (table_exists(con, "project_config")) { + execute_db(con, "UPDATE project_config SET use_gwflow = 1") + } + + # Create default zone if none exists + zone_count <- query_db(con, "SELECT COUNT(*) as n FROM gwflow_zone")$n + if (zone_count == 0) { + execute_db(con, " + INSERT INTO gwflow_zone (zone_id, aquifer_k, specific_yield, + streambed_k, streambed_thickness) + VALUES (1, 10.0, 0.1, 1.0, 1.0)") + } + + message("Initialized GWFLOW: ", row_count, " x ", col_count, + " grid (cell size = ", cell_size, ")") + invisible(project) +} + +#' Get GWFLOW base configuration +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A list with GWFLOW base settings. +#' @export +get_gwflow_base <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + if (!table_exists(con, "gwflow_base")) { + stop("gwflow_base table not found. Initialize GWFLOW first with ", + "init_gwflow().", call. = FALSE) + } + + result <- query_db(con, "SELECT * FROM gwflow_base") + if (nrow(result) == 0) { + stop("No GWFLOW base configuration found.", call. = FALSE) + } + as.list(result[1, ]) +} + +#' Update GWFLOW base configuration +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param ... Named arguments for GWFLOW base settings to update (e.g., +#' cell_size, recharge, solute_transport). +#' @return The project object (invisibly). +#' @export +#' @examples +#' \dontrun{ +#' update_gwflow_base(project, recharge = 2, daily_output = 1) +#' } +update_gwflow_base <- function(project, ...) { + validate_project(project) + updates <- list(...) + + if (length(updates) == 0) { + stop("No update fields provided.", call. = FALSE) + } + + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + if (!table_exists(con, "gwflow_base")) { + stop("gwflow_base table not found.", call. = FALSE) + } + + sql <- build_update_sql("gwflow_base", updates, "1 = 1") + execute_db(con, sql) + + message("Updated GWFLOW base settings") + invisible(project) +} + +#' Get GWFLOW zones +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A data.frame with zone parameters. +#' @export +get_gwflow_zones <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + if (!table_exists(con, "gwflow_zone")) { + stop("gwflow_zone table not found.", call. = FALSE) + } + + query_db(con, "SELECT * FROM gwflow_zone ORDER BY zone_id") +} + +#' Update GWFLOW zone parameters +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param zone_id Integer. ID of the zone to update. +#' @param aquifer_k Numeric. Hydraulic conductivity (m/day). +#' @param specific_yield Numeric. Specific yield (dimensionless). +#' @param streambed_k Numeric. Streambed conductivity (m/day). +#' @param streambed_thickness Numeric. Streambed thickness (m). +#' @return The project object (invisibly). +#' @export +#' @examples +#' \dontrun{ +#' update_gwflow_zones(project, zone_id = 1, aquifer_k = 15.0, +#' specific_yield = 0.15) +#' } +update_gwflow_zones <- function(project, zone_id, aquifer_k = NULL, + specific_yield = NULL, streambed_k = NULL, + streambed_thickness = NULL) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + if (!table_exists(con, "gwflow_zone")) { + stop("gwflow_zone table not found.", call. = FALSE) + } + + updates <- list() + if (!is.null(aquifer_k)) updates$aquifer_k <- aquifer_k + if (!is.null(specific_yield)) updates$specific_yield <- specific_yield + if (!is.null(streambed_k)) updates$streambed_k <- streambed_k + if (!is.null(streambed_thickness)) updates$streambed_thickness <- streambed_thickness + + if (length(updates) == 0) { + stop("No update fields provided.", call. = FALSE) + } + + sql <- build_update_sql("gwflow_zone", updates, + paste0("zone_id = ", as.integer(zone_id))) + n <- execute_db(con, sql) + if (n == 0) { + warning("No zone found with zone_id = ", zone_id, call. = FALSE) + } else { + message("Updated GWFLOW zone ", zone_id) + } + + invisible(project) +} diff --git a/src/r-api/swatplusEditoR/R/parameters.R b/src/r-api/swatplusEditoR/R/parameters.R new file mode 100644 index 00000000..d502563a --- /dev/null +++ b/src/r-api/swatplusEditoR/R/parameters.R @@ -0,0 +1,201 @@ +# Parameter update functions for swatplusEditoR +# Update HRU, aquifer, channel, and basin parameters + +#' Update parameters in the project database +#' +#' A general-purpose function to update parameter values in any table of +#' the SWAT+ project database. Supports updating by ID, by condition, or +#' in bulk. +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param table_name Character. Name of the database table to update +#' (e.g., "hru_data_hru", "aquifer_aqu", "hydrology_hyd", +#' "topography_hyd", "channel_chn"). +#' @param values Named list. Column names and their new values. +#' @param ids Integer vector. Optional IDs of rows to update. If NULL, +#' updates all rows matching the \code{where} condition. +#' @param where Character. Optional SQL WHERE clause (without the WHERE +#' keyword). Applied in addition to \code{ids} if both are provided. +#' @return Integer. Number of rows affected. +#' @export +#' @examples +#' \dontrun{ +#' # Update CN2 for all HRUs +#' update_parameters(project, "hydrology_hyd", list(cn2 = 65)) +#' +#' # Update specific HRUs +#' update_parameters(project, "hydrology_hyd", list(cn2 = 70), +#' ids = c(1, 2, 3)) +#' +#' # Update with a WHERE condition +#' update_parameters(project, "hydrology_hyd", list(cn2 = 75), +#' where = "cn2 > 80") +#' } +update_parameters <- function(project, table_name, values, + ids = NULL, where = NULL) { + validate_project(project) + + if (!is.list(values) || length(values) == 0 || is.null(names(values))) { + stop("values must be a named list with at least one element.", + call. = FALSE) + } + + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + if (!table_exists(con, table_name)) { + stop("Table '", table_name, "' not found in database.", call. = FALSE) + } + + # Verify column names + cols <- names(query_db(con, paste("SELECT * FROM", table_name, "LIMIT 0"))) + invalid_cols <- setdiff(names(values), cols) + if (length(invalid_cols) > 0) { + stop("Invalid column(s) for table '", table_name, "': ", + paste(invalid_cols, collapse = ", "), + ". Available: ", paste(cols, collapse = ", "), call. = FALSE) + } + + # Build WHERE clause + conditions <- character(0) + if (!is.null(ids)) { + id_str <- paste(as.integer(ids), collapse = ", ") + conditions <- c(conditions, paste0("id IN (", id_str, ")")) + } + if (!is.null(where) && nchar(where) > 0) { + conditions <- c(conditions, paste0("(", where, ")")) + } + + where_clause <- if (length(conditions) > 0) { + paste(conditions, collapse = " AND ") + } else { + "1 = 1" + } + + sql <- build_update_sql(table_name, values, where_clause) + n <- execute_db(con, sql) + + message("Updated ", n, " rows in '", table_name, "'") + n +} + +#' Set simulation time period +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param day_start Integer. Start Julian day (1-366). +#' @param yrc_start Integer. Start year. +#' @param day_end Integer. End Julian day (1-366). +#' @param yrc_end Integer. End year. +#' @param step Integer. Time step (0 = daily, 1 = hourly). Default 0. +#' @return The project object (invisibly). +#' @export +#' @examples +#' \dontrun{ +#' set_simulation_time(project, day_start = 1, yrc_start = 2000, +#' day_end = 365, yrc_end = 2010) +#' } +set_simulation_time <- function(project, day_start, yrc_start, + day_end, yrc_end, step = 0) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + if (!table_exists(con, "time_sim")) { + # Create the table if it doesn't exist + execute_db(con, " + CREATE TABLE IF NOT EXISTS time_sim ( + id INTEGER PRIMARY KEY, + day_start INTEGER, yrc_start INTEGER, + day_end INTEGER, yrc_end INTEGER, step INTEGER + )") + execute_db(con, " + INSERT INTO time_sim (day_start, yrc_start, day_end, yrc_end, step) + VALUES (?, ?, ?, ?, ?)", + params = list(day_start, yrc_start, day_end, yrc_end, step)) + } else { + result <- query_db(con, "SELECT COUNT(*) as n FROM time_sim") + if (result$n == 0) { + execute_db(con, " + INSERT INTO time_sim (day_start, yrc_start, day_end, yrc_end, step) + VALUES (?, ?, ?, ?, ?)", + params = list(day_start, yrc_start, day_end, yrc_end, step)) + } else { + execute_db(con, " + UPDATE time_sim SET day_start = ?, yrc_start = ?, day_end = ?, + yrc_end = ?, step = ?", + params = list(day_start, yrc_start, day_end, yrc_end, step)) + } + } + + message("Set simulation time: ", yrc_start, "/", day_start, + " to ", yrc_end, "/", day_end, + " (step = ", step, ")") + invisible(project) +} + +#' Set print/output options +#' +#' Configures what SWAT+ output is written and at what intervals. +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param nyskip Integer. Number of years to skip for warm-up. +#' @param day_start Integer. Print start Julian day. +#' @param day_end Integer. Print end Julian day. +#' @param yrc_start Integer. Print start year. +#' @param yrc_end Integer. Print end year. +#' @param interval Integer. Print interval. +#' @param csvout Logical. Write CSV output files. +#' @param dbout Logical. Write database output. +#' @param cdfout Logical. Write NetCDF output. +#' @param crop_yld Character. Crop yield output option. +#' @param mgtout Logical. Write management output. +#' @param hydcon Logical. Write hydrology connections output. +#' @param fdcout Logical. Write flow duration curve output. +#' @return The project object (invisibly). +#' @export +#' @examples +#' \dontrun{ +#' set_print_options(project, nyskip = 2, csvout = TRUE, dbout = FALSE) +#' } +set_print_options <- function(project, nyskip = NULL, day_start = NULL, + day_end = NULL, yrc_start = NULL, + yrc_end = NULL, interval = NULL, + csvout = NULL, dbout = NULL, + cdfout = NULL, crop_yld = NULL, + mgtout = NULL, hydcon = NULL, + fdcout = NULL) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + if (!table_exists(con, "print_prt")) { + stop("print_prt table not found. The database may not be fully ", + "initialized.", call. = FALSE) + } + + updates <- list() + if (!is.null(nyskip)) updates$nyskip <- as.integer(nyskip) + if (!is.null(day_start)) updates$day_start <- as.integer(day_start) + if (!is.null(day_end)) updates$day_end <- as.integer(day_end) + if (!is.null(yrc_start)) updates$yrc_start <- as.integer(yrc_start) + if (!is.null(yrc_end)) updates$yrc_end <- as.integer(yrc_end) + if (!is.null(interval)) updates$interval <- as.integer(interval) + if (!is.null(csvout)) updates$csvout <- as.integer(csvout) + if (!is.null(dbout)) updates$dbout <- as.integer(dbout) + if (!is.null(cdfout)) updates$cdfout <- as.integer(cdfout) + if (!is.null(crop_yld)) updates$crop_yld <- crop_yld + if (!is.null(mgtout)) updates$mgtout <- as.integer(mgtout) + if (!is.null(hydcon)) updates$hydcon <- as.integer(hydcon) + if (!is.null(fdcout)) updates$fdcout <- as.integer(fdcout) + + if (length(updates) == 0) { + message("No print options to update.") + return(invisible(project)) + } + + sql <- build_update_sql("print_prt", updates, "1 = 1") + execute_db(con, sql) + + message("Updated print options") + invisible(project) +} diff --git a/src/r-api/swatplusEditoR/R/project.R b/src/r-api/swatplusEditoR/R/project.R new file mode 100644 index 00000000..db67f326 --- /dev/null +++ b/src/r-api/swatplusEditoR/R/project.R @@ -0,0 +1,3110 @@ +# Project management for swatplusEditoR +# Functions to initialize, load, and manage SWAT+ projects + +#' Load a SWAT+ project from an R project object +#' +#' Takes a project list object (as produced by upstream GIS/delineation tools) +#' and validates that it has the required database file for SWAT+ Editor +#' operations. +#' +#' @param project List. A project object with at minimum \code{project_dir} +#' and \code{db_file} fields. The \code{db_file} should point to the SQLite +#' database containing gis_* tables. +#' @return The project object with a validated database connection confirmed. +#' @export +#' @examples +#' \dontrun{ +#' project <- list( +#' project_dir = "/path/to/project", +#' db_file = "/path/to/project/project.sqlite" +#' ) +#' project <- load_project(project) +#' } +load_project <- function(project) { + if (!is.list(project)) { + stop("project must be a list.", call. = FALSE) + } + + validate_project(project) + + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + tables <- list_db_tables(con) + gis_tables <- c("gis_aquifers", "gis_channels", "gis_deep_aquifers", + "gis_hrus", "gis_lsus", "gis_points", "gis_routing", + "gis_subbasins", "gis_water") + present <- gis_tables[gis_tables %in% tables] + missing <- gis_tables[!gis_tables %in% tables] + + message("SWAT+ project loaded from: ", project$db_file) + message(" GIS tables present: ", length(present), "/", length(gis_tables)) + if (length(missing) > 0) { + message(" Missing GIS tables: ", paste(missing, collapse = ", ")) + } + message(" Total tables in database: ", length(tables)) + + project +} + +#' Create a new SWAT+ project database +#' +#' Creates an empty SQLite database with the GIS tables populated from +#' a project object's spatial data. This initializes the database schema +#' matching the SWAT+ Editor format. +#' +#' @param project List. A project object. +#' @param overwrite Logical. If TRUE, overwrite an existing database. +#' @return The project object with \code{db_file} set to the new database path. +#' @export +#' @importFrom DBI dbWriteTable +#' @importFrom rQSWATPlus qswat_write_database +#' @examples +#' \dontrun{ +#' project <- list(project_dir = "/path/to/project") +#' project <- create_project_db(project, "/path/to/project/swatplus.sqlite") +#' } +create_project_db <- function(project, overwrite = FALSE) { + if (!is.list(project)) { + stop("project must be a list.", call. = FALSE) + } + + db_file <- project$db_file + if (file.exists(db_file) && !overwrite) { + stop("Database already exists at: ", db_file, + ". Use overwrite = TRUE to replace.", call. = FALSE) + } + + if (file.exists(db_file) && overwrite) { + file.remove(db_file) + } + + rQSWATPlus::qswat_write_database(project = project, db_file = db_file, + overwrite = overwrite) + + + project$db_file <- normalizePath(db_file, mustWork = TRUE) + message("Created SWAT+ project database: ", project$db_file) + project +} + +#' Populate GIS tables from project basin/HRU data +#' +#' @param con DBI connection. +#' @param project Project list object. +#' @keywords internal +populate_gis_from_project <- function(con, project) { + if (!is.null(project$basin_data) && is.data.frame(project$basin_data)) { + basin <- project$basin_data + gis_cols <- c("id", "area", "slo1", "len1", "sll", "lat", "lon", + "elev", "elevmin", "elevmax") + avail_cols <- intersect(gis_cols, names(basin)) + if (length(avail_cols) > 0) { + DBI::dbWriteTable(con, "gis_subbasins", basin[, avail_cols, drop = FALSE], + append = TRUE) + } + } + + if (!is.null(project$hru_data) && is.data.frame(project$hru_data)) { + hru <- project$hru_data + gis_cols <- c("id", "lsu", "arsub", "arlsu", "landuse", "arland", + "soil", "arso", "slp", "arslp", "slope", "lat", "lon", + "elev") + avail_cols <- intersect(gis_cols, names(hru)) + if (length(avail_cols) > 0) { + DBI::dbWriteTable(con, "gis_hrus", hru[, avail_cols, drop = FALSE], + append = TRUE) + } + } +} + +#' Get project configuration from the database +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A list with project configuration values. +#' @export +#' @examples +#' \dontrun{ +#' config <- get_project_config(project) +#' } +get_project_config <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + if (!table_exists(con, "project_config")) { + stop("No project_config table found in database.", call. = FALSE) + } + + result <- query_db(con, "SELECT * FROM project_config LIMIT 1") + if (nrow(result) == 0) { + stop("No project configuration found.", call. = FALSE) + } + as.list(result[1, ]) +} + +#' Get project information summary +#' +#' Returns a summary of the project including GIS table row counts, +#' weather station status, and configuration. +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A list with project summary information. +#' @export +#' @examples +#' \dontrun{ +#' info <- get_project_info(project) +#' } +get_project_info <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + tables <- list_db_tables(con) + + # Count rows in GIS tables + gis_tables <- c("gis_aquifers", "gis_channels", "gis_deep_aquifers", + "gis_hrus", "gis_lsus", "gis_points", "gis_routing", + "gis_subbasins", "gis_water") + gis_counts <- vapply(gis_tables, function(tbl) { + if (tbl %in% tables) { + query_db(con, paste("SELECT COUNT(*) as n FROM", tbl))$n + } else { + NA_integer_ + } + }, integer(1)) + names(gis_counts) <- gis_tables + + # Check weather status + weather_stations <- 0L + weather_generators <- 0L + if ("weather_sta_cli" %in% tables) { + weather_stations <- query_db(con, + "SELECT COUNT(*) as n FROM weather_sta_cli")$n + } + if ("weather_wgn_cli" %in% tables) { + weather_generators <- query_db(con, + "SELECT COUNT(*) as n FROM weather_wgn_cli")$n + } + + # Get config + config <- NULL + if ("project_config" %in% tables) { + cfg <- query_db(con, "SELECT * FROM project_config LIMIT 1") + if (nrow(cfg) > 0) config <- as.list(cfg[1, ]) + } + + # Check gwflow + use_gwflow <- FALSE + if (!is.null(config) && !is.null(config$use_gwflow)) { + use_gwflow <- as.logical(config$use_gwflow) + } + + list( + name = if (!is.null(config)) config$project_name else basename(project$project_dir), + db_file = project$db_file, + total_tables = length(tables), + gis_counts = gis_counts, + status = list( + imported_weather = weather_stations > 0 && weather_generators > 0, + weather_stations = weather_stations, + weather_generators = weather_generators, + use_gwflow = use_gwflow, + wrote_inputs = !is.null(config$input_files_last_written), + ran_swat = !is.null(config$swat_last_run) + ), + config = config + ) +} + +#' Ensure all required SWAT+ tables exist before writing files +#' +#' Creates any missing tables that \code{\link{write_config_files}} needs +#' and populates mandatory tables with sensible defaults (mirroring the Python +#' SWAT+ Editor \code{setup.py} initialisation). Tables that already exist +#' are left untouched. +#' +#' @param con DBI connection to the project database. +#' @return Invisible \code{NULL}. +#' @keywords internal +ensure_write_tables <- function(con) { + .ensure_supplementary_tables(con) + invisible(NULL) +} + +#' Set up required tables and reference data in the project database +#' +#' Initialises the project database after running \code{rQSWATPlus::qswat_run()} +#' by ensuring all tables required by \code{\link{write_config_files}} exist and +#' are populated with sensible defaults. Creates any supplementary tables +#' (e.g. \code{weather_wgn_cli}, \code{object_cnt}, \code{initial_cha}, +#' \code{initial_aqu}, \code{delratio_del}) that may not yet exist in the +#' database. Tables that already contain data are left untouched. +#' +#' Typical usage in a setup pipeline: +#' \preformatted{ +#' project <- rQSWATPlus::qswat_run(...) |> +#' setup_project() |> +#' set_simulation_time(...) |> +#' add_weather_stations(stations) |> +#' get_wgn_cfsr_world(wgn_db = wgn_db) +#' } +#' +#' @param project List. A SWAT+ project object with a \code{db_file} element. +#' @return The input \code{project} list, invisibly. +#' @export +setup_project <- function(project) { + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + # Ensure all required tables exist and are populated with reference data. + ensure_write_tables(con) + invisible(project) +} + +# -------------------------------------------------------------------------- +# Create supplementary tables needed by write_config_files() +# +# Mirrors Python setup.py create_tables() for tables that may not be created +# by rQSWATPlus. Uses CREATE TABLE IF NOT EXISTS so existing data is never +# touched. Includes "helper" tables referenced in LEFT JOIN queries by the +# write functions (e.g. initial_cha, initial_aqu, delratio_del, snow_sno); +# if those tables do not exist SQLite raises "no such table" and the +# corresponding output file is silently skipped. +# -------------------------------------------------------------------------- +.ensure_supplementary_tables <- function(con) { + sqls <- c( + # Weather generator (station-level summary) + "CREATE TABLE IF NOT EXISTS weather_wgn_cli ( + id INTEGER PRIMARY KEY, + name TEXT NOT NULL UNIQUE, + lat REAL NOT NULL, + lon REAL NOT NULL, + elev REAL NOT NULL, + rain_yrs INTEGER NOT NULL + )", + # Weather generator monthly values + "CREATE TABLE IF NOT EXISTS weather_wgn_cli_mon ( + id INTEGER PRIMARY KEY, + weather_wgn_cli_id INTEGER NOT NULL + REFERENCES weather_wgn_cli(id) ON DELETE CASCADE, + month INTEGER NOT NULL, + tmp_max_ave REAL, tmp_min_ave REAL, + tmp_max_sd REAL, tmp_min_sd REAL, + pcp_ave REAL, pcp_sd REAL, pcp_skew REAL, + wet_dry REAL, wet_wet REAL, pcp_days REAL, pcp_hhr REAL, + slr_ave REAL, dew_ave REAL, wnd_ave REAL + )", + # Wind direction climatology + "CREATE TABLE IF NOT EXISTS wind_dir_cli ( + id INTEGER PRIMARY KEY, + name TEXT NOT NULL UNIQUE, + n REAL, ne REAL, e REAL, se REAL, + s REAL, sw REAL, w REAL, nw REAL + )", + # Atmospheric deposition station values + "CREATE TABLE IF NOT EXISTS atmo_cli_sta_value ( + id INTEGER PRIMARY KEY, + atmo_cli_sta_id INTEGER, + mo INTEGER, yr INTEGER, + nh4_dry REAL, no3_dry REAL, + nh4_wet REAL, no3_wet REAL + )", + # Decision-table action outputs (populated from datasets DB by Python + # setup; kept as empty shell here so connect-file writers don't error) + "CREATE TABLE IF NOT EXISTS d_table_dtl_act_out ( + id INTEGER PRIMARY KEY, + act_id INTEGER, + order_id INTEGER, + obj_typ TEXT, obj_id INTEGER, hyd_typ TEXT, frac REAL + )", + # Object counts (mirrors Python Object_cnt model / simulation.py). + # Columns match the reference database schema: + # id, name, obj, hru, lhru, rtu, mfl, aqu, cha, res, rec, exco, + # dlr, can, pmp, out, lcha, aqu2d, hrd, wro + # ls_area and tot_area are computed dynamically in write_object_cnt(). + "CREATE TABLE IF NOT EXISTS object_cnt ( + id INTEGER PRIMARY KEY, + name TEXT, + obj INTEGER DEFAULT 0, + hru INTEGER DEFAULT 0, lhru INTEGER DEFAULT 0, + rtu INTEGER DEFAULT 0, mfl INTEGER DEFAULT 0, aqu INTEGER DEFAULT 0, + cha INTEGER DEFAULT 0, res INTEGER DEFAULT 0, rec INTEGER DEFAULT 0, + exco INTEGER DEFAULT 0, dlr INTEGER DEFAULT 0, can INTEGER DEFAULT 0, + pmp INTEGER DEFAULT 0, out INTEGER DEFAULT 0, lcha INTEGER DEFAULT 0, + aqu2d INTEGER DEFAULT 0, hrd INTEGER DEFAULT 0, wro INTEGER DEFAULT 0 + )", + # om_water_ini: referenced by initial_cha and initial_aqu; must exist + # before .gis_insert_channels() and .gis_insert_aquifers() try to INSERT. + "CREATE TABLE IF NOT EXISTS om_water_ini ( + id INTEGER PRIMARY KEY, + name TEXT + )", + # initial_cha: LEFT-JOINed in the channel.cha write query; table must + # exist (even empty) or SQLite raises 'no such table' and the file is + # silently skipped. + "CREATE TABLE IF NOT EXISTS initial_cha ( + id INTEGER PRIMARY KEY, + name TEXT, + org_min_id INTEGER + )", + # initial_aqu: LEFT-JOINed in the aquifer.aqu write query. + "CREATE TABLE IF NOT EXISTS initial_aqu ( + id INTEGER PRIMARY KEY, + name TEXT, + org_min_id INTEGER + )", + # delratio_del: LEFT-JOINed in the rout_unit.ele write query. + "CREATE TABLE IF NOT EXISTS delratio_del ( + id INTEGER PRIMARY KEY, + name TEXT + )", + # snow_sno: LEFT-JOINed in the hru-data.hru write query. + "CREATE TABLE IF NOT EXISTS snow_sno ( + id INTEGER PRIMARY KEY, + name TEXT + )", + # soil_plant_ini: LEFT-JOINed in the hru-data.hru write query and written + # to soil_plant.ini. Matches the Python Soil_plant_ini model in init.py. + "CREATE TABLE IF NOT EXISTS soil_plant_ini ( + id INTEGER PRIMARY KEY, + name TEXT NOT NULL UNIQUE, + sw_frac REAL DEFAULT 0, + nutrients_id INTEGER, + pest_id INTEGER, + path_id INTEGER, + hmet_id INTEGER, + salt_id INTEGER, + salt_cs_id INTEGER + )", + # wetland_wet: LEFT-JOINed in the hru-data.hru write query via surf_stor_id. + # Matches the Python Wetland_wet model in reservoir.py. + "CREATE TABLE IF NOT EXISTS wetland_wet ( + id INTEGER PRIMARY KEY, + name TEXT NOT NULL UNIQUE, + init_id INTEGER, + hyd_id INTEGER, + rel_id INTEGER, + sed_id INTEGER, + nut_id INTEGER, + description TEXT + )", + + # --------------------------------------------------------------- + # Connection tables (Con / Con_out pattern from connect.py) + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS channel_con ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + gis_id INTEGER, area REAL, lat REAL, lon REAL, elev REAL, + wst_id INTEGER, cst_id INTEGER, ovfl INTEGER, rule INTEGER, + cha_id INTEGER + )", + "CREATE TABLE IF NOT EXISTS channel_con_out ( + id INTEGER PRIMARY KEY, channel_con_id INTEGER, + [order] INTEGER, obj_typ TEXT, obj_id INTEGER, + hyd_typ TEXT, frac REAL + )", + "CREATE TABLE IF NOT EXISTS outlet_con ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + gis_id INTEGER, area REAL, lat REAL, lon REAL, elev REAL, + wst_id INTEGER, cst_id INTEGER, ovfl INTEGER, rule INTEGER, + out INTEGER + )", + "CREATE TABLE IF NOT EXISTS outlet_con_out ( + id INTEGER PRIMARY KEY, outlet_con_id INTEGER, + [order] INTEGER, obj_typ TEXT, obj_id INTEGER, + hyd_typ TEXT, frac REAL + )", + "CREATE TABLE IF NOT EXISTS delratio_con ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + gis_id INTEGER, area REAL, lat REAL, lon REAL, elev REAL, + wst_id INTEGER, cst_id INTEGER, ovfl INTEGER, rule INTEGER, + dlr_id INTEGER + )", + "CREATE TABLE IF NOT EXISTS delratio_con_out ( + id INTEGER PRIMARY KEY, delratio_con_id INTEGER, + [order] INTEGER, obj_typ TEXT, obj_id INTEGER, + hyd_typ TEXT, frac REAL + )", + "CREATE TABLE IF NOT EXISTS exco_con ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + gis_id INTEGER, area REAL, lat REAL, lon REAL, elev REAL, + wst_id INTEGER, cst_id INTEGER, ovfl INTEGER, rule INTEGER, + exco_id INTEGER + )", + "CREATE TABLE IF NOT EXISTS exco_con_out ( + id INTEGER PRIMARY KEY, exco_con_id INTEGER, + [order] INTEGER, obj_typ TEXT, obj_id INTEGER, + hyd_typ TEXT, frac REAL + )", + "CREATE TABLE IF NOT EXISTS aquifer2d_con ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + gis_id INTEGER, area REAL, lat REAL, lon REAL, elev REAL, + wst_id INTEGER, cst_id INTEGER, ovfl INTEGER, rule INTEGER, + aqu2d_id INTEGER + )", + "CREATE TABLE IF NOT EXISTS aquifer2d_con_out ( + id INTEGER PRIMARY KEY, aquifer2d_con_id INTEGER, + [order] INTEGER, obj_typ TEXT, obj_id INTEGER, + hyd_typ TEXT, frac REAL + )", + "CREATE TABLE IF NOT EXISTS modflow_con ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + gis_id INTEGER, area REAL, lat REAL, lon REAL, elev REAL, + wst_id INTEGER, cst_id INTEGER, ovfl INTEGER, rule INTEGER, + mfl INTEGER + )", + "CREATE TABLE IF NOT EXISTS modflow_con_out ( + id INTEGER PRIMARY KEY, modflow_con_id INTEGER, + [order] INTEGER, obj_typ TEXT, obj_id INTEGER, + hyd_typ TEXT, frac REAL + )", + + # Conditionally-created connection tables (fallback for non-GIS paths) + "CREATE TABLE IF NOT EXISTS recall_con ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + gis_id INTEGER, area REAL, lat REAL, lon REAL, elev REAL, + wst_id INTEGER, cst_id INTEGER, ovfl INTEGER, rule INTEGER, + rec_id INTEGER + )", + "CREATE TABLE IF NOT EXISTS recall_con_out ( + id INTEGER PRIMARY KEY, recall_con_id INTEGER, + [order] INTEGER, obj_typ TEXT, obj_id INTEGER, + hyd_typ TEXT, frac REAL + )", + "CREATE TABLE IF NOT EXISTS reservoir_con ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + gis_id INTEGER, area REAL, lat REAL, lon REAL, elev REAL, + wst_id INTEGER, cst_id INTEGER, ovfl INTEGER, rule INTEGER, + res_id INTEGER + )", + "CREATE TABLE IF NOT EXISTS reservoir_con_out ( + id INTEGER PRIMARY KEY, reservoir_con_id INTEGER, + [order] INTEGER, obj_typ TEXT, obj_id INTEGER, + hyd_typ TEXT, frac REAL + )", + "CREATE TABLE IF NOT EXISTS hru_con_out ( + id INTEGER PRIMARY KEY, hru_con_id INTEGER, + [order] INTEGER, obj_typ TEXT, obj_id INTEGER, + hyd_typ TEXT, frac REAL + )", + "CREATE TABLE IF NOT EXISTS hru_lte_con ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + gis_id INTEGER, area REAL, lat REAL, lon REAL, elev REAL, + wst_id INTEGER, cst_id INTEGER, ovfl INTEGER, rule INTEGER, + lhru_id INTEGER + )", + "CREATE TABLE IF NOT EXISTS hru_lte_con_out ( + id INTEGER PRIMARY KEY, hru_lte_con_id INTEGER, + [order] INTEGER, obj_typ TEXT, obj_id INTEGER, + hyd_typ TEXT, frac REAL + )", + + # --------------------------------------------------------------- + # Climate / Weather tables + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS atmo_cli ( + id INTEGER PRIMARY KEY, + filename TEXT, timestep TEXT, + mo_init INTEGER, yr_init INTEGER, num_aa INTEGER + )", + "CREATE TABLE IF NOT EXISTS atmo_cli_sta ( + id INTEGER PRIMARY KEY, + atmo_cli_id INTEGER, name TEXT + )", + "CREATE TABLE IF NOT EXISTS weather_file ( + id INTEGER PRIMARY KEY, + filename TEXT, type TEXT, lat REAL, lon REAL + )", + "CREATE TABLE IF NOT EXISTS weather_sta_cli_scale ( + id INTEGER PRIMARY KEY, + weather_sta_cli_id INTEGER, + pcp REAL, tmin REAL, tmax REAL, slr REAL, hmd REAL, wnd REAL, pet REAL + )", + + # --------------------------------------------------------------- + # Recall data tables + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS recall_rec ( + id INTEGER PRIMARY KEY, + name TEXT UNIQUE, + rec_typ INTEGER + )", + "CREATE TABLE IF NOT EXISTS recall_dat ( + id INTEGER PRIMARY KEY, + recall_rec_id INTEGER, + jday INTEGER, mo INTEGER, day_mo INTEGER, yr INTEGER, + ob_typ TEXT, ob_name TEXT, + flo REAL, sed REAL, orgn REAL, sedp REAL, no3 REAL, solp REAL, + chla REAL, nh3 REAL, no2 REAL, cbod REAL, dox REAL, + sand REAL, silt REAL, clay REAL, sag REAL, lag REAL, gravel REAL, tmp REAL + )", + + # --------------------------------------------------------------- + # Reservoir / Wetland parameter tables + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS initial_res ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + org_min_id INTEGER, pest_id INTEGER, path_id INTEGER, + hmet_id INTEGER, salt_id INTEGER, salt_cs_id INTEGER, + description TEXT + )", + "CREATE TABLE IF NOT EXISTS hydrology_res ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + yr_op INTEGER, mon_op INTEGER, + area_ps REAL, vol_ps REAL, area_es REAL, vol_es REAL, + k REAL, evap_co REAL, shp_co1 REAL, shp_co2 REAL + )", + "CREATE TABLE IF NOT EXISTS nutrients_res ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + mid_start INTEGER, mid_end INTEGER, + mid_n_stl REAL, n_stl REAL, mid_p_stl REAL, p_stl REAL, + chla_co REAL, secchi_co REAL, theta_n REAL, theta_p REAL, + n_min_stl REAL, p_min_stl REAL + )", + "CREATE TABLE IF NOT EXISTS sediment_res ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + sed_amt REAL, d50 REAL, carbon REAL, bd REAL, + sed_stl REAL, stl_vel REAL + )", + "CREATE TABLE IF NOT EXISTS weir_res ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + linear_c REAL, exp_k REAL, width REAL, height REAL + )", + "CREATE TABLE IF NOT EXISTS reservoir_res ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + init_id INTEGER, hyd_id INTEGER, rel_id INTEGER, + sed_id INTEGER, nut_id INTEGER, description TEXT + )", + "CREATE TABLE IF NOT EXISTS hydrology_wet ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + hru_ps REAL, dp_ps REAL, hru_es REAL, dp_es REAL, + k REAL, evap REAL, vol_area_co REAL, + vol_dp_a REAL, vol_dp_b REAL, hru_frac REAL + )", + + # --------------------------------------------------------------- + # Channel LTE tables (conditionally created) + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS channel_lte_cha ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + init_id INTEGER, hyd_id INTEGER, sed_id INTEGER, + nut_id INTEGER, description TEXT + )", + "CREATE TABLE IF NOT EXISTS hyd_sed_lte_cha ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + [order] TEXT, + wd REAL, dp REAL, slp REAL, len REAL, mann REAL, k REAL, + erod_fact REAL, cov_fact REAL, sinu REAL, eq_slp REAL, + d50 REAL, clay REAL, carbon REAL, dry_bd REAL, + side_slp REAL, bankfull_flo REAL, fps REAL, fpn REAL, + n_conc REAL, p_conc REAL, p_bio REAL, description TEXT + )", + "CREATE TABLE IF NOT EXISTS hru_lte_hru ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + description TEXT + )", + + # --------------------------------------------------------------- + # Initialization tables (pest/path/hmet/salt) + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS pest_hru_ini ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS pest_hru_ini_item ( + id INTEGER PRIMARY KEY, + pest_hru_ini_id INTEGER, name_id INTEGER, + plant REAL, soil REAL + )", + "CREATE TABLE IF NOT EXISTS pest_water_ini ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS pest_water_ini_item ( + id INTEGER PRIMARY KEY, + pest_water_ini_id INTEGER, name_id INTEGER, + water REAL, benthic REAL + )", + "CREATE TABLE IF NOT EXISTS path_hru_ini ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS path_hru_ini_item ( + id INTEGER PRIMARY KEY, + path_hru_ini_id INTEGER, name_id INTEGER, + plant REAL, soil REAL + )", + "CREATE TABLE IF NOT EXISTS path_water_ini ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS path_water_ini_item ( + id INTEGER PRIMARY KEY, + path_water_ini_id INTEGER, name_id INTEGER, + water REAL, benthic REAL + )", + "CREATE TABLE IF NOT EXISTS hmet_hru_ini ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS hmet_hru_ini_item ( + id INTEGER PRIMARY KEY, + hmet_hru_ini_id INTEGER, name_id INTEGER, + plant REAL, soil REAL + )", + "CREATE TABLE IF NOT EXISTS hmet_water_ini ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS hmet_water_ini_item ( + id INTEGER PRIMARY KEY, + hmet_water_ini_id INTEGER, name_id INTEGER, + water REAL, benthic REAL + )", + "CREATE TABLE IF NOT EXISTS salt_hru_ini ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS salt_hru_ini_item ( + id INTEGER PRIMARY KEY, + salt_hru_ini_id INTEGER, name_id INTEGER, + plant REAL, soil REAL + )", + "CREATE TABLE IF NOT EXISTS salt_water_ini ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS salt_water_ini_item ( + id INTEGER PRIMARY KEY, + salt_water_ini_id INTEGER, name_id INTEGER, + water REAL, benthic REAL + )", + + # --------------------------------------------------------------- + # Reference/parameter tables (metals, salts, nutrients_sol) + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS metals_mtl ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS salts_slt ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS nutrients_sol ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + exp_co REAL, lab_p REAL, nitrate REAL, fr_hum_act REAL, + hum_c_n REAL, hum_c_p REAL, inorgp REAL, watersol_p REAL, + h3a_p REAL, mehlich_p REAL, bray_strong_p REAL, + description TEXT + )", + + # --------------------------------------------------------------- + # Constituents + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS constituents_cs ( + id INTEGER PRIMARY KEY, name TEXT, + pest_coms TEXT, path_coms TEXT, hmet_coms TEXT, salt_coms TEXT + )", + + # --------------------------------------------------------------- + # Calibration tables + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS calibration_cal ( + id INTEGER PRIMARY KEY, + cal_parm_id INTEGER, chg_typ TEXT, chg_val REAL, + soil_lyr1 INTEGER, soil_lyr2 INTEGER, + yr1 INTEGER, yr2 INTEGER, day1 INTEGER, day2 INTEGER + )", + "CREATE TABLE IF NOT EXISTS calibration_cal_cond ( + id INTEGER PRIMARY KEY, + calibration_cal_id INTEGER, + cond_typ TEXT, cond_op TEXT, cond_val REAL, cond_val_text TEXT + )", + "CREATE TABLE IF NOT EXISTS calibration_cal_elem ( + id INTEGER PRIMARY KEY, + calibration_cal_id INTEGER, + obj_typ TEXT, obj_id INTEGER + )", + + # --------------------------------------------------------------- + # Region / Cataloging-unit tables + # --------------------------------------------------------------- + # Aquifer regions + "CREATE TABLE IF NOT EXISTS aqu_catunit_def ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, area REAL + )", + "CREATE TABLE IF NOT EXISTS aqu_catunit_def_elem ( + id INTEGER PRIMARY KEY, aqu_catunit_def_id INTEGER, elem INTEGER + )", + "CREATE TABLE IF NOT EXISTS aqu_catunit_ele ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + obj_typ TEXT, obj_typ_no INTEGER, + bsn_frac REAL, sub_frac REAL, reg_frac REAL + )", + "CREATE TABLE IF NOT EXISTS aqu_reg_def ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, area REAL + )", + "CREATE TABLE IF NOT EXISTS aqu_reg_def_elem ( + id INTEGER PRIMARY KEY, aqu_reg_def_id INTEGER, elem INTEGER + )", + # Channel regions + "CREATE TABLE IF NOT EXISTS ch_catunit_def ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, area REAL + )", + "CREATE TABLE IF NOT EXISTS ch_catunit_def_elem ( + id INTEGER PRIMARY KEY, ch_catunit_def_id INTEGER, elem INTEGER + )", + "CREATE TABLE IF NOT EXISTS ch_catunit_ele ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + obj_typ TEXT, obj_typ_no INTEGER, + bsn_frac REAL, sub_frac REAL, reg_frac REAL + )", + "CREATE TABLE IF NOT EXISTS ch_reg_def ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, area REAL + )", + "CREATE TABLE IF NOT EXISTS ch_reg_def_elem ( + id INTEGER PRIMARY KEY, ch_reg_def_id INTEGER, elem INTEGER + )", + # Reservoir regions + "CREATE TABLE IF NOT EXISTS res_catunit_def ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, area REAL + )", + "CREATE TABLE IF NOT EXISTS res_catunit_def_elem ( + id INTEGER PRIMARY KEY, res_catunit_def_id INTEGER, elem INTEGER + )", + "CREATE TABLE IF NOT EXISTS res_catunit_ele ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + obj_typ TEXT, obj_typ_no INTEGER, + bsn_frac REAL, sub_frac REAL, reg_frac REAL + )", + "CREATE TABLE IF NOT EXISTS res_reg_def ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, area REAL + )", + "CREATE TABLE IF NOT EXISTS res_reg_def_elem ( + id INTEGER PRIMARY KEY, res_reg_def_id INTEGER, elem INTEGER + )", + # Recall regions + "CREATE TABLE IF NOT EXISTS rec_catunit_def ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, area REAL + )", + "CREATE TABLE IF NOT EXISTS rec_catunit_def_elem ( + id INTEGER PRIMARY KEY, rec_catunit_def_id INTEGER, elem INTEGER + )", + "CREATE TABLE IF NOT EXISTS rec_catunit_ele ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + obj_typ TEXT, obj_typ_no INTEGER, + bsn_frac REAL, sub_frac REAL, reg_frac REAL + )", + "CREATE TABLE IF NOT EXISTS rec_reg_def ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, area REAL + )", + "CREATE TABLE IF NOT EXISTS rec_reg_def_elem ( + id INTEGER PRIMARY KEY, rec_reg_def_id INTEGER, elem INTEGER + )", + # Landscape regions + "CREATE TABLE IF NOT EXISTS ls_reg_def ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, area REAL + )", + "CREATE TABLE IF NOT EXISTS ls_reg_ele ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + obj_typ TEXT, obj_typ_no INTEGER, + bsn_frac REAL, sub_frac REAL, reg_frac REAL, + ls_reg_def_id INTEGER + )", + + # --------------------------------------------------------------- + # Exchange (EXCO) tables + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS exco_om_exc ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + flo REAL, sed REAL, orgn REAL, sedp REAL, no3 REAL, solp REAL, + chla REAL, nh3 REAL, no2 REAL, cbod REAL, dox REAL, + sand REAL, silt REAL, clay REAL, sag REAL, lag REAL, gravel REAL, tmp REAL + )", + "CREATE TABLE IF NOT EXISTS exco_pest_exc ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS exco_pest_col ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS exco_pest_val ( + id INTEGER PRIMARY KEY, row_id INTEGER, col_id INTEGER, + pest_sol REAL, pest_sor REAL + )", + "CREATE TABLE IF NOT EXISTS exco_path_exc ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS exco_path_col ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS exco_path_val ( + id INTEGER PRIMARY KEY, row_id INTEGER, col_id INTEGER, + path_sol REAL, path_sor REAL + )", + "CREATE TABLE IF NOT EXISTS exco_hmet_exc ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS exco_hmet_col ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS exco_hmet_val ( + id INTEGER PRIMARY KEY, row_id INTEGER, col_id INTEGER, + hmet_sol REAL, hmet_sor REAL + )", + "CREATE TABLE IF NOT EXISTS exco_salt_exc ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS exco_salt_col ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS exco_salt_val ( + id INTEGER PRIMARY KEY, row_id INTEGER, col_id INTEGER, + salt_sol REAL, salt_sor REAL + )", + "CREATE TABLE IF NOT EXISTS exco_exc ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + om_id INTEGER, pest_id INTEGER, path_id INTEGER, + hmet_id INTEGER, salt_id INTEGER + )", + + # --------------------------------------------------------------- + # Delivery ratio (DR) tables + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS dr_om_del ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + flo REAL, sed REAL, orgn REAL, sedp REAL, no3 REAL, solp REAL, + chla REAL, nh3 REAL, no2 REAL, cbod REAL, dox REAL, + sand REAL, silt REAL, clay REAL, sag REAL, lag REAL, gravel REAL, tmp REAL + )", + "CREATE TABLE IF NOT EXISTS dr_pest_del ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS dr_pest_col ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS dr_pest_val ( + id INTEGER PRIMARY KEY, row_id INTEGER, col_id INTEGER, + pest_sol REAL, pest_sor REAL + )", + "CREATE TABLE IF NOT EXISTS dr_path_del ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS dr_path_col ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS dr_path_val ( + id INTEGER PRIMARY KEY, row_id INTEGER, col_id INTEGER, + path_sol REAL, path_sor REAL + )", + "CREATE TABLE IF NOT EXISTS dr_hmet_del ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS dr_hmet_col ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS dr_hmet_val ( + id INTEGER PRIMARY KEY, row_id INTEGER, col_id INTEGER, + hmet_sol REAL, hmet_sor REAL + )", + "CREATE TABLE IF NOT EXISTS dr_salt_del ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS dr_salt_col ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS dr_salt_val ( + id INTEGER PRIMARY KEY, row_id INTEGER, col_id INTEGER, + salt_sol REAL, salt_sor REAL + )", + "CREATE TABLE IF NOT EXISTS rout_unit_dr ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + temp REAL, flo REAL, sed REAL, orgn REAL, sedp REAL, no3 REAL, solp REAL, + pest_sol REAL, pest_sorb REAL, chl_a REAL, nh3 REAL, no2 REAL, cbn_bod REAL, + dis_ox REAL, bact_p REAL, bact_lp REAL, met1 REAL, met2 REAL, met3 REAL, + san REAL, sil REAL, cla REAL, sag REAL, lag REAL, grv REAL + )", + + # --------------------------------------------------------------- + # Channel-surface / channel-aquifer link tables + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS chan_surf_lin ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS chan_surf_lin_ob ( + id INTEGER PRIMARY KEY, chan_surf_lin_id INTEGER, + obj_typ INTEGER, obj_id INTEGER + )", + "CREATE TABLE IF NOT EXISTS chan_aqu_lin ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS chan_aqu_lin_ob ( + id INTEGER PRIMARY KEY, chan_aqu_lin_id INTEGER, aqu_no INTEGER + )", + + # --------------------------------------------------------------- + # Print / Output configuration tables + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS print_prt_aa_int ( + id INTEGER PRIMARY KEY, print_prt_id INTEGER, year INTEGER + )", + "CREATE TABLE IF NOT EXISTS object_prt ( + id INTEGER PRIMARY KEY, + ob_typ TEXT, ob_typ_no INTEGER, hyd_typ TEXT, filename TEXT + )", + + # --------------------------------------------------------------- + # Scenario feature tracking (SFT) tables + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS codes_sft ( + id INTEGER PRIMARY KEY, + landscape INTEGER DEFAULT 0, + hyd TEXT DEFAULT 'n', + plnt INTEGER DEFAULT 0, sed INTEGER DEFAULT 0, + nut INTEGER DEFAULT 0, ch_sed INTEGER DEFAULT 0, + ch_nut INTEGER DEFAULT 0, res INTEGER DEFAULT 0 + )", + "CREATE TABLE IF NOT EXISTS water_balance_sft ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS water_balance_sft_item ( + id INTEGER PRIMARY KEY, water_balance_sft_id INTEGER, + name TEXT, + surq_rto REAL, latq_rto REAL, perc_rto REAL, et_rto REAL, tileq_rto REAL, + pet REAL, sed REAL, wyr REAL, bfr REAL, solp REAL + )", + "CREATE TABLE IF NOT EXISTS wb_parms_sft ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + chg_typ TEXT, neg REAL, pos REAL, lo REAL, up REAL + )", + "CREATE TABLE IF NOT EXISTS ch_sed_budget_sft ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS ch_sed_budget_sft_item ( + id INTEGER PRIMARY KEY, ch_sed_budget_sft_id INTEGER, + name TEXT, + cha_wide REAL, cha_dc_accr REAL, head_cut REAL, fp_accr REAL + )", + "CREATE TABLE IF NOT EXISTS ch_sed_parms_sft ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + chg_typ TEXT, neg REAL, pos REAL, lo REAL, up REAL + )", + "CREATE TABLE IF NOT EXISTS plant_gro_sft ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS plant_gro_sft_item ( + id INTEGER PRIMARY KEY, plant_gro_sft_id INTEGER, + name TEXT, + yld REAL, npp REAL, lai_mx REAL, wstress REAL, astress REAL, tstress REAL + )", + "CREATE TABLE IF NOT EXISTS plant_parms_sft ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE + )", + "CREATE TABLE IF NOT EXISTS plant_parms_sft_item ( + id INTEGER PRIMARY KEY, plant_parms_sft_id INTEGER, + var TEXT, name TEXT, + init REAL, neg REAL, pos REAL, lo REAL, up REAL + )", + + # --------------------------------------------------------------- + # Salt module tables + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS salt_module ( + id INTEGER PRIMARY KEY, + enabled INTEGER DEFAULT 0, recall INTEGER DEFAULT 0, + atmo INTEGER DEFAULT 0, road INTEGER DEFAULT 0, + fert INTEGER DEFAULT 0, irrigation INTEGER DEFAULT 0, + urban INTEGER DEFAULT 0, plants_uptake INTEGER DEFAULT 0, + atmo_timestep TEXT, road_timestep TEXT + )", + "CREATE TABLE IF NOT EXISTS salt_recall_rec ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, rec_typ INTEGER + )", + "CREATE TABLE IF NOT EXISTS salt_recall_dat ( + id INTEGER PRIMARY KEY, recall_rec_id INTEGER, + jday INTEGER, mo INTEGER, day_mo INTEGER, yr INTEGER, + ob_typ TEXT, ob_name TEXT, + so4 REAL, ca REAL, mg REAL, na REAL, k REAL, + cl REAL, co3 REAL, hco3 REAL + )", + "CREATE TABLE IF NOT EXISTS salt_atmo_cli ( + id INTEGER PRIMARY KEY, sta_id INTEGER, timestep INTEGER, + so4_wet REAL, ca_wet REAL, mg_wet REAL, na_wet REAL, + k_wet REAL, cl_wet REAL, co3_wet REAL, hco3_wet REAL, + so4_dry REAL, ca_dry REAL, mg_dry REAL, na_dry REAL, + k_dry REAL, cl_dry REAL, co3_dry REAL, hco3_dry REAL + )", + "CREATE TABLE IF NOT EXISTS salt_road ( + id INTEGER PRIMARY KEY, sta_id INTEGER, timestep INTEGER, + so4 REAL, ca REAL, mg REAL, na REAL, k REAL, + cl REAL, co3 REAL, hco3 REAL + )", + "CREATE TABLE IF NOT EXISTS salt_fertilizer_frt ( + id INTEGER PRIMARY KEY, name_id INTEGER, + so4 REAL, ca REAL, mg REAL, na REAL, k REAL, + cl REAL, co3 REAL, hco3 REAL + )", + "CREATE TABLE IF NOT EXISTS salt_urban ( + id INTEGER PRIMARY KEY, name_id INTEGER, + so4 REAL, ca REAL, mg REAL, na REAL, k REAL, + cl REAL, co3 REAL, hco3 REAL + )", + "CREATE TABLE IF NOT EXISTS salt_plants_flags ( + id INTEGER PRIMARY KEY, + enabled INTEGER DEFAULT 0, soil INTEGER DEFAULT 0, + stress INTEGER DEFAULT 0, conversion_factor REAL + )", + "CREATE TABLE IF NOT EXISTS salt_plants ( + id INTEGER PRIMARY KEY, name_id INTEGER, + a REAL, b REAL, + so4 REAL, ca REAL, mg REAL, na REAL, k REAL, + cl REAL, co3 REAL, hco3 REAL + )", + "CREATE TABLE IF NOT EXISTS salt_aqu_ini ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + so4 REAL, ca REAL, mg REAL, na REAL, k REAL, + cl REAL, co3 REAL, hco3 REAL, + caco3 REAL, mgco3 REAL, caso4 REAL, mgso4 REAL, nacl REAL + )", + "CREATE TABLE IF NOT EXISTS salt_channel_ini ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + so4 REAL, ca REAL, mg REAL, na REAL, k REAL, + cl REAL, co3 REAL, hco3 REAL + )", + "CREATE TABLE IF NOT EXISTS salt_res_ini ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + so4 REAL, ca REAL, mg REAL, na REAL, k REAL, + cl REAL, co3 REAL, hco3 REAL + )", + "CREATE TABLE IF NOT EXISTS salt_hru_ini_cs ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + soil_so4 REAL, soil_ca REAL, soil_mg REAL, soil_na REAL, + soil_k REAL, soil_cl REAL, soil_co3 REAL, soil_hco3 REAL, + soil_caco3 REAL, soil_mgco3 REAL, soil_caso4 REAL, soil_mgso4 REAL, soil_nacl REAL, + plant_so4 REAL, plant_ca REAL, plant_mg REAL, plant_na REAL, + plant_k REAL, plant_cl REAL, plant_co3 REAL, plant_hco3 REAL, + plant_caco3 REAL, plant_mgco3 REAL, plant_caso4 REAL, plant_mgso4 REAL, plant_nacl REAL + )", + "CREATE TABLE IF NOT EXISTS salt_irrigation ( + id INTEGER PRIMARY KEY, name_id INTEGER, + so4 REAL, ca REAL, mg REAL, na REAL, k REAL, + cl REAL, co3 REAL, hco3 REAL + )", + + # --------------------------------------------------------------- + # Water allocation tables + # --------------------------------------------------------------- + "CREATE TABLE IF NOT EXISTS water_allocation_wro ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + rule_typ TEXT, cha_ob INTEGER DEFAULT 0 + )", + "CREATE TABLE IF NOT EXISTS water_allocation_src_ob ( + id INTEGER PRIMARY KEY, water_allocation_id INTEGER, + obj_typ TEXT DEFAULT 'unl', obj_id INTEGER DEFAULT 0, + limit_01 INTEGER DEFAULT 0, limit_02 INTEGER DEFAULT 0, + limit_03 INTEGER DEFAULT 0, limit_04 INTEGER DEFAULT 0, + limit_05 INTEGER DEFAULT 0, limit_06 INTEGER DEFAULT 0, + limit_07 INTEGER DEFAULT 0, limit_08 INTEGER DEFAULT 0, + limit_09 INTEGER DEFAULT 0, limit_10 INTEGER DEFAULT 0, + limit_11 INTEGER DEFAULT 0, limit_12 INTEGER DEFAULT 0, + description TEXT + )", + "CREATE TABLE IF NOT EXISTS water_allocation_dmd_ob ( + id INTEGER PRIMARY KEY, water_allocation_id INTEGER, + obj_typ TEXT DEFAULT 'hru', obj_id INTEGER DEFAULT 0, + withdr TEXT, amount REAL, right TEXT, + treat_typ TEXT, treatment TEXT, + rcv_obj TEXT, rcv_dtl TEXT, rcv_obj_id INTEGER DEFAULT 0, + description TEXT + )", + "CREATE TABLE IF NOT EXISTS water_allocation_dmd_ob_src ( + id INTEGER PRIMARY KEY, water_allocation_dmd_ob_id INTEGER, + src_id INTEGER, frac REAL, comp INTEGER DEFAULT 0 + )" + ) + for (sql in sqls) { + .gis_exec(con, sql) + } + + # Populate object_cnt default row with project name if the table is empty. + # Mirrors Python Object_cnt.get_or_create_default(project_name). + if (.gis_count(con, "object_cnt") == 0L) { + proj_name <- tryCatch( + DBI::dbGetQuery(con, + "SELECT project_name FROM project_config LIMIT 1")$project_name[1L], + error = function(e) "default" + ) + if (is.null(proj_name) || is.na(proj_name)) proj_name <- "default" + DBI::dbExecute(con, + "INSERT INTO object_cnt (id, name) VALUES (?, ?)", + params = list(1L, proj_name)) + } + + invisible(NULL) +} + + +#' Populate reference/parameter tables from the SWAT+ datasets databases +#' +#' Delegates to the \code{populate_from_datasets()} function in +#' \pkg{rQSWATPlus}, which copies reference data (plants, fertilizers, +#' operations, land use, calibration parameters, etc.) from bundled databases +#' into the project database. Only empty or missing tables are populated; +#' tables with existing data are left untouched. +#' +#' @param con DBI connection to the project database. +#' @return Invisible \code{NULL}. +#' @keywords internal +populate_from_datasets <- function(con) { + fn <- tryCatch( + get("populate_from_datasets", envir = asNamespace("rQSWATPlus")), + error = function(e) NULL + ) + if (is.null(fn)) { + return(invisible(NULL)) + } + fn(con) + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# Internal helper: safe row count (returns 0 on error or missing table) +# -------------------------------------------------------------------------- +.gis_count <- function(con, tbl) { + tryCatch( + DBI::dbGetQuery(con, + paste0("SELECT COUNT(*) AS n FROM ", tbl))$n[1L], + error = function(e) 0L + ) +} + +# -------------------------------------------------------------------------- +# Internal helper: safe table write (ignore errors from schema mismatches) +# -------------------------------------------------------------------------- +.gis_write <- function(con, tbl, df) { + if (nrow(df) == 0L) return(invisible(NULL)) + tryCatch( + DBI::dbWriteTable(con, tbl, df, append = TRUE, row.names = FALSE), + error = function(e) { + warning(sprintf("Failed to write to table '%s': %s", tbl, e$message)) + NULL + }) + invisible(NULL) +} + +# Like .gis_write but silently drops data-frame columns that do not exist in +# the target DB table. This allows callers to pass a "full-defaults" frame +# while remaining compatible with minimal test schemas. +.gis_write_safe <- function(con, tbl, df) { + if (nrow(df) == 0L) return(invisible(NULL)) + db_cols <- tryCatch(DBI::dbListFields(con, tbl), + error = function(e) names(df)) + common <- intersect(names(df), db_cols) + if (length(common) == 0L) return(invisible(NULL)) + .gis_write(con, tbl, df[, common, drop = FALSE]) +} + +# -------------------------------------------------------------------------- +# Internal helper: safe single SQL execute +# -------------------------------------------------------------------------- +.gis_exec <- function(con, sql) { + tryCatch(DBI::dbExecute(con, sql), error = function(e) NULL) + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# Internal helper: zero-padded name generation matching Python get_name() +# -------------------------------------------------------------------------- +.gis_name <- function(prefix, id, cnt) { + if (cnt < 10L) sprintf("%s%d", prefix, id) + else if (cnt < 100L) sprintf("%s%02d", prefix, id) + else if (cnt < 1000L) sprintf("%s%03d", prefix, id) + else sprintf("%s%04d", prefix, id) +} + +# -------------------------------------------------------------------------- +# SWAT+ × 10 naming: id multiplied by 10, minimum 4-digit zero-padding. +# Used for routing-unit level objects (rtu, toportu, fld) to leave room +# for inserting intermediate IDs between units (standard QSWAT+ convention). +# -------------------------------------------------------------------------- +.gis_name_x10 <- function(id, prefix) { + sprintf("%s%04d", prefix, id * 10L) +} + +# -------------------------------------------------------------------------- +# Internal helper: slope pct -> slope length (Python get_slope_len()) +# -------------------------------------------------------------------------- +.slope_len <- function(slope_pct) { + s <- slope_pct / 100 + if (is.na(s) || s <= 0) return(50.0) + min(150.0, 4.570 * (s ^ -0.6142)) +} + +#' Populate SWAT+ model tables from GIS data +#' +#' Reads the \code{gis_*} tables written by +#' \code{rQSWATPlus::qswat_write_database()} and creates the SWAT+ model +#' objects (channels, routing units, HRUs, aquifers, connections, etc.) +#' that \code{\link{write_config_files}} needs to produce a complete set of +#' SWAT+ input files. +#' +#' This mirrors the Python SWAT+ Editor \file{actions/import_gis.py} +#' \code{insert_default()} method. Only creates rows in tables that are +#' currently empty; existing data is left untouched. +#' +#' @param con DBI connection to the project database (must already have +#' \code{gis_*} tables populated by +#' \code{rQSWATPlus::qswat_write_database()}). +#' @return Invisible \code{NULL}. +#' @keywords internal +populate_from_gis <- function(con) { + + # Only run when gis tables are present + if (.gis_count(con, "gis_lsus") == 0L && + .gis_count(con, "gis_hrus") == 0L) { + return(invisible(NULL)) + } + + is_lte <- tryCatch({ + cfg <- DBI::dbGetQuery(con, + "SELECT is_lte FROM project_config LIMIT 1") + isTRUE(cfg$is_lte[1L] == 1L) + }, error = function(e) FALSE) + + if (is_lte) { + .populate_gis_lte(con) + } else { + .populate_gis_standard(con) + } + + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# Standard (non-LTE) GIS import — mirrors import_gis.py insert_default() +# -------------------------------------------------------------------------- +.populate_gis_standard <- function(con) { + .gis_insert_routing_units(con) + .gis_insert_om_water(con) + # .gis_insert_channels(con) + .gis_insert_channels_lte(con) + .gis_insert_reservoirs(con) + .gis_insert_recall(con) + .gis_insert_hrus(con) + .gis_insert_aquifers(con) + .gis_insert_connections(con) + .gis_insert_lsus(con) + .gis_update_object_cnt(con) + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# LTE GIS import +# -------------------------------------------------------------------------- +.populate_gis_lte <- function(con) { + .gis_insert_om_water(con) + .gis_insert_channels_lte(con) + .gis_insert_lsus_lte(con) + .gis_insert_hru_ltes(con) + .gis_insert_connections_lte(con) + .gis_update_object_cnt(con) + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# Step 1: Routing units from gis_lsus +# Schema (rQSWATPlus ensure_write_tables): +# topography_hyd: (id, name, slp, slp_len, lat_len, dist_cha, depos) +# field_fld: (id, name, len, wd, ang) +# rout_unit_rtu: (id, name, topo_id, field_id) +# rout_unit_con: (id, name, gis_id, area, lat, lon, elev, ovfl, rule) +# rout_unit_def_con: (id, name, rtu_id) +# -------------------------------------------------------------------------- +.gis_insert_routing_units <- function(con) { + if (.gis_count(con, "rout_unit_rtu") > 0L) return(invisible(NULL)) + lsus <- tryCatch( + DBI::dbGetQuery(con, "SELECT * FROM gis_lsus ORDER BY id"), + error = function(e) NULL) + if (is.null(lsus) || nrow(lsus) == 0L) return(invisible(NULL)) + + n <- nrow(lsus) + cnt <- max(lsus$id) + idx <- seq_len(n) + + topos <- data.frame( + id = idx, + name = sapply(idx, .gis_name_x10, prefix = "toportu"), + slp = pmax(lsus$slope / 100, 0.001), + slp_len = sapply(lsus$slope, .slope_len), + lat_len = sapply(lsus$slope, .slope_len), + dist_cha = 121.0, + depos = 0.0, + type = "sub", + stringsAsFactors = FALSE) + + fields <- data.frame( + id = idx, + name = sapply(idx, .gis_name_x10, prefix = "fld"), + len = 500.0, + wd = 100.0, + ang = 30.0, + stringsAsFactors = FALSE) + + rtus <- data.frame( + id = idx, + name = sapply(idx, .gis_name_x10, prefix = "rtu"), + topo_id = idx, + field_id = idx, + stringsAsFactors = FALSE) + + rtu_cons <- data.frame( + id = idx, + name = sapply(idx, .gis_name_x10, prefix = "rtu"), + gis_id = lsus$id, + lat = lsus$lat, + lon = lsus$lon, + elev = lsus$elev, + area = lsus$area, + ovfl = 0L, + rule = 0L, + stringsAsFactors = FALSE) + + # rout_unit_def_con mirrors rout_unit_con (acts as a "definition" flag table) + rtu_def_cons <- data.frame( + id = idx, + name = sapply(idx, .gis_name_x10, prefix = "rtu"), + rtu_id = idx, + stringsAsFactors = FALSE) + + .gis_write_safe(con, "topography_hyd", topos) + .gis_write(con, "field_fld", fields) + .gis_write(con, "rout_unit_rtu", rtus) + .gis_write(con, "rout_unit_con", rtu_cons) + .gis_write(con, "rout_unit_def_con", rtu_def_cons) + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# Step 2: om_water_ini default singleton +# -------------------------------------------------------------------------- +.gis_insert_om_water <- function(con) { + if (.gis_count(con, "om_water_ini") > 0L) return(invisible(NULL)) + .gis_exec(con, "INSERT INTO om_water_ini (id, name) VALUES (1, 'omwat1')") + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# Step 3a: Standard channels from gis_channels +# Schema: +# initial_cha: (id, name, org_min_id) +# hydrology_cha: (id, name, wd, dp, slp, len, mann, k) +# sediment_cha: (id, name) +# nutrients_cha: (id, name, plt_n, ptl_p, alg_stl, ben_disp, ben_nh3n, +# ptln_stl, ptlp_stl, cst_stl, ben_cst, cbn_bod_co, air_rt, +# cbn_bod_stl, ben_bod, bact_die, cst_decay, nh3n_no2n, +# no2n_no3n, ptln_nh3n, ptlp_solp, q2e_lt, q2e_alg, chla_alg, +# alg_n, alg_p, alg_o2_prod, alg_o2_resp, o2_nh3n, o2_no2n, +# alg_grow, alg_resp, slr_act, lt_co, const_n, const_p, +# lt_nonalg, alg_shd_l, alg_shd_nl, nh3_pref, description) +# channel_cha: (id, name, init_id, hyd_id, sed_id, nut_id) +# chandeg_con: (id, name, gis_id, area, lat, lon, elev, ovfl, rule[, wst_id]) +# -------------------------------------------------------------------------- +.gis_insert_channels <- function(con) { + if (.gis_count(con, "channel_cha") == 0L) { + chas <- tryCatch( + DBI::dbGetQuery(con, "SELECT * FROM gis_channels ORDER BY id"), + error = function(e) NULL) + if (is.null(chas) || nrow(chas) == 0L) return(invisible(NULL)) + + # Ensure om_water_ini exists + .gis_insert_om_water(con) + om_id <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM om_water_ini LIMIT 1")$id[1L], + error = function(e) 1L) + + # One default initial_cha row + if (.gis_count(con, "initial_cha") == 0L) { + .gis_exec(con, paste0( + "INSERT INTO initial_cha (id, name, org_min_id) VALUES (1, 'initcha1', ", + om_id, ")")) + } + init_id <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM initial_cha LIMIT 1")$id[1L], + error = function(e) 1L) + + # One default nutrients_cha row with physics-based defaults (mirrors Python Nutrients_cha model). + # If the table exists with the wrong schema (e.g. initial-concentration columns such as + # 'algae', 'cbod', 'dis_ox' instead of process-parameter columns like 'alg_stl'), drop it + # so that .gis_write_safe() recreates it with the correct column set. + if (.gis_count(con, "nutrients_cha") == 0L) { + nut_cols <- tryCatch(DBI::dbListFields(con, "nutrients_cha"), + error = function(e) character(0)) + if (length(nut_cols) > 0L && !"alg_stl" %in% nut_cols) { + .gis_exec(con, "DROP TABLE IF EXISTS nutrients_cha") + } + nuts_def <- data.frame( + id = 1L, + name = "nutcha1", + plt_n = 0, + ptl_p = 0, + alg_stl = 1, + ben_disp = 0.05, + ben_nh3n = 0.5, + ptln_stl = 0.05, + ptlp_stl = 0.05, + cst_stl = 2.5, + ben_cst = 2.5, + cbn_bod_co = 1.71, + air_rt = 50, + cbn_bod_stl = 0.36, + ben_bod = 2, + bact_die = 2, + cst_decay = 1.71, + nh3n_no2n = 0.55, + no2n_no3n = 1.1, + ptln_nh3n = 0.21, + ptlp_solp = 0.35, + q2e_lt = 2L, + q2e_alg = 2L, + chla_alg = 50, + alg_n = 0.08, + alg_p = 0.015, + alg_o2_prod = 1.6, + alg_o2_resp = 2, + o2_nh3n = 3.5, + o2_no2n = 1.07, + alg_grow = 2, + alg_resp = 2.5, + slr_act = 0.3, + lt_co = 0.75, + const_n = 0.02, + const_p = 0.025, + lt_nonalg = 1, + alg_shd_l = 0.03, + alg_shd_nl = 0.054, + nh3_pref = 0.5, + description = "", + stringsAsFactors = FALSE) + .gis_write_safe(con, "nutrients_cha", nuts_def) + } + nut_id <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM nutrients_cha LIMIT 1")$id[1L], + error = function(e) 1L) + + n <- nrow(chas) + cnt <- max(chas$id) + idx <- seq_len(n) + + # Standard hydrology_cha: per-channel geometry-based parameters. + # Extra columns (beyond wd/dp/slp/len/mann/k) use .gis_write_safe() so they + # are silently dropped when the DB schema does not have them (e.g. in tests). + hyds <- data.frame( + id = idx, + name = mapply(.gis_name, "hyd", chas$id, cnt), + wd = pmax(chas$wid2, 0.1), + dp = pmax(chas$dep2, 0.1), + slp = pmax(chas$slo2, 0.0001), + len = pmax(chas$len2, 0.001), + mann = 0.05, + k = 1.0, + erod_fact = 0.02, + cov_fact = 0.0, + hc_cov = 0.0, + eq_slp = 0.0, + d50 = 0.1, + clay = 0.1, + carbon = 0.01, + dry_bd = 1.2, + side_slp = 2.0, + bed_load = 0.5, + fps = 0.0, + fpn = 0.0, + n_conc = 0.0, + p_conc = 0.0, + p_bio = 0.0, + stringsAsFactors = FALSE) + + # One sediment_cha row per channel (not a single shared row). + seds <- data.frame( + id = idx, + name = mapply(.gis_name, "sed", chas$id, cnt), + stringsAsFactors = FALSE) + + # Standard channel_cha: references hydrology, sediment, nutrients, initial + chan_chas <- data.frame( + id = idx, + name = mapply(.gis_name, "cha", chas$id, cnt), + init_id = init_id, + hyd_id = idx, + sed_id = idx, + nut_id = nut_id, + stringsAsFactors = FALSE) + + # chandeg_con: channel connections (same structure for standard and LTE) + # Fall back to subbasin lat/lon/elev when channel midlat/midlon are 0 or NA. + subs <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, lat, lon, elev FROM gis_subbasins ORDER BY id"), + error = function(e) data.frame(id = integer(0), lat = numeric(0), + lon = numeric(0), elev = numeric(0))) + sub_lat <- if (nrow(subs) > 0L) setNames(subs$lat, as.character(subs$id)) else c() + sub_lon <- if (nrow(subs) > 0L) setNames(subs$lon, as.character(subs$id)) else c() + sub_elev <- if (nrow(subs) > 0L) setNames(subs$elev, as.character(subs$id)) else c() + + lat <- ifelse(!is.na(chas$midlat) & chas$midlat != 0, + chas$midlat, sub_lat[as.character(chas$subbasin)]) + lon <- ifelse(!is.na(chas$midlon) & chas$midlon != 0, + chas$midlon, sub_lon[as.character(chas$subbasin)]) + elev <- ifelse(!is.na(chas$elevmin) & chas$elevmin != 0, + chas$elevmin, sub_elev[as.character(chas$subbasin)]) + + chan_cons <- data.frame( + id = idx, + name = mapply(.gis_name, "cha", chas$id, cnt), + gis_id = chas$id, + lat = lat, + lon = lon, + elev = elev, + area = chas$areac, + ovfl = 0L, + rule = 0L, + stringsAsFactors = FALSE) + + # Assign nearest weather station to each channel + wst_rows <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, lat, lon FROM weather_sta_cli"), + error = function(e) data.frame(id = integer(0), lat = numeric(0), + lon = numeric(0))) + if (nrow(wst_rows) > 0L) { + chan_cons$wst_id <- vapply(seq_len(nrow(chan_cons)), function(i) { + d2 <- (wst_rows$lat - chan_cons$lat[i])^2 + + (wst_rows$lon - chan_cons$lon[i])^2 + wst_rows$id[which.min(d2)] + }, integer(1L)) + } + + .gis_write_safe(con, "hydrology_cha", hyds) + .gis_write_safe(con, "sediment_cha", seds) + .gis_write(con, "channel_cha", chan_chas) + .gis_write_safe(con, "chandeg_con", chan_cons) + } + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# Step 3b: LTE channels from gis_channels (used for LTE mode only) +# Schema: +# initial_cha: (id, name, org_min_id) +# hyd_sed_lte_cha:(id, name, order, wd, dp, slp, len, mann, k, erod_fact, +# cov_fact, sinu, eq_slp, d50, clay, carbon, dry_bd, +# side_slp, bankfull_flo, fps, fpn, n_conc, p_conc, p_bio) +# channel_lte_cha:(id, name, hyd_id, init_id) +# chandeg_con: (id, name, gis_id, area, lat, lon, elev, ovfl, rule) +# -------------------------------------------------------------------------- +.gis_insert_channels_lte <- function(con) { + if (.gis_count(con, "channel_lte_cha") == 0L) { + chas <- tryCatch( + DBI::dbGetQuery(con, "SELECT * FROM gis_channels ORDER BY id"), + error = function(e) NULL) + if (is.null(chas) || nrow(chas) == 0L) return(invisible(NULL)) + + # Ensure om_water_ini exists + .gis_insert_om_water(con) + om_id <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM om_water_ini LIMIT 1")$id[1L], + error = function(e) 1L) + + # One default initial_cha row + if (.gis_count(con, "initial_cha") == 0L) { + .gis_exec(con, paste0( + "INSERT INTO initial_cha (id, name, org_min_id) VALUES (1, 'initcha1', ", + om_id, ")")) + } + init_id <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM initial_cha LIMIT 1")$id[1L], + error = function(e) 1L) + + # One default nutrients_cha row with physics-based defaults (mirrors Python Nutrients_cha model). + # If the table exists with the wrong schema (e.g. initial-concentration columns such as + # 'algae', 'cbod', 'dis_ox' instead of process-parameter columns like 'alg_stl'), drop it + # so that .gis_write_safe() recreates it with the correct column set. + if (.gis_count(con, "nutrients_cha") == 0L) { + nut_cols <- tryCatch(DBI::dbListFields(con, "nutrients_cha"), + error = function(e) character(0)) + if (length(nut_cols) > 0L && !"alg_stl" %in% nut_cols) { + .gis_exec(con, "DROP TABLE IF EXISTS nutrients_cha") + } + nuts_def <- data.frame( + id = 1L, + name = "nutcha1", + plt_n = 0, + ptl_p = 0, + alg_stl = 1, + ben_disp = 0.05, + ben_nh3n = 0.5, + ptln_stl = 0.05, + ptlp_stl = 0.05, + cst_stl = 2.5, + ben_cst = 2.5, + cbn_bod_co = 1.71, + air_rt = 50, + cbn_bod_stl = 0.36, + ben_bod = 2, + bact_die = 2, + cst_decay = 1.71, + nh3n_no2n = 0.55, + no2n_no3n = 1.1, + ptln_nh3n = 0.21, + ptlp_solp = 0.35, + q2e_lt = 2L, + q2e_alg = 2L, + chla_alg = 50, + alg_n = 0.08, + alg_p = 0.015, + alg_o2_prod = 1.6, + alg_o2_resp = 2, + o2_nh3n = 3.5, + o2_no2n = 1.07, + alg_grow = 2, + alg_resp = 2.5, + slr_act = 0.3, + lt_co = 0.75, + const_n = 0.02, + const_p = 0.025, + lt_nonalg = 1, + alg_shd_l = 0.03, + alg_shd_nl = 0.054, + nh3_pref = 0.5, + description = "", + stringsAsFactors = FALSE) + .gis_write_safe(con, "nutrients_cha", nuts_def) + } + + # If the existing hyd_sed_lte_cha table has the old 'wd_rto' column (present + # in projects created before the wd_rto -> sinu migration), drop it so that + # it is recreated with the current schema matching Python Hyd_sed_lte_cha. + if (.gis_count(con, "hyd_sed_lte_cha") == 0L) { + hydsed_cols <- tryCatch(DBI::dbListFields(con, "hyd_sed_lte_cha"), + error = function(e) character(0)) + if (length(hydsed_cols) > 0L && "wd_rto" %in% hydsed_cols) { + .gis_exec(con, "DROP TABLE IF EXISTS hyd_sed_lte_cha") + .gis_exec(con, paste0( + "CREATE TABLE IF NOT EXISTS hyd_sed_lte_cha (", + " id INTEGER PRIMARY KEY, name TEXT UNIQUE,", + " [order] TEXT,", + " wd REAL, dp REAL, slp REAL, len REAL, mann REAL, k REAL,", + " erod_fact REAL, cov_fact REAL, sinu REAL, eq_slp REAL,", + " d50 REAL, clay REAL, carbon REAL, dry_bd REAL,", + " side_slp REAL, bankfull_flo REAL, fps REAL, fpn REAL,", + " n_conc REAL, p_conc REAL, p_bio REAL, description TEXT", + ")")) + } + } + + n <- nrow(chas) + cnt <- max(chas$id) + idx <- seq_len(n) + + hyds <- data.frame( + id = idx, + name = mapply(.gis_name, "hyd", chas$id, cnt), + order = if ("strahler" %in% names(chas)) as.character(chas$strahler) else "1", + wd = pmax(chas$wid2, 0.1), + dp = pmax(chas$dep2, 0.1), + slp = pmax(chas$slo2, 0.0001), + len = pmax(chas$len2, 0.001), + mann = 0.05, + k = 1.0, + erod_fact = 0.02, + cov_fact = 0.0, + sinu = 1.05, + eq_slp = 0.0, + d50 = 0.1, + clay = 0.1, + carbon = 0.04, + dry_bd = 1.2, + side_slp = 2.0, + bankfull_flo = 0.5, + fps = 0.00001, + fpn = 0.1, + n_conc = 0.0, + p_conc = 0.0, + p_bio = 0.0, + stringsAsFactors = FALSE) + + chan_ltes <- data.frame( + id = idx, + name = mapply(.gis_name, "cha", chas$id, cnt), + hyd_id = idx, + init_id = init_id, + stringsAsFactors = FALSE) + + # Fall back to subbasin lat/lon/elev when channel midlat/midlon are 0 or NA. + subs <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, lat, lon, elev FROM gis_subbasins ORDER BY id"), + error = function(e) data.frame(id = integer(0), lat = numeric(0), + lon = numeric(0), elev = numeric(0))) + sub_lat <- if (nrow(subs) > 0L) setNames(subs$lat, as.character(subs$id)) else c() + sub_lon <- if (nrow(subs) > 0L) setNames(subs$lon, as.character(subs$id)) else c() + sub_elev <- if (nrow(subs) > 0L) setNames(subs$elev, as.character(subs$id)) else c() + + lat <- ifelse(!is.na(chas$midlat) & chas$midlat != 0, + chas$midlat, sub_lat[as.character(chas$subbasin)]) + lon <- ifelse(!is.na(chas$midlon) & chas$midlon != 0, + chas$midlon, sub_lon[as.character(chas$subbasin)]) + elev <- ifelse(!is.na(chas$elevmin) & chas$elevmin != 0, + chas$elevmin, sub_elev[as.character(chas$subbasin)]) + + chan_cons <- data.frame( + id = idx, + name = mapply(.gis_name, "cha", chas$id, cnt), + gis_id = chas$id, + lat = lat, + lon = lon, + elev = elev, + area = chas$areac, + ovfl = 0L, + rule = 0L, + stringsAsFactors = FALSE) + + # Assign nearest weather station to each channel + wst_rows <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, lat, lon FROM weather_sta_cli"), + error = function(e) data.frame(id = integer(0), lat = numeric(0), + lon = numeric(0))) + if (nrow(wst_rows) > 0L) { + chan_cons$wst_id <- vapply(seq_len(nrow(chan_cons)), function(i) { + d2 <- (wst_rows$lat - chan_cons$lat[i])^2 + + (wst_rows$lon - chan_cons$lon[i])^2 + wst_rows$id[which.min(d2)] + }, integer(1L)) + } + + .gis_write(con, "hyd_sed_lte_cha", hyds) + .gis_write(con, "channel_lte_cha", chan_ltes) + .gis_write_safe(con, "chandeg_con", chan_cons) + invisible(NULL) + } +} + +# -------------------------------------------------------------------------- +# Step 4: Reservoirs from gis_water +# -------------------------------------------------------------------------- +.gis_insert_reservoirs <- function(con) { + if (.gis_count(con, "reservoir_res") > 0L) return(invisible(NULL)) + waters <- tryCatch( + DBI::dbGetQuery(con, "SELECT * FROM gis_water ORDER BY id"), + error = function(e) NULL) + if (is.null(waters) || nrow(waters) == 0L) return(invisible(NULL)) + + .gis_insert_om_water(con) + om_id <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM om_water_ini LIMIT 1")$id[1L], + error = function(e) 1L) + + if (.gis_count(con, "initial_res") == 0L) { + .gis_exec(con, paste0( + "INSERT INTO initial_res (id, name, org_min_id) VALUES (1,'initres1',", + om_id, ")")) + } + init_id <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM initial_res LIMIT 1")$id[1L], + error = function(e) 1L) + + if (.gis_count(con, "sediment_res") == 0L) { + .gis_exec(con, " + INSERT INTO sediment_res (id, name, sed_stl, velsetl_d50, velsetl_stl) + VALUES (1, 'sedres1', 1, 10, 1)") + } + sed_id <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM sediment_res LIMIT 1")$id[1L], + error = function(e) 1L) + + if (.gis_count(con, "nutrients_res") == 0L) { + .gis_exec(con, " + INSERT INTO nutrients_res + (id,name,mid_start,mid_end,mid_n_stl,n_stl,mid_p_stl,p_stl, + chla_co,secchi_co,theta_n,theta_p,n_min_stl,p_min_stl) + VALUES (1,'nutres1',5,10,5.5,5.5,10,10,1,1,1,1,0.1,0.01)") + } + nut_id <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM nutrients_res LIMIT 1")$id[1L], + error = function(e) 1L) + + n <- nrow(waters) + cnt <- max(waters$id) + idx <- seq_len(n) + + res_names <- mapply(.gis_name, tolower(waters$wtype), waters$id, cnt) + + hyd_res <- data.frame( + id = idx, + name = res_names, + yr_op = 1.0, + mon_op = 1.0, + area_ps = waters$area, + vol_ps = waters$area * 10, + area_es = waters$area * 1.15, + vol_es = waters$area * 1.15 * 10, + k = 0.0, + evap_co = 0.6, + shp_co1 = 0.0, + shp_co2 = 0.0, + stringsAsFactors = FALSE) + + res_objs <- data.frame( + id = idx, + name = res_names, + init_id = init_id, + hyd_id = idx, + sed_id = sed_id, + nut_id = nut_id, + stringsAsFactors = FALSE) + + res_cons <- data.frame( + id = idx, + name = res_names, + gis_id = waters$id, + lat = waters$lat, + lon = waters$lon, + elev = waters$elev, + area = waters$area, + ovfl = 0L, + rule = 0L, + stringsAsFactors = FALSE) + + .gis_write(con, "hydrology_res", hyd_res) + .gis_write(con, "reservoir_res", res_objs) + .gis_write(con, "reservoir_con", res_cons) + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# Step 5: Recall (point sources) from gis_points +# -------------------------------------------------------------------------- +.gis_insert_recall <- function(con) { + if (.gis_count(con, "recall_rec") > 0L) return(invisible(NULL)) + pts <- tryCatch( + DBI::dbGetQuery(con, + "SELECT * FROM gis_points WHERE ptype IN ('P','I') ORDER BY id"), + error = function(e) NULL) + if (is.null(pts) || nrow(pts) == 0L) return(invisible(NULL)) + + cnt <- max(pts$id) + idx <- seq_len(nrow(pts)) + + recs <- data.frame( + id = idx, + name = mapply(.gis_name, "pt", pts$id, cnt), + rec_typ = 4L, + stringsAsFactors = FALSE) + rec_cons <- data.frame( + id = idx, + name = mapply(.gis_name, "pt", pts$id, cnt), + gis_id = pts$id, + lat = pts$lat, + lon = pts$lon, + elev = pts$elev, + area = 0.0, + ovfl = 0L, + rule = 0L, + stringsAsFactors = FALSE) + + .gis_write(con, "recall_rec", recs) + .gis_write(con, "recall_con", rec_cons) + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# Step 6: HRUs from gis_hrus (standard projects) +# Schema (rQSWATPlus): +# hydrology_hyd: (id,name,lat_ttime,lat_sed,can_max,esco,epco, +# orgn_enrich,orgp_enrich,cn3_swf,bio_mix,perco, +# lat_orgn,lat_orgp,harg_pet,latq_co,cn2) +# topography_hyd: (id,name,slp,slp_len,lat_len,dist_cha,depos) +# NOTE: appended rows, ids continue from routing-unit topos +# hru_data_hru: (id,name,topo_id,hydro_id,soil_id,lu_mgt_id, +# soil_plant_init_id,surf_stor_id,snow_id,field_id) +# hru_con: (id,name,gis_id,area,lat,lon,elev,ovfl,rule) +# rout_unit_ele: (id,name,rtu_id,obj_id,obj_typ,frac,dlr_id) +# ls_unit_ele: (id,name) [minimal] +# -------------------------------------------------------------------------- +.gis_insert_hrus <- function(con) { + # When hru_data_hru is already populated (e.g. by rQSWATPlus), we still need + # to create the related tables (hydrology_hyd, hru_con, rout_unit_ele, + # ls_unit_ele, topography_hyd for HRUs) that depend on it. Only skip + # individual tables that are already populated. + hru_data_exists <- .gis_count(con, "hru_data_hru") > 0L + + hrus <- tryCatch( + DBI::dbGetQuery(con, "SELECT * FROM gis_hrus ORDER BY id"), + error = function(e) NULL) + if (is.null(hrus) || nrow(hrus) == 0L) return(invisible(NULL)) + + # Ensure soils_sol has a row for every unique soil name + .gis_ensure_soils(con, unique(hrus$soil)) + + # Ensure nutrients_sol default row + nut_sol_id <- .gis_ensure_nutrients_sol(con) + + # Ensure soil_plant_ini default row + sp_id <- .gis_ensure_soil_plant_ini(con, nut_sol_id) + + # Ensure landuse_lum has rows for each unique land use + lum_dict <- .gis_ensure_landuse_lum(con, unique(hrus$landuse)) + + # Create management schedules for annual crop land uses (mirrors Python import_gis.py) + .gis_ensure_management_sch(con, unique(hrus$landuse)) + + # Get snow_sno id (should already exist from populate_from_datasets) + snow_id <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM snow_sno LIMIT 1")$id[1L], + error = function(e) NA_integer_) + + n <- nrow(hrus) + cnt <- max(hrus$id) + idx <- seq_len(n) + + # Soil ids (from soils_sol by name) + soils_map <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, name, hyd_grp FROM soils_sol"), + error = function(e) data.frame(id = integer(0), name = character(0), + hyd_grp = character(0))) + soils_id <- soils_map$id[match(hrus$soil, soils_map$name)] + soils_id[is.na(soils_id)] <- if (nrow(soils_map) > 0L) soils_map$id[1L] else 1L + + # Get hyd_grp per HRU for hydrology parameter computation + hyd_grp_for_hru <- if ("hyd_grp" %in% names(soils_map)) { + soils_map$hyd_grp[match(hrus$soil, soils_map$name)] + } else { + rep(NA_character_, n) + } + + # Compute perco, cn3_swf, latq_co from soil hydrological group and slope + # Mirrors Python Hydrology_hyd.get_perco_cn3_swf_latq_co() + hyd_params <- .get_perco_cn3_swf_latq_co(hyd_grp_for_hru, hrus$slope / 100) + + # Landuse lum ids + lu_ids <- unname(lum_dict[tolower(hrus$landuse)]) + lu_ids[is.na(lu_ids)] <- if (length(lum_dict) > 0L) lum_dict[[1L]] else 1L + + # field_id: link to field_fld via rout_unit (1 field per LSU/routing unit) + rtu_map <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, gis_id FROM rout_unit_con"), + error = function(e) data.frame(id = integer(0), gis_id = integer(0))) + rtu_id_for_hru <- rtu_map$id[match(hrus$lsu, rtu_map$gis_id)] + rtu_id_for_hru[is.na(rtu_id_for_hru)] <- 1L + # field_id matches the field created for each routing unit (same id) + field_id_for_hru <- rtu_id_for_hru + + # Topography_hyd: one row per HRU (Python inserts these starting after RTU topos) + # topo_id starts after the existing topography_hyd entries (RTU level) + existing_topo_count <- .gis_count(con, "topography_hyd") + topo_start_id <- existing_topo_count + 1L + topo_ids_for_hru <- seq(topo_start_id, length.out = n) + + # hydrology_hyd: one row per HRU (mirrors Python) + if (.gis_count(con, "hydrology_hyd") == 0L) { + hyds <- data.frame( + id = idx, + name = mapply(.gis_name, "hyd", hrus$id, cnt), + lat_ttime = 0.0, + lat_sed = 0.0, + can_max = 1.0, + esco = 0.95, + epco = 0.50, + orgn_enrich = 0.0, + orgp_enrich = 0.0, + cn3_swf = hyd_params$cn3_swf, + bio_mix = 0.20, + perco = hyd_params$perco, + lat_orgn = 0.0, + lat_orgp = 0.0, + pet_co = 1.0, + latq_co = hyd_params$latq_co, + stringsAsFactors = FALSE) + .gis_write_safe(con, "hydrology_hyd", hyds) + } + + # topography_hyd: one row per HRU (mirrors Python) + # Only insert if no HRU topography entries exist yet + hru_topo_count <- tryCatch( + DBI::dbGetQuery(con, + "SELECT COUNT(*) AS n FROM topography_hyd WHERE type = 'hru'")$n[1L], + error = function(e) 0L) + if (is.na(hru_topo_count) || hru_topo_count == 0L) { + hru_topos <- data.frame( + id = topo_ids_for_hru, + name = mapply(.gis_name, "topohru", hrus$id, cnt), + slp = pmax(hrus$slope / 100, 0.001), + slp_len = sapply(hrus$slope, .slope_len), + lat_len = sapply(hrus$slope, .slope_len), + dist_cha = 121.0, + depos = 0.0, + type = "hru", + stringsAsFactors = FALSE) + .gis_write_safe(con, "topography_hyd", hru_topos) + } + + # hru_data_hru: only create if not already present + if (!hru_data_exists) { + hru_objs <- data.frame( + id = idx, + name = mapply(.gis_name, "hru", hrus$id, cnt), + topo_id = topo_ids_for_hru, + hydro_id = idx, + soil_id = soils_id, + lu_mgt_id = lu_ids, + soil_plant_init_id = sp_id, + surf_stor_id = NA_integer_, + snow_id = if (!is.na(snow_id)) snow_id else NA_integer_, + field_id = NA_integer_, + description = NA_character_, + stringsAsFactors = FALSE) + .gis_write_safe(con, "hru_data_hru", hru_objs) + } + + # hru_con: includes wst_id and hru_id (FK to hru_data_hru) + if (.gis_count(con, "hru_con") == 0L) { + hru_cons <- data.frame( + id = idx, + name = mapply(.gis_name, "hru", hrus$id, cnt), + gis_id = hrus$id, + area = hrus$arslp, + lat = hrus$lat, + lon = hrus$lon, + elev = hrus$elev, + wst_id = NA_integer_, + cst_id = NA_integer_, + ovfl = 0L, + rule = 0L, + hru_id = idx, + stringsAsFactors = FALSE) + .gis_write_safe(con, "hru_con", hru_cons) + } + + # rout_unit_ele: links HRUs to their routing units + if (.gis_count(con, "rout_unit_ele") == 0L) { + lsu_area_map <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, area FROM gis_lsus"), + error = function(e) data.frame(id = integer(0), area = numeric(0))) + arlsu_for_hru <- lsu_area_map$area[match(hrus$lsu, lsu_area_map$id)] + arlsu_for_hru[is.na(arlsu_for_hru) | arlsu_for_hru <= 0] <- 1.0 + + # frac should be arslp / sum(arslp) within each rtu_id + # i.e. each HRU's fraction of its routing unit's total slope area + + rtu_arslp_totals <- tapply(hrus$arslp, rtu_id_for_hru, sum) + rtu_arslp_for_hru <- rtu_arslp_totals[as.character(rtu_id_for_hru)] + + rtu_eles <- data.frame( + id = idx, + name = mapply(.gis_name, "hru", hrus$id, cnt), + rtu_id = rtu_id_for_hru, + obj_typ = "hru", + obj_id = idx, + frac = hrus$arslp / rtu_arslp_for_hru, # fraction within RTU + dlr_id = NA_integer_, + stringsAsFactors = FALSE) + # rtu_eles <- data.frame( + # id = idx, + # name = mapply(.gis_name, "hru", hrus$id, cnt), + # rtu_id = rtu_id_for_hru, + # obj_typ = "hru", + # obj_id = idx, + # frac = pmin(1.0, hrus$arslp / arlsu_for_hru), + # dlr_id = NA_integer_, + # stringsAsFactors = FALSE) + .gis_write_safe(con, "rout_unit_ele", rtu_eles) + } + + # ls_unit_ele: full columns matching Python (obj_typ, obj_typ_no, bsn_frac, + # sub_frac, reg_frac, ls_unit_def_id) + if (.gis_count(con, "ls_unit_ele") == 0L) { + # bsn_area = total basin area (sum of all subbasin areas) + bsn_area <- tryCatch( + DBI::dbGetQuery(con, "SELECT SUM(area) AS tot FROM gis_subbasins")$tot[1L], + error = function(e) NA_real_) + if (is.na(bsn_area) || bsn_area <= 0) bsn_area <- sum(hrus$arslp, na.rm = TRUE) + if (bsn_area <= 0) bsn_area <- 1.0 + + lsu_area_map2 <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, area FROM gis_lsus"), + error = function(e) data.frame(id = integer(0), area = numeric(0))) + arlsu2 <- lsu_area_map2$area[match(hrus$lsu, lsu_area_map2$id)] + arlsu2[is.na(arlsu2) | arlsu2 <= 0] <- 1.0 + + ls_eles <- data.frame( + id = idx, + name = mapply(.gis_name, "hru", hrus$id, cnt), + obj_typ = "hru", + obj_typ_no = idx, + bsn_frac = hrus$arslp / bsn_area, + sub_frac = hrus$arslp / rtu_arslp_for_hru, # arlsu2, + reg_frac = 0.0, + ls_unit_def_id = rtu_id_for_hru, + stringsAsFactors = FALSE) + .gis_write_safe(con, "ls_unit_ele", ls_eles) + } + + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# Internal helper: compute perco, cn3_swf, latq_co from soil hydrological +# group and slope (decimal). Mirrors Python +# Hydrology_hyd.get_perco_cn3_swf_latq_co() +# -------------------------------------------------------------------------- +.get_perco_cn3_swf_latq_co <- function(hyd_grp, slope) { + n <- length(hyd_grp) + perco <- rep(0.05, n) + cn3_swf <- rep(0.95, n) + latq_co <- rep(0.01, n) + + for (i in seq_len(n)) { + grp <- toupper(trimws(as.character(hyd_grp[i]))) + s <- if (is.na(slope[i])) 0 else slope[i] + + leach_pot <- "low" + runoff_pot <- "low" + + # Thresholds match Python exactly (slope is in decimal form = percent/100) + if (grp == "A") { + leach_pot <- "high" + runoff_pot <- if (s < 6) "low" else if (s <= 12) "mod" else "high" + } else if (grp == "B") { + leach_pot <- if (s < 6) "high" else "mod" + runoff_pot <- if (s < 4) "low" else if (s <= 6) "mod" else "high" + } else if (grp == "C") { + leach_pot <- if (s < 12) "mod" else "low" + runoff_pot <- if (s < 2) "low" else if (s <= 6) "mod" else "high" + } else if (grp == "D") { + leach_pot <- "low" + runoff_pot <- if (s < 2) "low" else if (s <= 4) "mod" else "high" + } + # else: defaults (low leach, low runoff) when hyd_grp is NA/unknown + + perco[i] <- if (leach_pot == "high") 0.9 else if (leach_pot == "mod") 0.5 else 0.05 + cn3_swf[i] <- if (runoff_pot == "high") 0 else if (runoff_pot == "mod") 0.3 else 0.95 + latq_co[i] <- if (runoff_pot == "high") 0.9 else if (runoff_pot == "mod") 0.2 else 0.01 + } + + list(perco = perco, cn3_swf = cn3_swf, latq_co = latq_co) +} + +# Helper: ensure soils_sol has a row for every unique soil name (id, name) +.gis_ensure_soils <- function(con, soil_names) { + existing <- tryCatch( + DBI::dbGetQuery(con, "SELECT name FROM soils_sol")$name, + error = function(e) character(0)) + missing_soils <- setdiff(soil_names, existing) + if (length(missing_soils) == 0L) return(invisible(NULL)) + + next_id <- max(c(0L, tryCatch( + DBI::dbGetQuery(con, "SELECT MAX(id) AS m FROM soils_sol")$m[1L], + error = function(e) 0L)), na.rm = TRUE) + 1L + + for (sname in missing_soils) { + .gis_exec(con, paste0( + "INSERT OR IGNORE INTO soils_sol (id, name) VALUES (", + next_id, ", '", sname, "')")) + next_id <- next_id + 1L + } + invisible(NULL) +} + +# Helper: ensure nutrients_sol has a default row; return its id +.gis_ensure_nutrients_sol <- function(con) { + n <- .gis_count(con, "nutrients_sol") + if (n > 0L) { + return(tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM nutrients_sol LIMIT 1")$id[1L], + error = function(e) 1L)) + } + .gis_exec(con, + "INSERT INTO nutrients_sol (id, name, exp_co) VALUES (1,'soilnut1',0.0005)") + 1L +} + +# Helper: ensure soil_plant_ini has a default row; return its id +.gis_ensure_soil_plant_ini <- function(con, nut_id) { + n <- .gis_count(con, "soil_plant_ini") + if (n > 0L) { + return(tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM soil_plant_ini LIMIT 1")$id[1L], + error = function(e) 1L)) + } + # Mirror Python: Soil_plant_ini.create(name='soilplant1', sw_frac=0, nutrients=nut.id) + # Try inserting with nutrients_id FK; fall back to minimal insert if column absent. + ins_ok <- tryCatch({ + DBI::dbExecute(con, + "INSERT INTO soil_plant_ini (id, name, sw_frac, nutrients_id) VALUES (?,?,?,?)", + params = list(1L, "soilplant1", 0, + if (!is.null(nut_id) && !is.na(nut_id)) nut_id else NA_integer_)) + TRUE + }, error = function(e) FALSE) + if (!ins_ok) { + .gis_exec(con, "INSERT INTO soil_plant_ini (id, name, sw_frac) VALUES (1,'soilplant1',0)") + } + 1L +} + +# Helper: ensure landuse_lum has rows for each land use; return name->id map. +# For each new land use code, populates FK columns by looking up: +# - plants_plt for plant-based land uses (sets plnt_com_id via plant_ini) +# - urban_urb for urban land uses (sets urban_id) +# - default cn2_id (id=5), cons_prac_id (id=1), ov_mann_id (id=2) from datasets +# Mirrors Python import_gis.py insert_landuse(). +.gis_ensure_landuse_lum <- function(con, landuse_codes) { + existing <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, name FROM landuse_lum"), + error = function(e) data.frame(id = integer(0), name = character(0))) + lum_map <- setNames(existing$id, tolower(existing$name)) + + missing_codes <- setdiff(tolower(landuse_codes), names(lum_map)) + if (length(missing_codes) == 0L) return(lum_map) + + # Default FK ids (Python defaults: cn2=5, cons_prac=1, ov_mann=2) + default_cn2 <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM cntable_lum WHERE id = 5 LIMIT 1")$id[1L], + error = function(e) NA_integer_) + if (is.na(default_cn2)) default_cn2 <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM cntable_lum ORDER BY id LIMIT 1 OFFSET 4")$id[1L], + error = function(e) NA_integer_) + + default_cons_prac <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM cons_prac_lum ORDER BY id LIMIT 1")$id[1L], + error = function(e) NA_integer_) + + default_ov_mann <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM ovn_table_lum WHERE id = 2 LIMIT 1")$id[1L], + error = function(e) NA_integer_) + if (is.na(default_ov_mann)) default_ov_mann <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM ovn_table_lum ORDER BY id LIMIT 1 OFFSET 1")$id[1L], + error = function(e) NA_integer_) + + # Urban cn2 and ov_mann (Python defaults: cn2=49, ov_mann=18) + urban_cn2 <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM cntable_lum WHERE id = 49 LIMIT 1")$id[1L], + error = function(e) NA_integer_) + if (is.na(urban_cn2)) urban_cn2 <- default_cn2 + + urban_ov_mann <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM ovn_table_lum WHERE id = 18 LIMIT 1")$id[1L], + error = function(e) NA_integer_) + if (is.na(urban_ov_mann)) urban_ov_mann <- default_ov_mann + + next_id <- max(c(0L, existing$id), na.rm = TRUE) + 1L + next_pi_id <- .gis_count(con, "plant_ini") + 1L + + for (code in missing_codes) { + # Try plant type first + plant_row <- tryCatch( + DBI::dbGetQuery(con, paste0( + "SELECT id, name FROM plants_plt WHERE LOWER(name) = '", code, "' LIMIT 1")), + error = function(e) data.frame()) + + if (nrow(plant_row) > 0L) { + # Create or reuse a plant_ini entry named '{code}_comm' + comm_name <- paste0(code, "_comm") + pi_id <- tryCatch( + DBI::dbGetQuery(con, paste0( + "SELECT id FROM plant_ini WHERE name = '", comm_name, "' LIMIT 1"))$id[1L], + error = function(e) NA_integer_) + if (is.na(pi_id)) { + # Get rot_yr_ini from datasets plant_ini if available + ds_rot <- tryCatch( + DBI::dbGetQuery(con, paste0( + "SELECT rot_yr_ini FROM plant_ini WHERE name = '", comm_name, "' LIMIT 1"))$rot_yr_ini[1L], + error = function(e) 1L) + rot_yr <- if (!is.na(ds_rot)) ds_rot else 1L + .gis_exec(con, paste0( + "INSERT OR IGNORE INTO plant_ini (id, name, rot_yr_ini) VALUES (", + next_pi_id, ", '", comm_name, "', ", rot_yr, ")")) + pi_id_check <- tryCatch( + DBI::dbGetQuery(con, paste0( + "SELECT id FROM plant_ini WHERE name = '", comm_name, "' LIMIT 1"))$id[1L], + error = function(e) NA_integer_) + if (!is.na(pi_id_check)) { + pi_id <- pi_id_check + next_pi_id <- next_pi_id + 1L + + # Populate plant_ini_item: add one default item using the plant itself + p_id <- plant_row$id[1L] + has_item <- tryCatch( + DBI::dbGetQuery(con, paste0( + "SELECT COUNT(*) AS n FROM plant_ini_item WHERE plant_ini_id = ", pi_id))$n[1L], + error = function(e) 0L) + if (is.na(has_item) || has_item == 0L) { + nxt_item_id <- tryCatch( + DBI::dbGetQuery(con, "SELECT COALESCE(MAX(id),0)+1 AS n FROM plant_ini_item")$n[1L], + error = function(e) 1L) + .gis_exec(con, paste0( + "INSERT OR IGNORE INTO plant_ini_item ", + "(id, plant_ini_id, plnt_name_id, lc_status, lai_init, bm_init, ", + "phu_init, plnt_pop, yrs_init, rsd_init) VALUES (", + nxt_item_id, ", ", pi_id, ", ", p_id, ", 0, 0.0, 0.0, 0.0, 0.0, 0.0, 10000.0)")) + } + } + } + + cn2_val <- if (!is.na(default_cn2)) default_cn2 else "NULL" + cons_val <- if (!is.na(default_cons_prac)) default_cons_prac else "NULL" + ovmann_val <- if (!is.na(default_ov_mann)) default_ov_mann else "NULL" + pi_val <- if (!is.na(pi_id)) pi_id else "NULL" + + .gis_exec(con, paste0( + "INSERT OR IGNORE INTO landuse_lum (id, name, plnt_com_id, cn2_id, cons_prac_id, ov_mann_id) VALUES (", + next_id, ", '", code, "', ", pi_val, ", ", cn2_val, ", ", cons_val, ", ", ovmann_val, ")")) + + } else { + # Try urban type + urban_row <- tryCatch( + DBI::dbGetQuery(con, paste0( + "SELECT id FROM urban_urb WHERE LOWER(name) = '", code, "' LIMIT 1")), + error = function(e) data.frame()) + + if (nrow(urban_row) > 0L) { + u_id <- urban_row$id[1L] + cn2_val <- if (!is.na(urban_cn2)) urban_cn2 else "NULL" + cons_val <- if (!is.na(default_cons_prac)) default_cons_prac else "NULL" + ovmann_val <- if (!is.na(urban_ov_mann)) urban_ov_mann else "NULL" + + .gis_exec(con, paste0( + "INSERT OR IGNORE INTO landuse_lum ", + "(id, name, urban_id, urb_ro, cn2_id, cons_prac_id, ov_mann_id) VALUES (", + next_id, ", '", code, "', ", u_id, ", 'buildup_washoff', ", + cn2_val, ", ", cons_val, ", ", ovmann_val, ")")) + } else { + # Unknown type: insert minimal row + .gis_exec(con, paste0( + "INSERT OR IGNORE INTO landuse_lum (id, name) VALUES (", next_id, ", '", code, "')")) + } + } + + lum_map[[code]] <- next_id + next_id <- next_id + 1L + } + lum_map +} + +# Helper: create management_sch auto-op schedules for annual crop land uses. +# Mirrors Python import_gis.py logic: for each unique landuse that matches a +# warm_annual or cold_annual plant in plants_plt, create a "{plant}_rot" +# management schedule with an auto-op referencing the pl_hv_summer1 (warm) or +# pl_hv_winter1 (cold) decision table. Returns a name->id map of schedules. +.gis_ensure_management_sch <- function(con, landuse_codes) { + # Skip if management_sch already has data + if (.gis_count(con, "management_sch") > 0L) { + existing <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, name FROM management_sch"), + error = function(e) data.frame(id = integer(0), name = character(0))) + return(setNames(existing$id, existing$name)) + } + + # Look up plant types for the landuse codes + plants <- tryCatch( + DBI::dbGetQuery(con, paste0( + "SELECT name, plnt_typ FROM plants_plt WHERE name IN (", + paste0("'", unique(tolower(landuse_codes)), "'", collapse = ","), ")")), + error = function(e) data.frame(name = character(0), plnt_typ = character(0))) + + if (nrow(plants) == 0L) return(invisible(setNames(integer(0), character(0)))) + + annual_plants <- plants[grepl("^(warm_annual|cold_annual)", plants$plnt_typ), , drop = FALSE] + if (nrow(annual_plants) == 0L) return(invisible(setNames(integer(0), character(0)))) + + # Get the decision table IDs for summer and winter schedules + summer_dt <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM d_table_dtl WHERE name = 'pl_hv_summer1' LIMIT 1")$id[1L], + error = function(e) NA_integer_) + winter_dt <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM d_table_dtl WHERE name = 'pl_hv_winter1' LIMIT 1")$id[1L], + error = function(e) NA_integer_) + + if (is.na(summer_dt) && is.na(winter_dt)) { + return(invisible(setNames(integer(0), character(0)))) + } + + next_mgt_id <- .gis_count(con, "management_sch") + 1L + next_auto_id <- .gis_count(con, "management_sch_auto") + 1L + mgt_map <- setNames(integer(0), character(0)) + + for (i in seq_len(nrow(annual_plants))) { + plant_name <- annual_plants$name[i] + plnt_typ <- annual_plants$plnt_typ[i] + mgt_name <- paste0(plant_name, "_rot") + + dt_id <- if (grepl("^warm_annual", plnt_typ)) summer_dt else winter_dt + if (is.na(dt_id)) next + + .gis_exec(con, paste0( + "INSERT OR IGNORE INTO management_sch (id, name) VALUES (", next_mgt_id, + ", '", mgt_name, "')")) + .gis_exec(con, paste0( + "INSERT INTO management_sch_auto (id, management_sch_id, d_table_id, plant1) VALUES (", + next_auto_id, ", ", next_mgt_id, ", ", dt_id, ", '", plant_name, "')")) + + mgt_map[mgt_name] <- next_mgt_id + next_mgt_id <- next_mgt_id + 1L + next_auto_id <- next_auto_id + 1L + } + + mgt_map +} + +# -------------------------------------------------------------------------- +# Step 7: Aquifers from gis_aquifers +# Schema (rQSWATPlus): +# initial_aqu: (id, name, org_min_id) +# aquifer_aqu: (id, name, init_id, gw_flo, dep_bot, dep_wt, no3_n, +# sol_p, ptl_n, ptl_p, bf_max, alpha_bf, revap, +# rchg_dp, spec_yld, hl_no3n, flo_min, revap_min) +# aquifer_con: (id, name, gis_id, area, lat, lon, elev, ovfl, rule) +# -------------------------------------------------------------------------- +.gis_insert_aquifers <- function(con) { + if (.gis_count(con, "aquifer_aqu") > 0L) return(invisible(NULL)) + + aqfs <- tryCatch( + DBI::dbGetQuery(con, "SELECT * FROM gis_aquifers ORDER BY id"), + error = function(e) NULL) + deep <- tryCatch( + DBI::dbGetQuery(con, "SELECT * FROM gis_deep_aquifers ORDER BY id"), + error = function(e) NULL) + + total <- 0L + if (!is.null(aqfs)) total <- total + nrow(aqfs) + if (!is.null(deep)) total <- total + nrow(deep) + if (total == 0L) return(invisible(NULL)) + + # One default initial_aqu row + .gis_insert_om_water(con) + om_id <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM om_water_ini LIMIT 1")$id[1L], + error = function(e) 1L) + if (.gis_count(con, "initial_aqu") == 0L) { + .gis_exec(con, paste0( + "INSERT INTO initial_aqu (id, name, org_min_id) VALUES (1,'initaqu1',", + om_id, ")")) + } + init_id <- tryCatch( + DBI::dbGetQuery(con, "SELECT id FROM initial_aqu LIMIT 1")$id[1L], + error = function(e) 1L) + + aqu_rows <- list() + con_rows <- list() + i <- 1L + + # Shallow aquifers + if (!is.null(aqfs) && nrow(aqfs) > 0L) { + cnt <- max(aqfs$id) + for (j in seq_len(nrow(aqfs))) { + row <- aqfs[j, ] + nm <- .gis_name("aqu", row$id, cnt) + aqu_rows[[i]] <- data.frame( + id = i, name = nm, init_id = init_id, + gw_flo = 0.05, dep_bot = 10.0, dep_wt = 3.0, + no3_n = 0.0, sol_p = 0.0, carbon = 0.5, + flo_dist = 50.0, bf_max = 1.0, alpha_bf = 0.05, + revap = 0.02, rchg_dp = 0.05, spec_yld = 0.05, + hl_no3n = 30.0, flo_min = 3.0, revap_min = 5.0, + stringsAsFactors = FALSE) + con_rows[[i]] <- data.frame( + id = i, name = nm, gis_id = row$id, + lat = row$lat, lon = row$lon, area = row$area, elev = row$elev, + ovfl = 0L, rule = 0L, + stringsAsFactors = FALSE) + i <- i + 1L + } + } + + # Deep aquifers + if (!is.null(deep) && nrow(deep) > 0L) { + cnt_d <- max(deep$id) + for (j in seq_len(nrow(deep))) { + row <- deep[j, ] + nm <- .gis_name("aqu_deep", row$id, cnt_d) + aqu_rows[[i]] <- data.frame( + id = i, name = nm, init_id = init_id, + gw_flo = 0.0, dep_bot = 100.0, dep_wt = 20.0, + no3_n = 0.0, sol_p = 0.0, carbon = 0.5, flo_dist = 50.0, + bf_max = 1.0, alpha_bf = 0.01, revap = 0.0, + rchg_dp = 0.0, spec_yld = 0.03, hl_no3n = 30.0, + flo_min = 0.0, revap_min = 0.0, + stringsAsFactors = FALSE) + con_rows[[i]] <- data.frame( + id = i, name = nm, gis_id = row$id, + lat = row$lat, lon = row$lon, area = row$area, elev = row$elev, + ovfl = 0L, rule = 0L, + stringsAsFactors = FALSE) + i <- i + 1L + } + } + + if (length(aqu_rows) > 0L) { + .gis_write(con, "aquifer_aqu", do.call(rbind, aqu_rows)) + .gis_write(con, "aquifer_con", do.call(rbind, con_rows)) + } + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# Step 8: Connections from gis_routing +# Schema (_con_out): (id, {tbl}_id, order_id, obj_typ, obj_id, hyd_typ, frac) +# -------------------------------------------------------------------------- +.gis_insert_connections <- function(con) { + # Build category -> {gis_id -> con_id} lookup maps. + # These are needed for both routing-based and synthetic fallback logic, so + # they are built before the routing early-return check. + .make_map <- function(con_tbl) { + tryCatch( + DBI::dbGetQuery(con, paste0("SELECT id, gis_id FROM ", con_tbl)), + error = function(e) data.frame(id = integer(0), gis_id = integer(0))) + } + rtu_map <- .make_map("rout_unit_con") + cha_map <- .make_map("chandeg_con") + # Split aquifer_con into shallow (aqu) and deep (daq) maps to mirror Python's + # separate gis_to_aqu_ids / gis_to_deep_aqu_ids dictionaries. + # Both share the same aquifer_con table but use different gis_id spaces. + aqu_all_named <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, gis_id, name FROM aquifer_con ORDER BY id"), + error = function(e) data.frame(id = integer(0), gis_id = integer(0), + name = character(0))) + if (nrow(aqu_all_named) > 0L) { + deep_mask <- grepl("^aqu_deep", aqu_all_named$name, ignore.case = TRUE) + aqu_map <- aqu_all_named[!deep_mask, c("id", "gis_id"), drop = FALSE] + daq_map <- aqu_all_named[ deep_mask, c("id", "gis_id"), drop = FALSE] + } else { + aqu_map <- data.frame(id = integer(0), gis_id = integer(0)) + daq_map <- data.frame(id = integer(0), gis_id = integer(0)) + } + res_map <- .make_map("reservoir_con") + hru_map <- .make_map("hru_con") + rec_map <- .make_map("recall_con") + + routing <- tryCatch( + DBI::dbGetQuery(con, "SELECT * FROM gis_routing"), + error = function(e) NULL) + + if (!is.null(routing) && nrow(routing) > 0L) { + cat_to_map <- list( + lsu = rtu_map, sub = rtu_map, + ch = cha_map, sdc = cha_map, + aqu = aqu_map, daq = daq_map, + wtr = res_map, res = res_map, pnd = res_map, + hru = hru_map) + cat_to_typ <- list( + lsu = "ru", sub = "ru", + ch = "sdc", sdc = "sdc", + aqu = "aqu", daq = "aqu", + wtr = "res", res = "res", pnd = "res", + hru = "hru") + + .lookup_id <- function(cat, gis_id) { + m <- cat_to_map[[tolower(cat)]] + if (is.null(m) || nrow(m) == 0L) return(NA_integer_) + m$id[match(gis_id, m$gis_id)] + } + + # Build PT pass-through node lookup: sourceid -> routing row. + # Mirrors Python pt_source_row_dict in import_gis.py get_connections(). + pt_rows <- routing[tolower(routing$sourcecat) == "pt", , drop = FALSE] + pt_dict <- if (nrow(pt_rows) > 0L) { + setNames( + lapply(seq_len(nrow(pt_rows)), function(i) pt_rows[i, , drop = FALSE]), + as.character(pt_rows$sourceid)) + } else list() + + # Follow a PT chain from a routing row to its first non-PT destination. + # Mirrors Python while-loop in get_connections(): + # while con_row.sinkcat == RouteCat.PT: con_row = pt_source_row_dict[con_row.sinkid] + .follow_pt <- function(row, max_iter = 100L) { + iter <- 0L + while (!is.null(row) && tolower(row$sinkcat) == "pt" && iter < max_iter) { + row <- pt_dict[[as.character(row$sinkid)]] + iter <- iter + 1L + } + if (!is.null(row) && tolower(row$sinkcat) != "pt") row else NULL + } + + # All rows with non-zero percent, excluding explicit outlets. + # RouteCat.OUTLET = "X" in Python; PT-sink rows are kept for chain following. + supported <- c("lsu","sub","ch","sdc","aqu","daq","wtr","res","pnd") + route_src <- routing[routing$percent > 0 & + !tolower(routing$sinkcat) %in% "x", , drop = FALSE] + + # Fallback: if gis_routing has no explicit CH/SDC source rows, derive channel + # routing synthetically from the subbasin topology (sub→sub or sub→ch rows) + + # gis_channels.subbasin. This handles QSWAT+ projects that store only + # subbasin-level routing without explicit channel-to-channel rows. + has_ch_src <- any(tolower(routing$sourcecat) %in% c("ch","sdc")) + if (!has_ch_src && nrow(cha_map) > 0L) { + gis_cha <- tryCatch( + DBI::dbGetQuery(con, "SELECT id AS cha_gis_id, subbasin FROM gis_channels"), + error = function(e) data.frame(cha_gis_id = integer(0), subbasin = integer(0))) + if (nrow(gis_cha) > 0L) { + sub_to_cha <- setNames(gis_cha$cha_gis_id, as.character(gis_cha$subbasin)) + sub_rows <- routing[tolower(routing$sourcecat) %in% c("sub","lsu") & + routing$percent > 0 & + !tolower(routing$sinkcat) %in% "x", , drop = FALSE] + synth <- list() + for (k in seq_len(nrow(sub_rows))) { + r <- sub_rows[k, ] + src_cha <- sub_to_cha[as.character(r$sourceid)] + if (is.na(src_cha)) next + snk_cha <- NA_integer_ + sk <- tolower(r$sinkcat) + if (sk %in% c("sub","lsu")) { + snk_cha <- sub_to_cha[as.character(r$sinkid)] + } else if (sk %in% c("ch","sdc")) { + snk_cha <- r$sinkid + } else if (sk == "pt") { + # follow PT chain; if it resolves to sub/ch, map to channel + pt_row <- .follow_pt(r) + if (!is.null(pt_row)) { + fsk <- tolower(pt_row$sinkcat) + if (fsk %in% c("sub","lsu")) snk_cha <- sub_to_cha[as.character(pt_row$sinkid)] + else if (fsk %in% c("ch","sdc")) snk_cha <- pt_row$sinkid + } + } + if (is.na(snk_cha)) next + hyd <- if (!is.null(r$hyd_typ) && !is.na(r$hyd_typ) && nzchar(r$hyd_typ)) + r$hyd_typ else "tot" + synth[[length(synth) + 1L]] <- data.frame( + sourceid = as.integer(src_cha), + sourcecat = "ch", + hyd_typ = hyd, + sinkid = as.integer(snk_cha), + sinkcat = "ch", + percent = r$percent, + stringsAsFactors = FALSE) + } + if (length(synth) > 0L) { + synth_df <- do.call(rbind, synth) + synth_df <- synth_df[!duplicated(synth_df[, c("sourceid","sinkid")]), ] + routing <- rbind(routing, synth_df) + route_src <- rbind(route_src, synth_df) + } + } + } + + .build_con_out <- function(src_cats, id_col, src_map) { + rows_sub <- route_src[tolower(route_src$sourcecat) %in% src_cats, , drop = FALSE] + if (nrow(rows_sub) == 0L || nrow(src_map) == 0L) return(NULL) + + result <- list() + orders <- list() + for (k in seq_len(nrow(rows_sub))) { + r <- rows_sub[k, ] + # Follow PT chain when the direct sink is a pass-through node. + con_row <- if (tolower(r$sinkcat) == "pt") .follow_pt(r) else r + if (is.null(con_row)) next + if (!tolower(con_row$sinkcat) %in% supported) next + + src_id <- .lookup_id(r$sourcecat, r$sourceid) + snk_id <- .lookup_id(con_row$sinkcat, con_row$sinkid) + typ <- cat_to_typ[[tolower(con_row$sinkcat)]] + if (is.na(src_id) || is.na(snk_id) || is.null(typ)) next + key <- as.character(src_id) + orders[[key]] <- if (!is.null(orders[[key]])) orders[[key]] + 1L else 1L + hyd <- if (!is.null(con_row$hyd_typ) && !is.na(con_row$hyd_typ) && + nzchar(con_row$hyd_typ)) con_row$hyd_typ else "tot" + row_df <- data.frame( + src_id, orders[[key]], typ, snk_id, hyd, r$percent / 100, + stringsAsFactors = FALSE) + names(row_df) <- c(id_col, "order_id", "obj_typ", "obj_id", + "hyd_typ", "frac") + result[[length(result) + 1L]] <- row_df + } + if (length(result) > 0L) do.call(rbind, result) else NULL + } + + if (.gis_count(con, "rout_unit_con_out") == 0L) { + # Use the general .build_con_out() which follows PT chains and handles all + # sinkcat types (sdc, aqu, res, etc.), mirroring Python get_connections() + # called with [RouteCat.LSU] in import_gis.py insert_connections(). + df <- .build_con_out(c("lsu", "sub"), "rout_unit_con_id", rtu_map) + if (!is.null(df)) .gis_write(con, "rout_unit_con_out", df) + } + + if (.gis_count(con, "chandeg_con_out") == 0L) { + df <- .build_con_out(c("ch","sdc"), "chandeg_con_id", cha_map) + if (!is.null(df)) .gis_write(con, "chandeg_con_out", df) + } + + if (.gis_count(con, "aquifer_con_out") == 0L) { + df <- .build_con_out("aqu", "aquifer_con_id", aqu_map) + if (!is.null(df)) .gis_write(con, "aquifer_con_out", df) + } + + if (.gis_count(con, "reservoir_con_out") == 0L && nrow(res_map) > 0L) { + df <- .build_con_out(c("wtr","pnd","res"), "reservoir_con_id", res_map) + if (!is.null(df)) .gis_write(con, "reservoir_con_out", df) + } + + if (.gis_count(con, "hru_con_out") == 0L && nrow(hru_map) > 0L) { + df <- .build_con_out("hru", "hru_con_id", hru_map) + if (!is.null(df)) .gis_write(con, "hru_con_out", df) + } + + # recall_con_out: mirrors Python insert_recall() which inserts recall_con_out + # for every PT->CH routing row found in gis_routing. + if (.gis_count(con, "recall_con_out") == 0L && nrow(rec_map) > 0L) { + rec_rows <- routing[tolower(routing$sourcecat) == "pt" & + tolower(routing$sinkcat) == "ch" & + routing$percent > 0, , drop = FALSE] + if (nrow(rec_rows) > 0L) { + rec_out_list <- list() + order_tracker <- list() + for (k in seq_len(nrow(rec_rows))) { + r <- rec_rows[k, ] + rec_con_id <- rec_map$id[match(r$sourceid, rec_map$gis_id)] + cha_con_id <- cha_map$id[match(r$sinkid, cha_map$gis_id)] + if (is.na(rec_con_id) || is.na(cha_con_id)) next + key <- as.character(rec_con_id) + order_tracker[[key]] <- if (!is.null(order_tracker[[key]])) + order_tracker[[key]] + 1L else 1L + hyd <- if (!is.null(r$hyd_typ) && !is.na(r$hyd_typ) && nzchar(r$hyd_typ)) + r$hyd_typ else "tot" + rec_out_list[[length(rec_out_list) + 1L]] <- data.frame( + recall_con_id = rec_con_id, + order_id = order_tracker[[key]], + obj_typ = "sdc", + obj_id = cha_con_id, + hyd_typ = hyd, + frac = r$percent / 100, + stringsAsFactors = FALSE) + } + if (length(rec_out_list) > 0L) + .gis_write(con, "recall_con_out", do.call(rbind, rec_out_list)) + } + } + } + + # Synthetic fallback for aquifer_con_out when gis_routing is absent or has no + # AQU source rows. Each shallow aquifer gets up to two outflow connections + # derived from the gis_aquifers topology: + # 1. sdc -> corresponding channel in the same subbasin (hyd_typ = "tot") + # 2. aqu -> corresponding deep aquifer via gis_aquifers.deep_aquifer (hyd_typ = "rhg") + # Mirrors the Python behaviour where aquifer outflows are built from gis_routing + # AQU rows; this fallback covers projects where those rows are absent. + if (.gis_count(con, "aquifer_con_out") == 0L && nrow(aqu_map) > 0L) { + gis_aqf <- tryCatch( + DBI::dbGetQuery(con, + "SELECT id, subbasin, deep_aquifer FROM gis_aquifers ORDER BY id"), + error = function(e) data.frame(id = integer(0), subbasin = integer(0), + deep_aquifer = integer(0))) + + if (nrow(gis_aqf) > 0L) { + # Build subbasin -> channel gis_id lookup + gis_cha_sub <- tryCatch( + DBI::dbGetQuery(con, "SELECT id AS cha_gis_id, subbasin FROM gis_channels"), + error = function(e) data.frame(cha_gis_id = integer(0), + subbasin = integer(0))) + sub_to_cha_gis <- if (nrow(gis_cha_sub) > 0L) + setNames(gis_cha_sub$cha_gis_id, as.character(gis_cha_sub$subbasin)) + else c() + + # Separate shallow and deep aquifer_con rows by name prefix so that + # overlapping gis_ids between gis_aquifers and gis_deep_aquifers are + # resolved correctly. + aqu_all <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, gis_id, name FROM aquifer_con ORDER BY id"), + error = function(e) data.frame(id = integer(0), gis_id = integer(0), + name = character(0))) + shallow_df <- aqu_all[!grepl("^aqu_deep", aqu_all$name), , drop = FALSE] + deep_df <- aqu_all[ grepl("^aqu_deep", aqu_all$name), , drop = FALSE] + shallow_map <- if (nrow(shallow_df) > 0L) + setNames(shallow_df$id, as.character(shallow_df$gis_id)) else c() + deep_map <- if (nrow(deep_df) > 0L) + setNames(deep_df$id, as.character(deep_df$gis_id)) else c() + + aqu_outs <- list() + for (k in seq_len(nrow(gis_aqf))) { + row <- gis_aqf[k, ] + aqu_id <- shallow_map[as.character(row$id)] + if (is.na(aqu_id)) next + + order_id <- 0L + + # Connection 1: sdc -> channel in same subbasin (total flow) + cha_gis_id <- sub_to_cha_gis[as.character(row$subbasin)] + if (!is.na(cha_gis_id)) { + cha_con_id <- cha_map$id[match(cha_gis_id, cha_map$gis_id)] + if (!is.na(cha_con_id)) { + order_id <- order_id + 1L + aqu_outs[[length(aqu_outs) + 1L]] <- data.frame( + aquifer_con_id = aqu_id, order_id = order_id, + obj_typ = "sdc", obj_id = cha_con_id, + hyd_typ = "tot", frac = 1.0, + stringsAsFactors = FALSE) + } + } + + # Connection 2: aqu -> deep aquifer (return flow, rhg) + if (!is.na(row$deep_aquifer) && row$deep_aquifer > 0L) { + deep_con_id <- deep_map[as.character(row$deep_aquifer)] + if (!is.na(deep_con_id)) { + order_id <- order_id + 1L + aqu_outs[[length(aqu_outs) + 1L]] <- data.frame( + aquifer_con_id = aqu_id, order_id = order_id, + obj_typ = "aqu", obj_id = deep_con_id, + hyd_typ = "rhg", frac = 1.0, + stringsAsFactors = FALSE) + } + } + } + if (length(aqu_outs) > 0L) + .gis_write(con, "aquifer_con_out", do.call(rbind, aqu_outs)) + } + } + + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# Step 9: ls_unit_def from rout_unit_con (minimal: id, name) +# -------------------------------------------------------------------------- +.gis_insert_lsus <- function(con) { + if (.gis_count(con, "ls_unit_def") > 0L) return(invisible(NULL)) + rtu_cons <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, name FROM rout_unit_con"), + error = function(e) NULL) + ele_rtus <- tryCatch( + DBI::dbGetQuery(con, "SELECT DISTINCT rtu_id FROM rout_unit_ele"), + error = function(e) NULL) + if (is.null(rtu_cons) || nrow(rtu_cons) == 0L) return(invisible(NULL)) + + if (!is.null(ele_rtus) && nrow(ele_rtus) > 0L) + rtu_cons <- rtu_cons[rtu_cons$id %in% ele_rtus$rtu_id, , drop = FALSE] + if (nrow(rtu_cons) == 0L) return(invisible(NULL)) + + .gis_write(con, "ls_unit_def", + data.frame(id = rtu_cons$id, name = rtu_cons$name, + stringsAsFactors = FALSE)) + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# LTE helpers +# -------------------------------------------------------------------------- +.gis_insert_hru_ltes <- function(con) { + if (.gis_count(con, "hru_lte_hru") > 0L) return(invisible(NULL)) + hrus <- tryCatch( + DBI::dbGetQuery(con, "SELECT * FROM gis_hrus ORDER BY id"), + error = function(e) NULL) + if (is.null(hrus) || nrow(hrus) == 0L) return(invisible(NULL)) + + cnt <- max(hrus$id) + idx <- seq_len(nrow(hrus)) + lum_dict <- .gis_ensure_landuse_lum(con, unique(hrus$landuse)) + + # hru_lte_hru schema from rQSWATPlus is different - has many more fields + # Use minimal defaults that SWAT+ LTE can work with + hru_ltes <- data.frame( + id = idx, + name = mapply(.gis_name, "hru", hrus$id, cnt), + cn2 = 65.0, + usle_k = 0.3, + usle_ls = 0.5, + usle_p = 1.0, + ovn = 0.014, + elev = hrus$elev, + slope = pmax(hrus$slope / 100, 0.001), + slope_len = sapply(hrus$slope, .slope_len), + lat = hrus$lat, + perco = 0.5, + eta = 1.0, + pet = 1.0, + strsol = 0.0, + strtmp = 0.0, + sw = 0.5, + awc = 0.3, + stringsAsFactors = FALSE) + + hru_cons <- data.frame( + id = idx, + name = mapply(.gis_name, "hru", hrus$id, cnt), + gis_id = hrus$id, + lat = hrus$lat, + lon = hrus$lon, + elev = hrus$elev, + area = hrus$arslp, + ovfl = 0L, + rule = 0L, + stringsAsFactors = FALSE) + + .gis_write(con, "hru_lte_hru", hru_ltes) + .gis_write(con, "hru_lte_con", hru_cons) + invisible(NULL) +} + +.gis_insert_lsus_lte <- function(con) { + if (.gis_count(con, "ls_unit_def") > 0L) return(invisible(NULL)) + lsus <- tryCatch( + DBI::dbGetQuery(con, "SELECT * FROM gis_lsus ORDER BY id"), + error = function(e) NULL) + hru_lsu_ids <- tryCatch( + DBI::dbGetQuery(con, "SELECT DISTINCT lsu FROM gis_hrus")$lsu, + error = function(e) integer(0)) + if (is.null(lsus) || nrow(lsus) == 0L) return(invisible(NULL)) + + lsus <- lsus[lsus$id %in% hru_lsu_ids, , drop = FALSE] + if (nrow(lsus) == 0L) return(invisible(NULL)) + + cnt <- max(lsus$id) + .gis_write(con, "ls_unit_def", + data.frame(id = seq_len(nrow(lsus)), + name = mapply(.gis_name, "lsu", lsus$id, cnt), + stringsAsFactors = FALSE)) + invisible(NULL) +} + +.gis_insert_connections_lte <- function(con) { + routing <- tryCatch( + DBI::dbGetQuery(con, "SELECT * FROM gis_routing"), + error = function(e) NULL) + if (is.null(routing) || nrow(routing) == 0L) return(invisible(NULL)) + + cha_map <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, gis_id FROM chandeg_con"), + error = function(e) data.frame(id = integer(0), gis_id = integer(0))) + + if (.gis_count(con, "chandeg_con_out") == 0L && nrow(cha_map) > 0L) { + # Build PT pass-through node lookup for chain following. + pt_rows <- routing[tolower(routing$sourcecat) == "pt", , drop = FALSE] + pt_dict <- if (nrow(pt_rows) > 0L) { + setNames( + lapply(seq_len(nrow(pt_rows)), function(i) pt_rows[i, , drop = FALSE]), + as.character(pt_rows$sourceid)) + } else list() + + .follow_pt_lte <- function(row, max_iter = 100L) { + iter <- 0L + while (!is.null(row) && tolower(row$sinkcat) == "pt" && iter < max_iter) { + row <- pt_dict[[as.character(row$sinkid)]] + iter <- iter + 1L + } + if (!is.null(row) && tolower(row$sinkcat) != "pt") row else NULL + } + + # RouteCat.OUTLET = "X" in Python; fall back to sub topology when no CH rows. + has_ch_src_lte <- any(tolower(routing$sourcecat) %in% c("ch","sdc")) + ch_routing_lte <- routing + if (!has_ch_src_lte) { + gis_cha_lte <- tryCatch( + DBI::dbGetQuery(con, "SELECT id AS cha_gis_id, subbasin FROM gis_channels"), + error = function(e) data.frame(cha_gis_id = integer(0), subbasin = integer(0))) + if (nrow(gis_cha_lte) > 0L) { + sub_to_cha_lte <- setNames(gis_cha_lte$cha_gis_id, as.character(gis_cha_lte$subbasin)) + sub_rows_lte <- routing[tolower(routing$sourcecat) %in% c("sub","lsu") & + routing$percent > 0 & + !tolower(routing$sinkcat) %in% "x", , drop = FALSE] + synth_lte <- list() + for (k in seq_len(nrow(sub_rows_lte))) { + r <- sub_rows_lte[k, ] + src_cha <- sub_to_cha_lte[as.character(r$sourceid)] + if (is.na(src_cha)) next + snk_cha <- NA_integer_ + sk <- tolower(r$sinkcat) + if (sk %in% c("sub","lsu")) snk_cha <- sub_to_cha_lte[as.character(r$sinkid)] + else if (sk %in% c("ch","sdc")) snk_cha <- r$sinkid + else if (sk == "pt") { + pt_row <- .follow_pt_lte(r) + if (!is.null(pt_row)) { + fsk <- tolower(pt_row$sinkcat) + if (fsk %in% c("sub","lsu")) snk_cha <- sub_to_cha_lte[as.character(pt_row$sinkid)] + else if (fsk %in% c("ch","sdc")) snk_cha <- pt_row$sinkid + } + } + if (is.na(snk_cha)) next + hyd <- if (!is.null(r$hyd_typ) && !is.na(r$hyd_typ) && nzchar(r$hyd_typ)) r$hyd_typ else "tot" + synth_lte[[length(synth_lte) + 1L]] <- data.frame( + sourceid = as.integer(src_cha), sourcecat = "ch", hyd_typ = hyd, + sinkid = as.integer(snk_cha), sinkcat = "ch", percent = r$percent, + stringsAsFactors = FALSE) + } + if (length(synth_lte) > 0L) { + s <- do.call(rbind, synth_lte) + s <- s[!duplicated(s[, c("sourceid","sinkid")]), ] + ch_routing_lte <- rbind(routing, s) + } + } + } + + ch_rows <- ch_routing_lte[ + tolower(ch_routing_lte$sourcecat) %in% c("ch","sdc") & + ch_routing_lte$percent > 0 & + !tolower(ch_routing_lte$sinkcat) %in% "x", , drop = FALSE] + con_outs <- list() + orders <- list() + for (k in seq_len(nrow(ch_rows))) { + r <- ch_rows[k, ] + con_row <- if (tolower(r$sinkcat) == "pt") .follow_pt_lte(r) else r + if (is.null(con_row)) next + if (!tolower(con_row$sinkcat) %in% c("ch","sdc")) next + src_id <- cha_map$id[match(r$sourceid, cha_map$gis_id)] + snk_id <- cha_map$id[match(con_row$sinkid, cha_map$gis_id)] + if (is.na(src_id) || is.na(snk_id)) next + key <- as.character(src_id) + orders[[key]] <- if (!is.null(orders[[key]])) orders[[key]] + 1L else 1L + hyd <- if (!is.null(con_row$hyd_typ) && !is.na(con_row$hyd_typ) && + nzchar(con_row$hyd_typ)) con_row$hyd_typ else "tot" + con_outs[[length(con_outs) + 1L]] <- data.frame( + chandeg_con_id = src_id, order_id = orders[[key]], + obj_typ = "sdc", obj_id = snk_id, hyd_typ = hyd, + frac = r$percent / 100, + stringsAsFactors = FALSE) + } + if (length(con_outs) > 0L) + .gis_write(con, "chandeg_con_out", do.call(rbind, con_outs)) + } + + # Build hru_lte_con_out: Each HRU routes 100% to its channel (obj_typ='sdc'). + # Mirrors Python insert_connections_lte() which processes HRU→CH gis_routing rows. + hru_lte_map <- tryCatch( + DBI::dbGetQuery(con, "SELECT id, gis_id FROM hru_lte_con"), + error = function(e) data.frame(id = integer(0), gis_id = integer(0))) + + if (.gis_count(con, "hru_lte_con_out") == 0L && nrow(hru_lte_map) > 0L && + nrow(cha_map) > 0L) { + hru_rows <- routing[tolower(routing$sourcecat) == "hru" & + routing$percent > 0 & + tolower(routing$sinkcat) == "ch", , drop = FALSE] + hru_rows <- hru_rows[order(hru_rows$sourceid), , drop = FALSE] + hru_outs <- list() + for (k in seq_len(nrow(hru_rows))) { + r <- hru_rows[k, ] + src_id <- hru_lte_map$id[match(r$sourceid, hru_lte_map$gis_id)] + snk_id <- cha_map$id[match(r$sinkid, cha_map$gis_id)] + if (is.na(src_id) || is.na(snk_id)) next + hru_outs[[length(hru_outs) + 1L]] <- data.frame( + hru_lte_con_id = src_id, order_id = 1L, + obj_typ = "sdc", obj_id = snk_id, + hyd_typ = "tot", frac = 1.0, + stringsAsFactors = FALSE) + } + if (length(hru_outs) > 0L) + .gis_write(con, "hru_lte_con_out", do.call(rbind, hru_outs)) + } + + invisible(NULL) +} + +# -------------------------------------------------------------------------- +# Update object_cnt based on actual row counts +# -------------------------------------------------------------------------- +.gis_update_object_cnt <- function(con) { + hru_n <- .gis_count(con, "hru_con") + lhru_n <- .gis_count(con, "hru_lte_con") + rtu_n <- .gis_count(con, "rout_unit_con") + aqu_n <- .gis_count(con, "aquifer_con") + cha_n <- .gis_count(con, "channel_con") + res_n <- .gis_count(con, "reservoir_con") + rec_n <- .gis_count(con, "recall_con") + lcha_n <- .gis_count(con, "chandeg_con") + obj_n <- hru_n + lhru_n + rtu_n + aqu_n + cha_n + res_n + rec_n + lcha_n + .gis_exec(con, paste0(" + UPDATE object_cnt SET + obj = ", obj_n, ", + hru = ", hru_n, ", + lhru = ", lhru_n, ", + rtu = ", rtu_n, ", + aqu = ", aqu_n, ", + cha = ", cha_n, ", + res = ", res_n, ", + rec = ", rec_n, ", + lcha = ", lcha_n, " + WHERE id = (SELECT id FROM object_cnt LIMIT 1)")) + invisible(NULL) +} diff --git a/src/r-api/swatplusEditoR/R/run_swatplus.R b/src/r-api/swatplusEditoR/R/run_swatplus.R new file mode 100644 index 00000000..e2e5b928 --- /dev/null +++ b/src/r-api/swatplusEditoR/R/run_swatplus.R @@ -0,0 +1,133 @@ +#' Return the path to the bundled SWAT+ Windows executable +#' +#' The package ships a pre-built SWAT+ Windows executable in +#' \code{inst/extbin/}. This function resolves its path at run time so that +#' callers do not need to hard-code file names. +#' +#' @return A character string: the full path to the bundled +#' \code{.exe} file, or \code{NULL} when no executable is found (e.g. on +#' non-Windows platforms or in a source install without the binary). +#' @export +swatplus_exe <- function() { + exe_dir <- system.file("extbin", package = "swatplusEditoR") + if (!nzchar(exe_dir) || !dir.exists(exe_dir)) return(NULL) + exes <- list.files(exe_dir, pattern = "\\.exe$", full.names = TRUE) + if (length(exes) == 0L) return(NULL) + # Return the most recent executable by name (newest version last alphabetically) + exes[[length(exes)]] +} + +#' Run the SWAT+ model +#' +#' Launches the SWAT+ executable in \code{working_dir} using +#' \pkg{processx}, streams stdout/stderr in real time (when \code{verbose = +#' TRUE}), and returns a tidy summary of the run. +#' +#' Compared to the bare \code{system2()} call that was used previously, +#' \pkg{processx} provides: +#' \itemize{ +#' \item Non-blocking, line-by-line streaming of model output. +#' \item A clean exit-code check: non-zero exit raises an R warning rather +#' than silently succeeding. +#' \item Elapsed-time reporting. +#' \item A \code{timeout} parameter so long-running models can be killed. +#' } +#' +#' @param swat_exe Path to the SWAT+ executable. Defaults to +#' \code{\link{swatplus_exe}()} (the bundled Windows binary). On +#' non-Windows platforms you must supply a compatible native binary. +#' @param working_dir Directory that contains the SWAT+ input files +#' (\code{file.cio}, \code{basins.def}, etc.). The executable is launched +#' with this as its working directory. Defaults to the current working +#' directory. +#' @param args Character vector of additional command-line arguments +#' passed to the executable (rarely needed; SWAT+ reads \code{file.cio} +#' automatically). Default \code{character(0)}. +#' @param timeout Maximum number of seconds to wait for the model to +#' finish. Passed to \code{processx::run()}. Use \code{Inf} (the default) +#' for no timeout. +#' @param echo Print stdout/stderr lines to the R console as they +#' arrive. Default \code{TRUE} when \code{verbose = TRUE}. +#' @param verbose Print progress messages via \code{\link{emit_progress}}. +#' Default \code{TRUE}. +#' +#' @return Invisibly, a named list: +#' \describe{ +#' \item{\code{status}}{Integer exit code (0 = success).} +#' \item{\code{stdout}}{Character vector of stdout lines.} +#' \item{\code{stderr}}{Character vector of stderr lines.} +#' \item{\code{elapsed}}{Elapsed wall-clock time in seconds (\code{numeric}).} +#' \item{\code{success}}{Logical: \code{TRUE} when \code{status == 0}.} +#' } +#' +#' @seealso \code{\link{run_all}}, \code{\link{swatplus_exe}} +#' @importFrom utils tail +#' @export +run_swatplus <- function(swat_exe = swatplus_exe(), + working_dir = getwd(), + args = character(0), + timeout = Inf, + echo = verbose, + verbose = TRUE) { + + if (!requireNamespace("processx", quietly = TRUE)) + stop( + "Package 'processx' is required to run the SWAT+ model.\n", + "Install it with: install.packages('processx')", + call. = FALSE + ) + + # --- Validate inputs ------------------------------------------------------- + if (is.null(swat_exe) || !nzchar(swat_exe)) + stop("No SWAT+ executable supplied and none found via swatplus_exe().", + call. = FALSE) + if (!file.exists(swat_exe)) + stop("SWAT+ executable not found: ", swat_exe, call. = FALSE) + if (!dir.exists(working_dir)) + stop("Working directory not found: ", working_dir, call. = FALSE) + + t_start <- proc.time()[["elapsed"]] + + # processx::run() blocks until the process exits, streaming output when + # echo = TRUE. It never raises on non-zero exit (we check status ourselves). + proc_timeout <- if (is.finite(timeout)) timeout else Inf + + result <- processx::run( + command = swat_exe, + args = args, + wd = working_dir, + timeout = proc_timeout, + echo = echo, + echo_cmd = FALSE, + error_on_status = FALSE # we inspect status ourselves + ) + + elapsed <- proc.time()[["elapsed"]] - t_start + + if (result$status != 0L) { + stderr_tail <- paste( + utils::tail(strsplit(result$stderr, "\n", fixed = TRUE)[[1L]], 10L), + collapse = "\n" + ) + warning( + sprintf("SWAT+ exited with status %d.\n%s", + result$status, stderr_tail), + call. = FALSE + ) + } else if (verbose) { + message(sprintf( + "SWAT+ completed successfully in %.1f s.", elapsed + )) + } + + out <- list( + status = result$status, + stdout = strsplit(result$stdout, "\n", fixed = TRUE)[[1L]], + stderr = strsplit(result$stderr, "\n", fixed = TRUE)[[1L]], + elapsed = elapsed, + success = result$status == 0L, + simulation_out = readLines(file.path(working_dir, "simulation.out"), warn = FALSE), + diagnostics = readLines(file.path(working_dir, "diagnostics.out"), warn = FALSE) + ) + invisible(out) +} diff --git a/src/r-api/swatplusEditoR/R/swatplusEditoR-package.R b/src/r-api/swatplusEditoR/R/swatplusEditoR-package.R new file mode 100644 index 00000000..be9be40e --- /dev/null +++ b/src/r-api/swatplusEditoR/R/swatplusEditoR-package.R @@ -0,0 +1,22 @@ +#' @keywords internal +"_PACKAGE" + +#' swatplusEditoR: R Interface to SWAT+ Editor API +#' +#' Provides an R interface to the SWAT+ Editor project database. +#' Supports direct SQLite access for managing weather stations, updating model +#' parameters, configuring groundwater flow (GWFLOW), and writing SWAT+ model +#' configuration files. +#' +#' @section Main functions: +#' \describe{ +#' \item{\code{\link{load_project}}}{Load a SWAT+ project from an R project object} +#' \item{\code{\link{add_weather_stations}}}{Add weather station data} +#' \item{\code{\link{update_parameters}}}{Update model parameters} +#' \item{\code{\link{write_config_files}}}{Write SWAT+ model configuration files} +#' \item{\code{\link{init_gwflow}}}{Initialize groundwater flow module} +#' } +#' +#' @name swatplusEditoR-package +#' @aliases swatplusEditoR +NULL diff --git a/src/r-api/swatplusEditoR/R/utils.R b/src/r-api/swatplusEditoR/R/utils.R new file mode 100644 index 00000000..f2c50008 --- /dev/null +++ b/src/r-api/swatplusEditoR/R/utils.R @@ -0,0 +1,189 @@ +# Utility functions for swatplusEditoR + +#' Validate that a project object has the expected structure +#' +#' @param project List. The SWAT+ project object. +#' @return Logical TRUE if valid, otherwise stops with an error. +#' @keywords internal +validate_project <- function(project) { + required <- c("project_dir", "db_file") + missing_fields <- setdiff(required, names(project)) + if (length(missing_fields) > 0) { + stop("Project object is missing required fields: ", + paste(missing_fields, collapse = ", "), call. = FALSE) + } + if (is.null(project$db_file)) { + stop("Project db_file is NULL. Please set project$db_file to the path ", + "of the SWAT+ project SQLite database.", call. = FALSE) + } + if (!file.exists(project$db_file)) { + stop("Project database file not found: ", project$db_file, call. = FALSE) + } + invisible(TRUE) +} + +#' Generate a weather station name from coordinates +#' +#' Follows the convention used in the SWAT+ Editor Python API. +#' +#' @param lat Numeric. Latitude. +#' @param lon Numeric. Longitude. +#' @return Character. Station name in format "latXXX.XXlonXXX.XX" +#' @keywords internal +weather_sta_name <- function(lat, lon) { + lat_str <- formatC(abs(lat), format = "f", digits = 2, width = 6, + flag = "0") + lon_str <- formatC(abs(lon), format = "f", digits = 2, width = 7, + flag = "0") + lat_prefix <- ifelse(lat >= 0, "p", "n") + lon_prefix <- ifelse(lon >= 0, "p", "n") + paste0(lat_prefix, lat_str, lon_prefix, lon_str) +} + +#' Find the closest station by latitude/longitude +#' +#' @param stations A data.frame with lat and lon columns. +#' @param lat Numeric. Target latitude. +#' @param lon Numeric. Target longitude. +#' @return Integer. Row index of the closest station. +#' @keywords internal +find_closest_station <- function(stations, lat, lon) { + if (nrow(stations) == 0) return(NA_integer_) + dists <- (stations$lat - lat)^2 + (stations$lon - lon)^2 + which.min(dists) +} + +#' Format a data.frame for display +#' +#' @param df A data.frame. +#' @param max_rows Integer. Maximum rows to display. +#' @return The input data.frame (invisibly), with a message showing dimensions. +#' @keywords internal +display_df <- function(df, max_rows = 10) { + message(sprintf(" %d rows x %d columns", nrow(df), ncol(df))) + if (nrow(df) > max_rows) { + message(sprintf(" (showing first %d rows)", max_rows)) + } + invisible(df) +} + +#' Check if a value is a non-empty string +#' +#' @param x Value to check. +#' @return Logical. +#' @keywords internal +is_nonempty_string <- function(x) { + is.character(x) && length(x) == 1 && nchar(x) > 0 +} + +#' Build an UPDATE SQL statement from named values +#' +#' @param table_name Character. Table name. +#' @param values Named list of column = value pairs. +#' @param where_clause Character. WHERE clause (without WHERE keyword). +#' @return Character. SQL UPDATE statement. +#' @keywords internal +build_update_sql <- function(table_name, values, where_clause) { + set_parts <- vapply(names(values), function(col) { + val <- values[[col]] + if (is.null(val) || (is.numeric(val) && is.na(val))) { + paste0(col, " = NULL") + } else if (is.character(val)) { + paste0(col, " = '", gsub("'", "''", val), "'") + } else { + paste0(col, " = ", val) + } + }, character(1)) + paste0("UPDATE ", table_name, " SET ", paste(set_parts, collapse = ", "), + " WHERE ", where_clause) +} + +#' Helper to read a SWAT+ text file (skip title + header) +#' +#' @param file Character. Filename relative to the output directory. +#' @param out_dir Character. Path to the output directory. Default is the project's output +#' directory. +#' @param skip Integer. Number of lines to skip (default 1 for title line +#' and header line). +#' @param ... Additional arguments passed to \code{read.table()}. +#' +#' @return A data.frame with the contents of the file, or NULL if the file is missing or cannot be read. +#' @keywords internal +#' @export +read_swat <- function(file, out_dir, skip = 1, ...) { + path <- file.path(out_dir, file) + if (!file.exists(path)) { + message(" [MISSING] ", file) + return(NULL) + } + tryCatch({ + lines <- readLines(path) + + # Skip metadata line(s) + lines <- lines[(skip + 1):length(lines)] + if (length(lines) < 2) return(NULL) + + # Parse header (first remaining line) + header <- scan(text = lines[1], what = character(), quiet = TRUE) + data_lines <- lines[-1] + + # Remove empty lines + data_lines <- data_lines[nzchar(trimws(data_lines))] + if (length(data_lines) == 0) return(NULL) + + # Count max fields across all data lines + n_base <- length(header) + field_counts <- sapply(data_lines, function(x) { + length(scan(text = x, what = character(), quiet = TRUE)) + }) + n_max <- max(field_counts) + + # If all rows fit the header, use standard read + if (n_max <= n_base) { + return(read.table(path, skip = skip, header = TRUE, fill = TRUE, ...)) + } + + # Extended columns: repeating outflow groups (obj_typ, obj_id, hyd_typ, frac) + n_extra <- n_max - n_base + n_groups <- ceiling(n_extra / 4) + extra_names <- character(0) + for (g in seq_len(n_groups)) { + suffix <- paste0("_", g + 1) + extra_names <- c(extra_names, + paste0("obj_typ", suffix), + paste0("obj_id", suffix), + paste0("hyd_typ", suffix), + paste0("frac", suffix)) + } + all_names <- c(header, extra_names[seq_len(n_extra)]) + + # Parse each line, padding short rows with NA + parsed <- lapply(data_lines, function(x) { + vals <- scan(text = x, what = character(), quiet = TRUE) + length(vals) <- n_max # pads with NA + vals + }) + + df <- as.data.frame(do.call(rbind, parsed), stringsAsFactors = FALSE) + names(df) <- all_names + + # Convert numeric columns + for (col in names(df)) { + vals <- df[[col]] + # Try numeric conversion on non-NA values + non_na <- vals[!is.na(vals)] + if (length(non_na) > 0) { + numeric_vals <- suppressWarnings(as.numeric(non_na)) + if (!any(is.na(numeric_vals))) { + df[[col]] <- as.numeric(df[[col]]) + } + } + } + + df + }, + error = function(e) { + message(" [READ ERROR] ", file, ": ", e$message) + NULL + }) +} diff --git a/src/r-api/swatplusEditoR/R/weather.R b/src/r-api/swatplusEditoR/R/weather.R new file mode 100644 index 00000000..e5e1b904 --- /dev/null +++ b/src/r-api/swatplusEditoR/R/weather.R @@ -0,0 +1,566 @@ +# Weather station management for swatplusEditoR +# Add, update, list, and remove weather station data + +#' Add weather stations to the project database +#' +#' Inserts weather station records into the \code{weather_sta_cli} table. Each +#' station includes geographic coordinates and file references for climate +#' variables (precipitation, temperature, solar radiation, humidity, wind, PET). +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param stations A data.frame with weather station data. Required columns: +#' \code{name}, \code{lat}, \code{lon}. Optional columns: \code{elev}, +#' \code{pcp}, \code{tmp}, \code{slr}, \code{hmd}, \code{wnd}, \code{pet}, +#' \code{atmo_dep}, \code{wgn_id}. +#' File columns (\code{pcp}, \code{tmp}, etc.) should be character strings +#' with the weather data filename (e.g., "pcp1.cli"). Use \code{NULL} or +#' \code{NA} for unavailable variables. +#' @return The project object (invisibly). +#' @export +#' @examples +#' \dontrun{ +#' stations <- data.frame( +#' name = c("station1", "station2"), +#' lat = c(-38.1, -38.2), +#' lon = c(176.3, 176.4), +#' pcp = c("pcp1.cli", "pcp2.cli"), +#' tmp = c("tmp1.cli", "tmp2.cli"), +#' slr = c("slr1.cli", "slr2.cli"), +#' hmd = c("hmd1.cli", "hmd2.cli"), +#' wnd = c("wnd1.cli", "wnd2.cli"), +#' pet = c("pet1.cli", "pet2.cli"), +#' atmo_dep = c("atmo1.cli", "atmo2.cli"), +#' stringsAsFactors = FALSE +#' ) +#' add_weather_stations(project, stations) +#' } +add_weather_stations <- function(project, stations) { + validate_project(project) + + if (!is.data.frame(stations)) { + stop("stations must be a data.frame.", call. = FALSE) + } + if (nrow(stations) == 0) { + stop("stations data.frame is empty.", call. = FALSE) + } + + required_cols <- c("name", "lat", "lon") + missing_cols <- setdiff(required_cols, names(stations)) + if (length(missing_cols) > 0) { + stop("stations is missing required columns: ", + paste(missing_cols, collapse = ", "), call. = FALSE) + } + + # Generate station names if missing + if (any(is.na(stations$name) | stations$name == "")) { + na_idx <- which(is.na(stations$name) | stations$name == "") + stations$name[na_idx] <- vapply(na_idx, function(i) { + weather_sta_name(stations$lat[i], stations$lon[i]) + }, character(1)) + } + + # Ensure optional columns exist with NULL defaults + optional_cols <- c("pcp", "tmp", "slr", "hmd", "wnd", "pet", + "atmo_dep", "wgn_id") + for (col in optional_cols) { + if (!col %in% names(stations)) { + stations[[col]] <- NA + } + } + + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + if (!table_exists(con, "weather_sta_cli")) { + stop("weather_sta_cli table not found. Ensure the database schema is ", + "properly initialized.", call. = FALSE) + } + + # Insert stations + n_inserted <- 0 + for (i in seq_len(nrow(stations))) { + row <- stations[i, ] + weather_sta_cli <- DBI::dbReadTable(con, "weather_sta_cli") + tryCatch({ + execute_db(con, + "INSERT INTO weather_sta_cli + (name, wgn_id, pcp, tmp, slr, hmd, wnd, pet, atmo_dep, lat, lon) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", + params = list( + as.character(row$name), as.integer(row$wgn_id), as.character(row$pcp), + as.character(row$tmp), as.character(row$slr), as.character(row$hmd), + as.character(row$wnd), as.character(row$pet), + as.character(row$atmo_dep), as.numeric(row$lat), + as.numeric(row$lon) + )) + n_inserted <- n_inserted + 1 + }, error = function(e) { + warning("Failed to insert station '", row$name, "': ", e$message, + call. = FALSE) + }) + } + + message("Inserted ", n_inserted, " of ", nrow(stations), " weather stations") + invisible(project) +} + +#' List weather stations in the project database +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @return A data.frame with all weather stations. +#' @export +#' @examples +#' \dontrun{ +#' stations <- list_weather_stations(project) +#' } +list_weather_stations <- function(project) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + if (!table_exists(con, "weather_sta_cli")) { + stop("weather_sta_cli table not found in database.", call. = FALSE) + } + + query_db(con, "SELECT * FROM weather_sta_cli ORDER BY id") +} + +#' Update a weather station +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param station_id Integer. ID of the station to update. +#' @param ... Named arguments of fields to update (e.g., name, lat, lon, +#' pcp, tmp, slr, hmd, wnd, pet, atmo_dep, wgn_id). +#' @return The project object (invisibly). +#' @export +#' @examples +#' \dontrun{ +#' update_weather_station(project, station_id = 1, lat = -38.15, lon = 176.35) +#' } +update_weather_station <- function(project, station_id, ...) { + validate_project(project) + updates <- list(...) + + if (length(updates) == 0) { + stop("No update fields provided.", call. = FALSE) + } + + valid_fields <- c("name", "lat", "lon", "elev", "pcp", "tmp", "slr", + "hmd", "wnd", "pet", "atmo_dep", "wgn_id") + invalid <- setdiff(names(updates), valid_fields) + if (length(invalid) > 0) { + stop("Invalid fields: ", paste(invalid, collapse = ", "), + ". Valid fields: ", paste(valid_fields, collapse = ", "), + call. = FALSE) + } + + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + sql <- build_update_sql("weather_sta_cli", updates, + paste0("id = ", as.integer(station_id))) + n <- execute_db(con, sql) + if (n == 0) { + warning("No station found with id = ", station_id, call. = FALSE) + } else { + message("Updated station id = ", station_id) + } + + invisible(project) +} + +#' Remove weather stations from the project database +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param station_ids Integer vector. IDs of stations to remove. +#' If NULL, removes all stations. +#' @return The project object (invisibly). +#' @export +#' @examples +#' \dontrun{ +#' remove_weather_stations(project, station_ids = c(1, 2)) +#' remove_weather_stations(project) # removes all +#' } +remove_weather_stations <- function(project, station_ids = NULL) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + if (is.null(station_ids)) { + n <- execute_db(con, "DELETE FROM weather_sta_cli") + message("Removed all ", n, " weather stations") + } else { + ids <- paste(as.integer(station_ids), collapse = ", ") + n <- execute_db(con, paste0("DELETE FROM weather_sta_cli WHERE id IN (", ids, ")")) + message("Removed ", n, " weather stations") + } + + invisible(project) +} + +#' Add weather generator (WGN) data +#' +#' Inserts weather generator station data into the \code{weather_wgn_cli} +#' table and optional monthly values into \code{weather_wgn_cli_mon}. +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param wgn_data A data.frame with columns: \code{name}, \code{lat}, +#' \code{lon}, \code{elev}, \code{rain_yrs}. +#' @param monthly_data Optional data.frame with monthly WGN values. Must have +#' columns: \code{wgn_name} (matching name in wgn_data), \code{month} (1-12), +#' and the monthly parameters: \code{tmp_max_ave}, \code{tmp_min_ave}, +#' \code{tmp_max_sd}, \code{tmp_min_sd}, \code{pcp_ave}, \code{pcp_sd}, +#' \code{pcp_skew}, \code{wet_dry}, \code{wet_wet}, \code{pcp_days}, +#' \code{pcp_hhr}, \code{slr_ave}, \code{dew_ave}, \code{wnd_ave}. +#' @return The project object (invisibly). +#' @export +#' @examples +#' \dontrun{ +#' wgn <- data.frame( +#' name = "wgn_station1", +#' lat = -38.1, lon = 176.3, elev = 350, rain_yrs = 30 +#' ) +#' add_weather_generators(project, wgn) +#' } +add_weather_generators <- function(project, wgn_data, monthly_data = NULL) { + validate_project(project) + + if (!is.data.frame(wgn_data) || nrow(wgn_data) == 0) { + stop("wgn_data must be a non-empty data.frame.", call. = FALSE) + } + + required_cols <- c("name", "lat", "lon", "elev", "rain_yrs") + missing_cols <- setdiff(required_cols, names(wgn_data)) + if (length(missing_cols) > 0) { + stop("wgn_data is missing required columns: ", + paste(missing_cols, collapse = ", "), call. = FALSE) + } + + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + n_inserted <- 0 + for (i in seq_len(nrow(wgn_data))) { + row <- wgn_data[i, ] + tryCatch({ + execute_db(con, + "INSERT INTO weather_wgn_cli (name, lat, lon, elev, rain_yrs) + VALUES (?, ?, ?, ?, ?)", + params = list(row$name, row$lat, row$lon, row$elev, row$rain_yrs)) + n_inserted <- n_inserted + 1 + + # Insert monthly data if provided + if (!is.null(monthly_data) && is.data.frame(monthly_data)) { + wgn_mon <- monthly_data[monthly_data$wgn_name == row$name, ] + if (nrow(wgn_mon) > 0) { + wgn_id <- query_db(con, + "SELECT id FROM weather_wgn_cli WHERE name = ?", + params = list(row$name))$id + for (j in seq_len(nrow(wgn_mon))) { + mon <- wgn_mon[j, ] + execute_db(con, + "INSERT INTO weather_wgn_cli_mon + (weather_wgn_cli_id, month, tmp_max_ave, tmp_min_ave, + tmp_max_sd, tmp_min_sd, pcp_ave, pcp_sd, pcp_skew, + wet_dry, wet_wet, pcp_days, pcp_hhr, slr_ave, dew_ave, + wnd_ave) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", + params = list( + wgn_id, mon$month, + mon$tmp_max_ave, mon$tmp_min_ave, + mon$tmp_max_sd, mon$tmp_min_sd, + mon$pcp_ave, mon$pcp_sd, mon$pcp_skew, + mon$wet_dry, mon$wet_wet, mon$pcp_days, mon$pcp_hhr, + mon$slr_ave, mon$dew_ave, mon$wnd_ave + )) + } + } + } + }, error = function(e) { + warning("Failed to insert WGN '", row$name, "': ", e$message, + call. = FALSE) + }) + } + + message("Inserted ", n_inserted, " weather generator stations") + invisible(project) +} + +#' Set the weather data directory in the project configuration +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param weather_dir Character. Path to the directory containing weather +#' data files. +#' @return The project object (invisibly). +#' @export +#' @examples +#' \dontrun{ +#' set_weather_dir(project, "/path/to/weather/data") +#' } +set_weather_dir <- function(project, weather_dir) { + validate_project(project) + + if (!dir.exists(weather_dir)) { + stop("Weather data directory does not exist: ", weather_dir, call. = FALSE) + } + + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + execute_db(con, + "UPDATE project_config SET weather_data_dir = ?", + params = list(normalizePath(weather_dir))) + + message("Set weather data directory: ", weather_dir) + invisible(project) +} + +#' Get WGN data from the CFSR world database for the nearest stations +#' +#' For each station provided, finds the nearest weather generator site in the +#' \code{wgn_cfsr_world} table of the SWAT+ WGN database and writes the matched +#' WGN data (station header plus 12 monthly rows) to the project's +#' \code{weather_wgn_cli} and \code{weather_wgn_cli_mon} tables. +#' Only unique matched WGN sites are written; duplicate matches are silently +#' skipped via \code{INSERT OR IGNORE}. +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param stations A data.frame with at minimum \code{lat} and \code{lon} +#' columns representing the stations for which the nearest WGN site is needed. +#' @param wgn_db Character. Path to the \code{swatplus_wgn.sqlite} database +#' containing the \code{wgn_cfsr_world} and \code{wgn_cfsr_world_mon} tables. +#' @return The project object (invisibly). +#' @export +#' @examples +#' \dontrun{ +#' stations <- data.frame( +#' name = c("station1", "station2"), +#' lat = c(-38.1, -38.2), +#' lon = c(176.3, 176.4) +#' ) +#' project <- get_wgn_cfsr_world(project, stations, +#' wgn_db = "path/to/swatplus_wgn.sqlite") +#' } +get_wgn_cfsr_world <- function(project, stations, wgn_db) { + validate_project(project) + + # Open project database connectio + proj_con <- open_project_db(project$db_file) + on.exit(close_db(proj_con), add = TRUE) + + # Get stations from database + if (missing(stations)) { + stations <- query_db(proj_con, "SELECT id, name, lat, lon FROM weather_sta_cli") + } + + if (!is.data.frame(stations) || nrow(stations) == 0) { + stop("stations must be a non-empty data.frame.", call. = FALSE) + } + required_cols <- c("lat", "lon") + missing_cols <- setdiff(required_cols, names(stations)) + if (length(missing_cols) > 0) { + stop("stations is missing required columns: ", + paste(missing_cols, collapse = ", "), call. = FALSE) + } + if (!file.exists(wgn_db)) { + stop("WGN database file not found: ", wgn_db, call. = FALSE) + } + + # Open WGN database and read wgn_cfsr_world + wgn_con <- DBI::dbConnect(RSQLite::SQLite(), wgn_db) + on.exit(close_db(wgn_con), add = TRUE) + + if (!table_exists(wgn_con, "wgn_cfsr_world")) { + stop("Table 'wgn_cfsr_world' not found in WGN database: ", wgn_db, + call. = FALSE) + } + if (!table_exists(wgn_con, "wgn_cfsr_world_mon")) { + stop("Table 'wgn_cfsr_world_mon' not found in WGN database: ", wgn_db, + call. = FALSE) + } + + wgn_sites <- query_db(wgn_con, + "SELECT id, name, lat, lon, elev, rain_yrs FROM wgn_cfsr_world") + + if (nrow(wgn_sites) == 0) { + stop("No stations found in 'wgn_cfsr_world' table.", call. = FALSE) + } + + # For each input station find the nearest WGN site + matched_wgn_ids <- vapply(seq_len(nrow(stations)), function(i) { + idx <- find_closest_station(wgn_sites, stations$lat[i], stations$lon[i]) + wgn_sites$id[idx] + }, integer(1)) + + unique_ids <- unique(matched_wgn_ids) + id_list <- paste(unique_ids, collapse = ", ") + + # Fetch matched WGN site headers + matched_wgn <- query_db(wgn_con, + paste0("SELECT id, name, lat, lon, elev, rain_yrs FROM wgn_cfsr_world ", + "WHERE id IN (", id_list, ")")) + + # Fetch monthly data for matched WGN sites + matched_mon <- query_db(wgn_con, + paste0("SELECT wgn_id, month, tmp_max_ave, tmp_min_ave, tmp_max_sd, ", + "tmp_min_sd, pcp_ave, pcp_sd, pcp_skew, wet_dry, wet_wet, ", + "pcp_days, pcp_hhr, slr_ave, dew_ave, wnd_ave ", + "FROM wgn_cfsr_world_mon WHERE wgn_id IN (", id_list, ")")) + + # Write to project database + if (!table_exists(proj_con, "weather_wgn_cli")) { + stop("weather_wgn_cli table not found in project database.", call. = FALSE) + } + + n_inserted <- 0 + for (i in seq_len(nrow(matched_wgn))) { + w <- matched_wgn[i, ] + tryCatch({ + execute_db(proj_con, + "INSERT OR IGNORE INTO weather_wgn_cli (name, lat, lon, elev, rain_yrs) + VALUES (?, ?, ?, ?, ?)", + params = list(w$name, w$lat, w$lon, w$elev, w$rain_yrs)) + + # Retrieve the id (existing or just-inserted) + proj_wgn_id <- query_db(proj_con, + "SELECT id FROM weather_wgn_cli WHERE name = ?", + params = list(w$name))$id + + # Insert monthly data only when none exist yet for this WGN site + existing_mon <- query_db(proj_con, + "SELECT COUNT(*) as n FROM weather_wgn_cli_mon WHERE weather_wgn_cli_id = ?", + params = list(proj_wgn_id))$n + if (existing_mon == 0) { + mon_rows <- matched_mon[matched_mon$wgn_id == w$id, ] + for (j in seq_len(nrow(mon_rows))) { + m <- mon_rows[j, ] + execute_db(proj_con, + "INSERT INTO weather_wgn_cli_mon + (weather_wgn_cli_id, month, tmp_max_ave, tmp_min_ave, tmp_max_sd, + tmp_min_sd, pcp_ave, pcp_sd, pcp_skew, wet_dry, wet_wet, + pcp_days, pcp_hhr, slr_ave, dew_ave, wnd_ave) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", + params = list( + proj_wgn_id, m$month, + m$tmp_max_ave, m$tmp_min_ave, m$tmp_max_sd, m$tmp_min_sd, + m$pcp_ave, m$pcp_sd, m$pcp_skew, + m$wet_dry, m$wet_wet, m$pcp_days, m$pcp_hhr, + m$slr_ave, m$dew_ave, m$wnd_ave + )) + } + } + n_inserted <- n_inserted + 1 + }, error = function(e) { + warning("Failed to insert WGN station '", w$name, "': ", e$message, + call. = FALSE) + }) + } + + # Update wgn column in weather_sta_cli with matched WGN station IDs + for (i in seq_len(nrow(stations))) { + wgn_id <- matched_wgn$name[i] + execute_db(proj_con, + "UPDATE weather_sta_cli SET wgn_id = ? WHERE id = ?", + params = list(wgn_id, stations$id[i])) + } + + message("Inserted ", n_inserted, " WGN station(s) from wgn_cfsr_world into ", + "weather_wgn_cli") + invisible(project) +} + +#' Match weather stations to spatial objects by nearest distance +#' +#' Updates the \code{wst_id} foreign key on connection tables (e.g., +#' \code{hru_con}, \code{aquifer_con}) to reference the closest weather +#' station by lat/lon coordinates. Also matches \code{wgn_id} on +#' \code{weather_sta_cli} to the nearest weather generator station. +#' +#' Called automatically by \code{\link{add_weather_stations}}. +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param tables Character vector. Connection tables to update. +#' Defaults to common SWAT+ connection tables. +#' @return The project object (invisibly). +#' @export +match_weather_stations <- function(project, + tables = c("aquifer_con", "channel_con", + "chandeg_con", "rout_unit_con", + "reservoir_con", "recall_con", + "exco_con", "hru_con", + "hru_lte_con")) { + validate_project(project) + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + match_weather_stations_db(con, tables) + invisible(project) +} + +#' Match weather stations to spatial objects (database-level) +#' +#' Internal workhorse called by \code{\link{match_weather_stations}} and by +#' \code{write_direct()} during file writing. Operates on an already-open +#' database connection so it can be used inside \code{write_config_files()} +#' after \code{populate_from_gis()} has created all \code{_con} tables. +#' +#' @param con DBI database connection. +#' @param tables Character vector of connection tables to update. +#' @keywords internal +match_weather_stations_db <- function(con, + tables = c("aquifer_con", "channel_con", + "chandeg_con", "rout_unit_con", + "reservoir_con", "recall_con", + "exco_con", "hru_con", + "hru_lte_con")) { + if (!has_data(con, "weather_sta_cli")) return(invisible(NULL)) + + stations <- query_db(con, "SELECT id, lat, lon FROM weather_sta_cli") + if (nrow(stations) == 0) return(invisible(NULL)) + + all_tables <- list_db_tables(con) + n_updated <- 0 + + for (tbl in tables) { + if (!tbl %in% all_tables) next + + # Check if table has lat, lon, and wst_id columns + cols <- names(query_db(con, paste("SELECT * FROM", tbl, "LIMIT 0"))) + if (!all(c("lat", "lon") %in% cols)) next + wst_col <- if ("wst_id" %in% cols) "wst_id" else if ("wst" %in% cols) "wst" else next + + objects <- query_db(con, paste("SELECT id, lat, lon FROM", tbl)) + if (nrow(objects) == 0) next + + for (i in seq_len(nrow(objects))) { + closest_idx <- find_closest_station(stations, objects$lat[i], + objects$lon[i]) + if (!is.na(closest_idx)) { + execute_db(con, + paste0("UPDATE ", tbl, " SET ", wst_col, " = ? WHERE id = ?"), + params = list(stations$id[closest_idx], objects$id[i])) + n_updated <- n_updated + 1 + } + } + } + + # Match WGN to weather stations (mirrors Python import_weather.match_wgn) + if ("weather_wgn_cli" %in% all_tables && "weather_sta_cli" %in% all_tables) { + wgn_stations <- query_db(con, "SELECT id, lat, lon FROM weather_wgn_cli") + if (nrow(wgn_stations) > 0) { + for (i in seq_len(nrow(stations))) { + closest_idx <- find_closest_station(wgn_stations, stations$lat[i], + stations$lon[i]) + if (!is.na(closest_idx)) { + execute_db(con, + "UPDATE weather_sta_cli SET wgn_id = ? WHERE id = ?", + params = list(wgn_stations$id[closest_idx], stations$id[i])) + n_updated <- n_updated + 1 + } + } + } + } + + message("Matched ", n_updated, " objects to nearest weather stations") + invisible(NULL) +} diff --git a/src/r-api/swatplusEditoR/R/write_files.R b/src/r-api/swatplusEditoR/R/write_files.R new file mode 100644 index 00000000..040457c3 --- /dev/null +++ b/src/r-api/swatplusEditoR/R/write_files.R @@ -0,0 +1,2756 @@ +# Write SWAT+ model configuration files +# Complete R-native implementation guided by Python fileio modules + +#' Write SWAT+ model configuration files +#' +#' Writes all SWAT+ input files (TxtInOut) from the project database entirely +#' within R, without requiring an external Python executable or API server. +#' The writing logic mirrors the Python \code{fileio} modules in the SWAT+ +#' Editor repository. +#' +#' @param project List. A SWAT+ project object with \code{db_file}. +#' @param output_dir Character. Directory where the input files will be +#' written. Defaults to \code{"TxtInOut"} in the project directory. +#' @param swat_version Character. SWAT+ version string. Default \code{"60"}. +#' @param weather_dir Character. Path to weather data files. If provided, +#' weather \code{.cli} files are copied from this directory to output_dir. +#' @param editor_exe Character. Optional path to the SWAT+ Editor +#' executable/script. If provided, delegates to the exe instead of writing +#' natively. Default \code{NULL} (write natively in R). +#' @param api_url Character. Optional URL of a running SWAT+ Editor API +#' server. Default \code{NULL} (write natively in R). +#' @return The project object (invisibly). +#' @export +#' @examples +#' \dontrun{ +#' # Write all SWAT+ input files natively in R (recommended) +#' write_config_files(project) +#' +#' # Specify a custom output directory +#' write_config_files(project, output_dir = "/path/to/TxtInOut") +#' +#' # Copy weather data files from another directory +#' write_config_files(project, weather_dir = "/path/to/weather") +#' } +write_config_files <- function(project, output_dir = NULL, + swat_version = "60", + weather_dir = NULL) { + validate_project(project) + + if (is.null(output_dir)) { + output_dir <- file.path(project$project_dir, "TxtInOut") + } + if (!dir.exists(output_dir)) { + dir.create(output_dir, recursive = TRUE) + } + + # Update output dir in project config + con <- open_project_db(project$db_file) + if (table_exists(con, "project_config")) { + norm_out <- normalizePath(output_dir, mustWork = FALSE) + norm_proj <- normalizePath(project$project_dir, mustWork = FALSE) + rel_path <- if (startsWith(norm_out, norm_proj)) { + trimmed <- substring(norm_out, nchar(norm_proj) + 1) + sub("^[/\\\\]+", "", trimmed) + } else { + output_dir + } + execute_db(con, + "UPDATE project_config SET input_files_dir = ?", + params = list(rel_path)) + } + close_db(con) + + # Primary path: write all files natively in R + write_direct(project, output_dir, swat_version, weather_dir) +} + +#' Write all SWAT+ configuration files directly from the database +#' +#' This is the main R-native writer that replaces the Python executable. +#' It writes all SWAT+ input text files by reading from the SQLite project +#' database, following the same logic as the Python fileio modules. +#' +#' @param project Project list object. +#' @param output_dir Output directory. +#' @param swat_version SWAT+ version string. +#' @param weather_dir Optional weather data directory to copy files from. +#' @return The project object (invisibly). +#' @keywords internal +write_direct <- function(project, output_dir, swat_version = "60", + weather_dir = NULL) { + message("Writing SWAT+ input files from database...") + + con <- open_project_db(project$db_file) + on.exit(close_db(con)) + + # Ensure all required tables exist and are populated with reference data. + ensure_write_tables(con) + + # Populate SWAT+ model tables from GIS data (channels, HRUs, routing units, + # aquifers, connections, etc.) if they are empty. This mirrors the Python + # SWAT+ Editor import_gis.py::insert_default() step. + # IMPORTANT: this must complete before write_connect_section() is called so + # that all *_con_out tables are fully populated before the connect files are + # written to disk. + populate_from_gis(con) + + tables <- list_db_tables(con) + + # Read project config + is_lte <- FALSE + weather_data_format <- "observed" + version <- NULL + if ("project_config" %in% tables) { + cfg <- tryCatch(query_db(con, "SELECT * FROM project_config LIMIT 1"), + error = function(e) data.frame()) + if (nrow(cfg) > 0) { + is_lte <- isTRUE(cfg$is_lte == 1) + if ("weather_data_format" %in% names(cfg)) + if (!is.na(cfg$weather_data_format)) { + weather_data_format <- cfg$weather_data_format + } + if ("editor_version" %in% names(cfg)) + version <- cfg$editor_version + if (is.null(weather_dir) && "weather_data_dir" %in% names(cfg) && + !is.null(cfg$weather_data_dir) && !is.na(cfg$weather_data_dir) && + nchar(cfg$weather_data_dir) > 0) { + wd <- cfg$weather_data_dir + if (!file.exists(wd)) { + wd <- file.path(dirname(project$db_file), wd) + } + if (dir.exists(wd)) weather_dir <- wd + } + } + } + + v <- version + sv <- swat_version + + # Match weather stations to all _con tables now that populate_from_gis has + # created them. Mirrors Python import_weather.match_stations() which runs + # after GIS import and weather station creation. + match_weather_stations_db(con) + + # Update codes_bsn gwflow flag (matches Python gwflow_writer.update_codes_bsn()) + update_gwflow_codes_bsn(con) + + # Helper to get file names from file_cio table + get_files <- function(con, section, n) { + fnames <- get_cio_file_names(con, section) + if (length(fnames) < n) { + # Pad with nulls + fnames <- c(fnames, rep("null", n - length(fnames))) + } + fnames + } + + # Determine if file_cio table exists (full SWAT+ Editor database) + has_cio <- "file_cio" %in% tables && "file_cio_classification" %in% tables + + # ---- SIMULATION section ---- + message(" Writing simulation files...") + if (has_cio) { + files <- get_files(con = con, section = "simulation", 5) + write_section_file(con, files[1], output_dir, v, sv, + writer = write_time_sim) + write_section_file(con, files[2], output_dir, v, sv, + writer = write_print_prt) + write_section_file(con, files[3], output_dir, v, sv, + writer = write_object_prt) + write_section_file(con, files[4], output_dir, v, sv, + writer = write_object_cnt) + write_section_file(con, files[5], output_dir, v, sv, + writer = write_constituents_cs) + } else { + if ("time_sim" %in% tables) write_time_sim(con, output_dir, v, sv) + if ("print_prt" %in% tables) write_print_prt(con, output_dir, v, sv) + if ("object_prt" %in% tables) write_object_prt(con, output_dir, v, sv) + if ("object_cnt" %in% tables) write_object_cnt(con, output_dir, v, sv) + if ("constituents_cs" %in% tables) write_constituents_cs(con, output_dir, v, sv) + } + + # ---- CLIMATE section ---- + message(" Writing climate files...") + if (has_cio) { + files <- get_files(con = con, section = "climate", n = 9) + if (weather_data_format == "netcdf") { + write_section_file(con, "netcdf.ncw", output_dir, v, sv, + writer = write_weather_sta_cli) + } else { + write_section_file(con, files[1], output_dir, v, sv, + writer = write_weather_sta_cli) + } + write_section_file(con, files[2], output_dir, v, sv, + writer = write_weather_wgn) + write_section_file(con, files[9], output_dir, v, sv, + writer = write_atmo_cli) + } else { + if ("weather_sta_cli" %in% tables) write_weather_sta_cli(con, output_dir, v, sv) + if ("weather_wgn_cli" %in% tables) write_weather_wgn(con, output_dir, v, sv) + if ("atmo_cli" %in% tables) write_atmo_cli(con, output_dir, v, sv) + } + + # Copy weather files + copy_weather_files(con, output_dir, weather_dir, weather_data_format) + + # ---- CONNECT section (13 files) ---- + message(" Writing connect files...") + write_connect_section(con, output_dir, v, sv, has_cio) + + # ---- CHANNEL section ---- + message(" Writing channel files...") + write_table_section(con, output_dir, v, sv, has_cio, section = "channel", + specs = list( + list(tbl = "initial_cha", file = "initial.cha", + ignore_id = TRUE, + query = "SELECT i.id, i.name, + COALESCE(o.name, 'null') as org_min, + 'null' as pest, 'null' as path, + 'null' as hmet, 'null' as salt + FROM initial_cha i + LEFT JOIN om_water_ini o ON i.org_min_id = o.id + ORDER BY i.id"), + list(tbl = "channel_cha", file = "channel.cha", + query = "SELECT c.id, c.name, + COALESCE(i.name, 'null') as init, + COALESCE(h.name, 'null') as hyd, + COALESCE(s.name, 'null') as sed, + COALESCE(n.name, 'null') as nut + FROM channel_cha c + LEFT JOIN initial_cha i ON c.init_id = i.id + LEFT JOIN hydrology_cha h ON c.hyd_id = h.id + LEFT JOIN sediment_cha s ON c.sed_id = s.id + LEFT JOIN nutrients_cha n ON c.nut_id = n.id + ORDER BY c.id"), + list(tbl = "hydrology_cha", file = "hydrology.cha", + non_zero_min = c("wd", "dp", "slp", "len", "fps")), + list(tbl = "sediment_cha", file = "sediment.cha"), + list(tbl = "nutrients_cha", file = "nutrients.cha", + ignore_id = TRUE), + list(tbl = "channel_lte_cha", file = "channel-lte.cha", + query = "SELECT c.id, c.name, + COALESCE(i.name, 'null') as cha_ini, + COALESCE(h.name, 'null') as cha_hyd, + 'null' as cha_sed, 'null' as cha_nut + FROM channel_lte_cha c + LEFT JOIN initial_cha i ON c.init_id = i.id + LEFT JOIN hyd_sed_lte_cha h ON c.hyd_id = h.id + ORDER BY c.id"), + list(tbl = "hyd_sed_lte_cha", file = "hyd-sed-lte.cha", + ignore_id = TRUE, + non_zero_min = c("wd", "dp", "slp", "len")), + list(tbl = "temperature_cha", file = "temperature.cha") + )) + + # ---- RESERVOIR section ---- + message(" Writing reservoir files...") + write_table_section(con, output_dir, v, sv, has_cio, "reservoir", list( + list(tbl = "initial_res", file = "initial.res"), + list(tbl = "reservoir_res", file = "reservoir.res"), + list(tbl = "hydrology_res", file = "hydrology.res", ignore_id = TRUE), + list(tbl = "sediment_res", file = "sediment.res"), + list(tbl = "nutrients_res", file = "nutrients.res"), + list(tbl = "weir_res", file = "weir.res"), + list(tbl = "wetland_wet", file = "wetland.wet"), + list(tbl = "hydrology_wet", file = "hydrology.wet") + )) + + # ---- ROUTING UNIT section ---- + message(" Writing routing unit files...") + if (has_data(con, "rout_unit_con")) { + write_rout_unit_def(con, output_dir, v, sv) + } + write_table_section(con, output_dir, v, sv, has_cio, "routing_unit", list( + list(tbl = NULL, file = NULL), # rout_unit.def written above + list(tbl = "rout_unit_ele", file = "rout_unit.ele", + query = "SELECT e.id, e.name, e.obj_typ, e.obj_id, e.frac, + COALESCE(d.name, '0') as dlr + FROM rout_unit_ele e + LEFT JOIN delratio_del d ON e.dlr_id = d.id + ORDER BY e.id"), + list(tbl = "rout_unit_rtu", file = "rout_unit.rtu", + query = "SELECT r.id, r.name, r.name as define, + 'null' as dlr, + COALESCE(t.name, 'null') as topo, + COALESCE(f.name, 'null') as field + FROM rout_unit_rtu r + LEFT JOIN topography_hyd t ON r.topo_id = t.id + LEFT JOIN field_fld f ON r.field_id = f.id + ORDER BY r.id"), + list(tbl = "rout_unit_dr", file = "rout_unit.dr") + )) + + # ---- HRU section ---- + message(" Writing HRU files...") + write_table_section(con, output_dir, v, sv, has_cio, "hru", list( + list(tbl = "hru_data_hru", file = "hru-data.hru", + query = .build_hru_data_query(con)), + list(tbl = "hru_lte_hru", file = "hru-lte.hru") + )) + + # ---- DR section ---- + write_table_section(con, output_dir, v, sv, has_cio, "dr", list( + list(tbl = "delratio_del", file = "delratio.del"), + list(tbl = "dr_om_del", file = "dr.del"), + list(tbl = "dr_pest_del", file = "dr_pest.del"), + list(tbl = "dr_path_del", file = "dr_path.del"), + list(tbl = "dr_hmet_del", file = "dr_hmet.del"), + list(tbl = "dr_salt_del", file = "dr_salt.del") + )) + + # ---- AQUIFER section ---- + message(" Writing aquifer files...") + write_table_section(con, output_dir, v, sv, has_cio, "aquifer", list( + list(tbl = "initial_aqu", file = "initial.aqu", + ignore_id = TRUE, + query = "SELECT i.id, i.name, + COALESCE(o.name, 'null') as org_min, + 'null' as pest, 'null' as path, + 'null' as hmet, 'null' as salt + FROM initial_aqu i + LEFT JOIN om_water_ini o ON i.org_min_id = o.id + ORDER BY i.id"), + list(tbl = "aquifer_aqu", file = "aquifer.aqu", + query = "SELECT a.id, a.name, + COALESCE(i.name, 'null') as init, + a.gw_flo, a.dep_bot, a.dep_wt, a.no3_n, a.sol_p, + 0.0 as carbon, 50.0 as flo_dist, + a.bf_max, a.alpha_bf, a.revap, a.rchg_dp, + a.spec_yld, a.hl_no3n, a.flo_min, a.revap_min + FROM aquifer_aqu a + LEFT JOIN initial_aqu i ON a.init_id = i.id + ORDER BY a.id") + )) + + # ---- HERD section ---- + # Stub matching Python write_herd() which is also a pass/stub. + # The file.cio section exists (animal.hrd, herd.hrd, ranch.hrd) + # but no writer classes exist in the Python codebase either. + write_table_section(con, output_dir, v, sv, has_cio, "herd", list( + list(tbl = "animal_hrd", file = "animal.hrd"), + list(tbl = "herd_hrd", file = "herd.hrd"), + list(tbl = "ranch_hrd", file = "ranch.hrd") + )) + + # ---- WATER RIGHTS section ---- + write_table_section(con, output_dir, v, sv, has_cio, "water_rights", list( + list(tbl = "water_allocation_wro", file = "water_allocation.wro"), + list(tbl = "element_wro", file = "element.wro"), + list(tbl = "define_wro", file = "define.wro") + )) + + # ---- LINK section ---- + write_table_section(con, output_dir, v, sv, has_cio, "link", list( + list(tbl = "chan_surf_lin", file = "chan-surf.lin"), + list(tbl = "chan_aqu_lin", file = "chan-aqu.lin") + )) + + # ---- BASIN section ---- + message(" Writing basin files...") + write_table_section(con, output_dir, v, sv, has_cio, "basin", list( + list(tbl = "codes_bsn", file = "codes.bsn", ignore_id = TRUE), + list(tbl = "parameters_bsn", file = "parameters.bsn", ignore_id = TRUE) + )) + + # ---- HYDROLOGY section ---- + message(" Writing hydrology files...") + write_table_section(con, output_dir, v, sv, has_cio, "hydrology", list( + list(tbl = "hydrology_hyd", file = "hydrology.hyd"), + list(tbl = "topography_hyd", file = "topography.hyd", ignore_id = TRUE, + query = paste0( + "SELECT id, name, slp, slp_len, lat_len, dist_cha, depos ", + "FROM topography_hyd ORDER BY id")), + list(tbl = "field_fld", file = "field.fld", ignore_id = TRUE) + )) + + # ---- EXCO section ---- + write_table_section(con, output_dir, v, sv, has_cio, "exco", list( + list(tbl = "exco_exc", file = "exco.exc"), + list(tbl = "exco_om_exc", file = "exco_om.exc"), + list(tbl = "exco_pest_exc", file = "exco_pest.exc"), + list(tbl = "exco_path_exc", file = "exco_path.exc"), + list(tbl = "exco_hmet_exc", file = "exco_hmet.exc"), + list(tbl = "exco_salt_exc", file = "exco_salt.exc") + )) + + # ---- RECALL section ---- + message(" Writing recall files...") + if (has_data(con, "recall_rec")) { + write_recall_rec(con, output_dir, v, sv) + } + + # ---- STRUCTURAL section ---- + write_table_section(con, output_dir, v, sv, has_cio, "structural", list( + list(tbl = "tiledrain_str", file = "tiledrain.str"), + list(tbl = "septic_str", file = "septic.str"), + list(tbl = "filterstrip_str", file = "filterstrip.str"), + list(tbl = "grassedww_str", file = "grassedww.str"), + list(tbl = "bmpuser_str", file = "bmpuser.str") + )) + + # ---- HRU PARM DB section ---- + message(" Writing parameter database files...") + write_table_section(con, output_dir, v, sv, has_cio, "hru_parm_db", list( + list(tbl = "plants_plt", file = "plants.plt"), + list(tbl = "fertilizer_frt", file = "fertilizer.frt"), + list(tbl = "tillage_til", file = "tillage.til"), + list(tbl = "pesticide_pst", file = "pesticide.pst"), + list(tbl = "pathogens_pth", file = "pathogens.pth"), + list(tbl = "metals_mtl", file = "metals.mtl"), + list(tbl = "salts_slt", file = "salts.slt"), + list(tbl = "urban_urb", file = "urban.urb"), + list(tbl = "septic_sep", file = "septic.sep"), + list(tbl = "snow_sno", file = "snow.sno") + )) + + # ---- OPS section ---- + write_table_section(con, output_dir, v, sv, has_cio, "ops", list( + list(tbl = "harv_ops", file = "harv.ops"), + list(tbl = "graze_ops", file = "graze.ops"), + list(tbl = "irr_ops", file = "irr.ops"), + list(tbl = "chem_app_ops", file = "chem_app.ops"), + list(tbl = "fire_ops", file = "fire.ops"), + list(tbl = "sweep_ops", file = "sweep.ops") + )) + + # ---- LUM section ---- + message(" Writing land use management files...") + if (has_data(con, "management_sch")) { + write_management_sch(con, output_dir, v, sv) + } + write_table_section(con, output_dir, v, sv, has_cio, "lum", list( + list(tbl = "landuse_lum", file = "landuse.lum", + query = "SELECT l.name, l.cal_group, + COALESCE(pi.name, 'null') AS plnt_com, + COALESCE(m.name, 'null') AS mgt, + COALESCE(c.name, 'null') AS cn2, + COALESCE(cp.name, 'null') AS cons_prac, + COALESCE(u.name, 'null') AS urban, + COALESCE(l.urb_ro,'null') AS urb_ro, + COALESCE(o.name, 'null') AS ov_mann, + COALESCE(ti.name, 'null') AS tile, + COALESCE(se.name, 'null') AS sep, + COALESCE(fs.name, 'null') AS vfs, + COALESCE(gw.name, 'null') AS grww, + COALESCE(bm.name, 'null') AS bmp + FROM landuse_lum l + LEFT JOIN plant_ini pi ON l.plnt_com_id = pi.id + LEFT JOIN management_sch m ON l.mgt_id = m.id + LEFT JOIN cntable_lum c ON l.cn2_id = c.id + LEFT JOIN cons_prac_lum cp ON l.cons_prac_id = cp.id + LEFT JOIN urban_urb u ON l.urban_id = u.id + LEFT JOIN ovn_table_lum o ON l.ov_mann_id = o.id + LEFT JOIN tiledrain_str ti ON l.tile_id = ti.id + LEFT JOIN septic_str se ON l.sep_id = se.id + LEFT JOIN filterstrip_str fs ON l.vfs_id = fs.id + LEFT JOIN grassedww_str gw ON l.grww_id = gw.id + LEFT JOIN bmpuser_str bm ON l.bmp_id = bm.id + ORDER BY l.id"), + list(tbl = NULL, file = NULL), # management.sch written above + list(tbl = "cntable_lum", file = "cntable.lum"), + list(tbl = "cons_prac_lum", file = "cons_prac.lum"), + list(tbl = "ovn_table_lum", file = "ovn_table.lum") + )) + + # ---- CHG section ---- + write_table_section(con, output_dir, v, sv, has_cio, "chg", list( + list(tbl = "cal_parms_cal", file = "cal_parms.cal", write_count = TRUE), + list(tbl = "calibration_cal", file = "calibration.cal"), + list(tbl = "codes_sft", file = "codes.sft"), + list(tbl = "wb_parms_sft", file = "wb_parms.sft", write_count = TRUE), + list(tbl = "water_balance_sft", file = "water_balance.sft"), + list(tbl = "ch_sed_budget_sft", file = "ch_sed_budget.sft"), + list(tbl = "ch_sed_parms_sft", file = "ch_sed_parms.sft", write_count = TRUE), + list(tbl = "plant_parms_sft", file = "plant_parms.sft"), + list(tbl = "plant_gro_sft", file = "plant_gro.sft") + )) + + # ---- INIT section ---- + message(" Writing initial condition files...") + if (has_data(con, "plant_ini")) { + write_plant_ini(con, output_dir, v, sv) + } + write_table_section(con, output_dir, v, sv, has_cio, "init", list( + list(tbl = NULL, file = NULL), # plant.ini written above + list(tbl = "soil_plant_ini", file = "soil_plant.ini"), + list(tbl = "om_water_ini", file = "om_water.ini", ignore_id = TRUE), + list(tbl = "pest_hru_ini", file = "pest_hru.ini"), + list(tbl = "pest_water_ini", file = "pest_water.ini"), + list(tbl = "path_hru_ini", file = "path_hru.ini"), + list(tbl = "path_water_ini", file = "path_water.ini"), + list(tbl = "hmet_hru_ini", file = "hmet_hru.ini"), + list(tbl = "hmet_water_ini", file = "hmet_water.ini"), + list(tbl = "salt_hru_ini", file = "salt_hru.ini"), + list(tbl = "salt_water_ini", file = "salt_water.ini") + )) + + # ---- SOILS section ---- + message(" Writing soils files...") + write_table_section(con, output_dir, v, sv, has_cio, "soils", list( + list(tbl = "soils_sol", file = "soils.sol"), + list(tbl = "nutrients_sol", file = "nutrients.sol", + non_zero_min = c("exp_co")), + list(tbl = "soils_lte_sol", file = "soils_lte.sol", ignore_id = TRUE) + )) + + # ---- DECISION TABLE section ---- + message(" Writing decision table files...") + if (has_data(con, "d_table_dtl")) { + write_decision_tables(con, output_dir, v, sv) + } + + # ---- REGIONS section ---- + message(" Writing region files...") + write_table_section(con, output_dir, v, sv, has_cio, "regions", list( + list(tbl = "ls_unit_ele", file = "ls_unit.ele"), + list(tbl = "ls_unit_def", file = "ls_unit.def"), + list(tbl = "ls_reg_ele", file = "ls_reg.ele"), + list(tbl = "ls_reg_def", file = "ls_reg.def"), + list(tbl = NULL, file = NULL), + list(tbl = "ch_catunit_ele", file = "ch_catunit.ele"), + list(tbl = "ch_catunit_def", file = "ch_catunit.def"), + list(tbl = "ch_reg_def", file = "ch_reg.def"), + list(tbl = "aquifer_con", file = "aqu_catunit.ele", + query = paste( + "SELECT ac.id, ac.name, 'aqu' as obj_typ, ac.id as obj_typ_no,", + "CASE WHEN (SELECT COALESCE(SUM(area), 0) FROM rout_unit_con) > 0", + " THEN ac.area / (SELECT SUM(area) FROM rout_unit_con)", + " ELSE 0.0 END as bsn_frac,", + "0.0 as sub_frac, 0.0 as reg_frac", + "FROM aquifer_con ac ORDER BY ac.id")), + list(tbl = "aqu_catunit_def", file = "aqu_catunit.def"), + list(tbl = "aqu_reg_def", file = "aqu_reg.def"), + list(tbl = "res_catunit_ele", file = "res_catunit.ele"), + list(tbl = "res_catunit_def", file = "res_catunit.def"), + list(tbl = "res_reg_def", file = "res_reg.def"), + list(tbl = "rec_catunit_ele", file = "rec_catunit.ele"), + list(tbl = "rec_catunit_def", file = "rec_catunit.def"), + list(tbl = "rec_reg_def", file = "rec_reg.def") + )) + + # ---- file.cio (master index) ---- + message(" Writing file.cio...") + write_file_cio(con, output_dir, v, sv, is_lte, weather_data_format) + + # ---- GWFLOW files (if gwflow module is active) ---- + if (gwflow_exists(con)) { + message(" Writing gwflow files...") + write_gwflow_files(con, output_dir, v, sv) + } + + # Update timestamp + if ("project_config" %in% tables) { + execute_db(con, paste0( + "UPDATE project_config SET input_files_last_written = datetime('now'),", + " swat_last_run = NULL, output_last_imported = NULL")) + } + + message("SWAT+ input files written to: ", output_dir) + invisible(project) +} + +# =================================================================== +# Section-level helpers +# =================================================================== + +#' Write a file if file_name is not "null" +#' @keywords internal +write_section_file <- function(con, file_name, output_dir, v, sv, + writer = NULL) { + if (is.null(file_name) || trimws(file_name) == "null" || + trimws(file_name) == "") { + warning("Skipping file with name '", file_name, "'") + return(invisible(NULL)) + } + file_name <- trimws(file_name) + writer(con, output_dir, v, sv, file_name = file_name) +} + +# Build the hru-data.hru SELECT query adaptively. +# Handles both current Python DB column names (soil_plant_init_id, surf_stor_id) +# and older schema names (soil_nut_id, surf_stor), and silently falls back to +# literal 'null' when the column or the referenced table is absent. +# Mirrors Python Hru_data_hru.write() which calls key_name_pad() and gracefully +# handles NULL FK values. +.build_hru_data_query <- function(con) { + hru_cols <- tryCatch(DBI::dbListFields(con, "hru_data_hru"), + error = function(e) character(0)) + + # Detect soil_plant_init FK column (Python std: soil_plant_init_id; old: soil_nut_id) + sp_col <- if ("soil_plant_init_id" %in% hru_cols) "soil_plant_init_id" + else if ("soil_nut_id" %in% hru_cols) "soil_nut_id" + else NULL + + # Detect surf_stor FK column (Python std: surf_stor_id; old: surf_stor) + ss_col <- if ("surf_stor_id" %in% hru_cols) "surf_stor_id" + else if ("surf_stor" %in% hru_cols) "surf_stor" + else NULL + + # Check if referenced tables exist (already ensured, but be defensive) + sp_ok <- !is.null(sp_col) && + tryCatch({ DBI::dbGetQuery(con, "SELECT 1 FROM soil_plant_ini LIMIT 0"); TRUE }, + error = function(e) FALSE) + ww_ok <- !is.null(ss_col) && + tryCatch({ DBI::dbGetQuery(con, "SELECT 1 FROM wetland_wet LIMIT 0"); TRUE }, + error = function(e) FALSE) + + sp_select <- if (sp_ok) "COALESCE(sp.name, 'null') as soil_plant_init" + else "'null' as soil_plant_init" + ss_select <- if (ww_ok) "COALESCE(ww.name, 'null') as surf_stor" + else "'null' as surf_stor" + + sp_join <- if (sp_ok) paste0("LEFT JOIN soil_plant_ini sp ON h.", sp_col, " = sp.id") + else NULL + ss_join <- if (ww_ok) paste0("LEFT JOIN wetland_wet ww ON h.", ss_col, " = ww.id") + else NULL + + join_parts <- c( + "LEFT JOIN topography_hyd t ON h.topo_id = t.id", + "LEFT JOIN hydrology_hyd hy ON h.hydro_id = hy.id", + "LEFT JOIN soils_sol s ON h.soil_id = s.id", + "LEFT JOIN landuse_lum l ON h.lu_mgt_id = l.id", + sp_join, ss_join, + "LEFT JOIN snow_sno sn ON h.snow_id = sn.id", + "LEFT JOIN field_fld f ON h.field_id = f.id" + ) + join_parts <- join_parts[!vapply(join_parts, is.null, logical(1))] + + paste0( + "SELECT h.id, h.name,\n", + " COALESCE(t.name, 'null') as topo,\n", + " COALESCE(hy.name, 'null') as hydro,\n", + " COALESCE(s.name, 'null') as soil,\n", + " COALESCE(l.name, 'null') as lu_mgt,\n", + " ", sp_select, ",\n", + " ", ss_select, ",\n", + " COALESCE(sn.name, 'null') as snow,\n", + " COALESCE(f.name, '0') as field\n", + " FROM hru_data_hru h\n", + " ", paste(join_parts, collapse = "\n "), "\n", + " ORDER BY h.id" + ) +} + + +#' @keywords internal +write_table_section <- function(con, output_dir, v, sv, has_cio, + section, specs) { + cio_files <- if (has_cio) get_cio_file_names(con, section) else character(0) + + for (idx in seq_along(specs)) { + spec <- specs[[idx]] + tbl <- spec$tbl + if (is.null(tbl)) next + + # Determine output file name + fname <- if (idx <= length(cio_files) && cio_files[idx] != "null") { + trimws(cio_files[idx]) + } else { + spec$file + } + if (is.null(fname) || fname == "null" || fname == "") next + + # Check table exists and has data + if (!has_data(con, tbl)) { + cli::cli_alert_warning(" - Skipping {fname} (table '{tbl}' is empty or missing)") + next + } + + query_tbl <- if (!is.null(spec$query_tbl)) spec$query_tbl else NULL + custom_query <- if (!is.null(spec$query)) spec$query else NULL + ignore_id <- isTRUE(spec$ignore_id) + write_cnt <- isTRUE(spec$write_count) + nzm <- if (!is.null(spec$non_zero_min)) spec$non_zero_min else character(0) + + # Use custom query or default table + actual_tbl <- if (!is.null(query_tbl)) query_tbl else tbl + swat_write_table(con, table_name = actual_tbl, + file_path = file.path(output_dir, fname), + version = v, swat_version = sv, + ignore_id = ignore_id, + query = custom_query, + write_count = write_cnt, + non_zero_min_cols = nzm) + } +} + +# =================================================================== +# Individual file writers +# =================================================================== + +#' Write time.sim file +#' @param con Database connection. +#' @param output_dir Output directory. +#' @param version Editor version. +#' @param swat_version SWAT+ version. +#' @param file_name Output file name. +#' @keywords internal +write_time_sim <- function(con, output_dir, version = NULL, + swat_version = NULL, file_name = "time.sim") { + swat_write_table(con, "time_sim", + file.path(output_dir, file_name), + version = version, swat_version = swat_version, + ignore_id = TRUE) +} + +#' Write print.prt file (print output settings) +#' @keywords internal +write_print_prt <- function(con, output_dir, version = NULL, + swat_version = NULL, file_name = "print.prt") { + if (!has_data(con, "print_prt")) return(invisible(NULL)) + + row <- query_db(con, "SELECT * FROM print_prt LIMIT 1") + fp <- file.path(output_dir, file_name) + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(swat_meta_line(fp, version, swat_version), f) + + # Time settings row + writeLines(paste0( + swat_int_pad(row$nyskip, pad = 10), + swat_int_pad(row$day_start), + swat_int_pad(row$yrc_start), + swat_int_pad(row$day_end), + swat_int_pad(row$yrc_end), + swat_int_pad(row$interval) + ), f) + + # AA intervals + aa_ints <- if (!is.null(row$aa_ints) && !is.na(row$aa_ints) && + nchar(row$aa_ints) > 0) { + as.integer(strsplit(as.character(row$aa_ints), ",")[[1]]) + } else integer(0) + + writeLines(paste0(swat_int_pad("aa_int_cnt", pad = 10)), f) + aa_line <- swat_int_pad(length(aa_ints), pad = 10) + for (ai in aa_ints) aa_line <- paste0(aa_line, swat_int_pad(ai)) + writeLines(aa_line, f) + + # Output format + writeLines(paste0( + swat_bool_pad(row$csvout), + swat_bool_pad(row$dbout), + swat_bool_pad(row$cdfout) + ), f) + + # Extra options + crop_yld <- if (!is.null(row$crop_yld)) row$crop_yld else "n" + writeLines(paste0( + swat_string_pad(crop_yld, pad = SWAT_CODE_PAD), + swat_bool_pad(row$mgtout), + swat_bool_pad(row$hydcon), + swat_bool_pad(row$fdcout) + ), f) + + # Print objects + if (has_data(con, "print_prt_object")) { + objects <- query_db(con, "SELECT * FROM print_prt_object ORDER BY id") + writeLines(paste0( + swat_string_pad("objects", pad = SWAT_STR_PAD, align = "left"), + swat_string_pad("daily"), + swat_string_pad("monthly"), + swat_string_pad("yearly"), + swat_string_pad("avann") + ), f) + seen <- character(0) + for (i in seq_len(nrow(objects))) { + obj <- objects[i, ] + if (obj$name %in% seen) next + seen <- c(seen, obj$name) + writeLines(paste0( + swat_string_pad(obj$name, align = "left"), + swat_bool_pad(obj$daily), + swat_bool_pad(obj$monthly), + swat_bool_pad(obj$yearly), + swat_bool_pad(obj$avann) + ), f) + } + } +} + +#' Write object.prt file +#' @keywords internal +write_object_prt <- function(con, output_dir, version = NULL, + swat_version = NULL, file_name = "object.prt") { + swat_write_table(con, "object_prt", + file.path(output_dir, file_name), + version = version, swat_version = swat_version) +} + +#' Write object.cnt file (object counts) +#' @keywords internal +write_object_cnt <- function(con, output_dir, version = NULL, + swat_version = NULL, file_name = "object.cnt") { + if (!has_data(con, "object_cnt")) { + cli::cli_alert_warning("No data in 'object_cnt' table; skipping {file_name} output.") + return(invisible(NULL)) + } + + row <- query_db(con, "SELECT * FROM object_cnt LIMIT 1") + fp <- file.path(output_dir, file_name) + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(swat_meta_line(fp, version, swat_version), f) + + # Header + hdr <- paste0( + swat_string_pad("name", align = "left"), + swat_num_pad("ls_area"), swat_num_pad("tot_area"), + swat_int_pad("obj"), swat_int_pad("hru"), swat_int_pad("lhru"), + swat_int_pad("rtu"), swat_int_pad("mfl"), swat_int_pad("aqu"), + swat_int_pad("cha"), swat_int_pad("res"), swat_int_pad("rec"), + swat_int_pad("exco"), swat_int_pad("dlr"), swat_int_pad("can"), + swat_int_pad("pmp"), swat_int_pad("out"), swat_int_pad("lcha"), + swat_int_pad("aqu2d"), swat_int_pad("hrd"), swat_int_pad("wro") + ) + writeLines(hdr, f) + + # Dynamic counts from con tables + hru_cnt <- safe_count(con, "hru_con") + lhru_cnt <- safe_count(con, "hru_lte_con") + rtu_cnt <- safe_count(con, "rout_unit_con") + mfl_cnt <- safe_count(con, "modflow_con") + aqu_cnt <- safe_count(con, "aquifer_con") + cha_cnt <- safe_count(con, "channel_con") + res_cnt <- safe_count(con, "reservoir_con") + rec_cnt <- tryCatch( + query_db(con, "SELECT COUNT(*) as cnt FROM recall_rec WHERE rec_typ != 4")$cnt[1], + error = function(e) safe_count(con, "recall_con")) + exco_cnt <- tryCatch( + query_db(con, "SELECT COUNT(*) as cnt FROM recall_dat d + JOIN recall_rec r ON d.recall_rec_id = r.id + WHERE r.rec_typ = 4 AND d.flo != 0")$cnt[1], + error = function(e) safe_count(con, "exco_con")) + dlr_cnt <- safe_count(con, "delratio_con") + out_cnt <- safe_count(con, "outlet_con") + lcha_cnt <- safe_count(con, "chandeg_con") + aqu2d_cnt <- safe_count(con, "aquifer2d_con") + + ls_area <- tryCatch( + query_db(con, "SELECT COALESCE(SUM(area), 0) as s FROM ls_unit_def")$s[1], + error = function(e) 0) + tot_area <- tryCatch( + query_db(con, "SELECT COALESCE(SUM(area), 0) as s FROM rout_unit_con")$s[1], + error = function(e) 0) + + name_val <- gsub("\\W", "", row$name) + can_v <- if (!is.null(row$can)) row$can else 0L + pmp_v <- if (!is.null(row$pmp)) row$pmp else 0L + hrd_v <- if (!is.null(row$hrd)) row$hrd else 0L + wro_v <- if (!is.null(row$wro)) row$wro else 0L + + obj_tot <- hru_cnt + lhru_cnt + rtu_cnt + mfl_cnt + aqu_cnt + cha_cnt + + res_cnt + rec_cnt + exco_cnt + dlr_cnt + out_cnt + lcha_cnt + aqu2d_cnt + + can_v + pmp_v + hrd_v + wro_v + + writeLines(paste0( + swat_string_pad(name_val, align = "left"), + swat_num_pad(ls_area), swat_num_pad(tot_area), + swat_int_pad(obj_tot), + swat_int_pad(hru_cnt), swat_int_pad(lhru_cnt), + swat_int_pad(rtu_cnt), swat_int_pad(mfl_cnt), + swat_int_pad(aqu_cnt), swat_int_pad(cha_cnt), + swat_int_pad(res_cnt), swat_int_pad(rec_cnt), + swat_int_pad(exco_cnt), swat_int_pad(dlr_cnt), + swat_int_pad(can_v), swat_int_pad(pmp_v), + swat_int_pad(out_cnt), swat_int_pad(lcha_cnt), + swat_int_pad(aqu2d_cnt), + swat_int_pad(hrd_v), swat_int_pad(wro_v) + ), f) +} + +#' Write constituents.cs file +#' @keywords internal +write_constituents_cs <- function(con, output_dir, version = NULL, + swat_version = NULL, + file_name = "constituents.cs") { + if (!has_data(con, "constituents_cs")) return(invisible(NULL)) + + row <- query_db(con, "SELECT * FROM constituents_cs LIMIT 1") + pest <- if (!is.null(row$pest_coms) && !is.na(row$pest_coms) && + nchar(row$pest_coms) > 0) sort(strsplit(row$pest_coms, ",")[[1]]) else character(0) + path <- if (!is.null(row$path_coms) && !is.na(row$path_coms) && + nchar(row$path_coms) > 0) sort(strsplit(row$path_coms, ",")[[1]]) else character(0) + hmet <- if (!is.null(row$hmet_coms) && !is.na(row$hmet_coms) && + nchar(row$hmet_coms) > 0) sort(strsplit(row$hmet_coms, ",")[[1]]) else character(0) + salt <- if (!is.null(row$salt_coms) && !is.na(row$salt_coms) && + nchar(row$salt_coms) > 0) sort(strsplit(row$salt_coms, ",")[[1]]) else character(0) + + if (length(pest) == 0 && length(path) == 0 && + length(hmet) == 0 && length(salt) == 0) return(invisible(NULL)) + + fp <- file.path(output_dir, file_name) + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(swat_meta_line(fp, version, swat_version), f) + + write_constit <- function(items, label) { + cnt_str <- sprintf("%6d", length(items)) + writeLines(paste0(cnt_str, " ", sprintf("%-16s ", paste0("!", label))), f) + writeLines(paste0(" ", paste(items, collapse = " ")), f) + } + + write_constit(pest, "pesticides") + write_constit(path, "pathogens") + write_constit(hmet, "metals") + write_constit(salt, "salts") +} + +#' Write rout_unit.def in SWAT+ format +#' Each routing unit block: id / name / elem_tot / element IDs. +#' Iterates over rout_unit_con (one row per RTU) and for each RTU writes +#' the sequential IDs of all associated rout_unit_ele rows using range +#' notation (negative = "through"). +#' Mirrors Python Rout_unit_def.write() in fileio/routing_unit.py. +#' @keywords internal +write_rout_unit_def <- function(con, output_dir, version = NULL, + swat_version = NULL, + file_name = "rout_unit.def") { + rtus <- tryCatch( + query_db(con, "SELECT id, name FROM rout_unit_con ORDER BY id"), + error = function(e) NULL) + if (is.null(rtus) || nrow(rtus) == 0L) return(invisible(NULL)) + + # All rout_unit_ele rows ordered by id — used to derive sequential position + eles <- tryCatch( + query_db(con, "SELECT id, rtu_id, obj_id FROM rout_unit_ele ORDER BY id"), + error = function(e) NULL) + if (is.null(eles) || nrow(eles) == 0L) return(invisible(NULL)) + + # Build ordered list of obj_ids (used by Python write_ele_ids2 to find position) + all_obj_ids <- eles$obj_id + + fp <- file.path(output_dir, file_name) + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(swat_meta_line(fp, version, swat_version), f) + + writeLines(paste0( + swat_int_pad("id"), + swat_string_pad("name"), + swat_int_pad("elem_tot"), + swat_int_pad("elements") + ), f) + + for (i in seq_len(nrow(rtus))) { + rtu <- rtus[i, ] + rtu_eles <- eles[eles$rtu_id == rtu$id, , drop = FALSE] + + # Convert obj_ids to their sequential position in all_obj_ids + seq_ids <- match(rtu_eles$obj_id, all_obj_ids) + seq_ids <- seq_ids[!is.na(seq_ids)] + + # Build range notation: positive = start, negative = end-of-range + ele_parts <- character(0) + if (length(seq_ids) > 0L) { + last_id <- 0L + last_appended <- 0L + just_wrote <- FALSE + for (sid in seq_ids) { + if (last_id == 0L) { + ele_parts <- c(ele_parts, swat_int_pad(sid)) + just_wrote <- TRUE + last_appended <- sid + } else if (sid > last_id + 1L) { + if (last_appended != last_id) + ele_parts <- c(ele_parts, swat_int_pad(-last_id)) + ele_parts <- c(ele_parts, swat_int_pad(sid)) + last_appended <- sid + just_wrote <- TRUE + } else { + just_wrote <- FALSE + } + last_id <- sid + } + if (!just_wrote && length(seq_ids) > 0L) + ele_parts <- c(ele_parts, swat_int_pad(-last_id)) + } + + writeLines(paste0( + swat_int_pad(i), + swat_string_pad(rtu$name), + swat_int_pad(length(ele_parts)), + paste(ele_parts, collapse = "") + ), f) + } + + invisible(NULL) +} + + +#' Write plant.ini in SWAT+ hierarchical format +#' Each plant community block: name + plt_cnt + rot_yr_ini, then one sub-row +#' per plant (indented). Only writes communities referenced from +#' landuse_lum.plnt_com_id (i.e. those actually used in the watershed). +#' Mirrors Python Plant_ini.write() in fileio/init.py. +#' @keywords internal +write_plant_ini <- function(con, output_dir, version = NULL, + swat_version = NULL, + file_name = "plant.ini") { + if (!has_data(con, "plant_ini")) return(invisible(NULL)) + + # Only communities actually referenced from landuse_lum + used_sql <- paste0( + "SELECT pi.id, pi.name, pi.rot_yr_ini ", + "FROM plant_ini pi ", + "WHERE pi.id IN (SELECT DISTINCT plnt_com_id FROM landuse_lum WHERE plnt_com_id IS NOT NULL) ", + "ORDER BY pi.id") + comms <- tryCatch(query_db(con, used_sql), error = function(e) NULL) + if (is.null(comms) || nrow(comms) == 0L) return(invisible(NULL)) + + # Plant sub-rows: join plant_ini_item with plants_plt to get plant name + items_sql <- paste0( + "SELECT pii.plant_ini_id, p.name AS plt_name, ", + "pii.lc_status, pii.lai_init, pii.bm_init, pii.phu_init, ", + "pii.plnt_pop, pii.yrs_init, pii.rsd_init ", + "FROM plant_ini_item pii ", + "LEFT JOIN plants_plt p ON pii.plnt_name_id = p.id ", + "WHERE pii.plant_ini_id IN (", + paste(comms$id, collapse = ","), ") ", + "ORDER BY pii.plant_ini_id, pii.id") + items <- tryCatch(query_db(con, items_sql), error = function(e) data.frame()) + + fp <- file.path(output_dir, file_name) + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(swat_meta_line(fp, version, swat_version), f) + + # Header — community-level columns then plant-level columns + # Python: string_pad(left) + int_pad + int_pad + key_name_pad + code_pad + num_pad*6 + name_pad <- SWAT_STR_PAD + writeLines(paste0( + swat_string_pad("pcom_name", pad = name_pad, align = "left"), + swat_int_pad("plt_cnt"), + swat_int_pad("rot_yr_ini"), + swat_string_pad("plt_name", pad = SWAT_KEY_PAD, align = "right"), + swat_string_pad("lc_status", pad = SWAT_CODE_PAD, align = "right"), + swat_num_pad("lai_init"), + swat_num_pad("bm_init"), + swat_num_pad("phu_init"), + swat_num_pad("plnt_pop"), + swat_num_pad("yrs_init"), + swat_num_pad("rsd_init") + ), f) + writeLines("", f) + + blank_name <- swat_string_pad("", pad = name_pad, align = "left", null_text = "") + blank_int <- swat_int_pad(0) + # Override blank_int to be empty (matching Python blank padding) + blank_int <- formatC("", width = SWAT_INT_PAD + 2L, flag = "-") + + for (i in seq_len(nrow(comms))) { + comm <- comms[i, ] + c_items <- if (nrow(items) > 0 && "plant_ini_id" %in% names(items)) + items[items$plant_ini_id == comm$id, , drop = FALSE] + else data.frame() + plt_cnt <- nrow(c_items) + + # Community header row + writeLines(paste0( + swat_string_pad(comm$name, pad = name_pad, align = "left"), + swat_int_pad(plt_cnt), + swat_int_pad(comm$rot_yr_ini) + ), f) + + # Plant sub-rows + for (j in seq_len(nrow(c_items))) { + item <- c_items[j, ] + writeLines(paste0( + blank_name, + blank_int, + swat_string_pad(item$plt_name, pad = SWAT_KEY_PAD, align = "right"), + swat_bool_pad(item$lc_status), + swat_num_pad(item$lai_init), + swat_num_pad(item$bm_init), + swat_num_pad(item$phu_init), + swat_num_pad(item$plnt_pop), + swat_num_pad(item$yrs_init), + swat_num_pad(item$rsd_init) + ), f) + } + } + + invisible(NULL) +} + + +#' Writes the SWAT+ management schedule file, including auto-operations +#' (decision-table-driven) and manual operations for each schedule. +#' Mirrors Python Management_sch.write() in fileio/lum.py. +#' @keywords internal +write_management_sch <- function(con, output_dir, version = NULL, + swat_version = NULL, + file_name = "management.sch") { + if (!has_data(con, "management_sch")) return(invisible(NULL)) + + scheds <- tryCatch( + query_db(con, "SELECT id, name FROM management_sch ORDER BY id"), + error = function(e) NULL) + if (is.null(scheds) || nrow(scheds) == 0L) return(invisible(NULL)) + + auto_ops <- tryCatch( + query_db(con, paste0( + "SELECT a.management_sch_id, d.name as d_table, a.plant1, a.plant2 ", + "FROM management_sch_auto a ", + "LEFT JOIN d_table_dtl d ON a.d_table_id = d.id ", + "ORDER BY a.management_sch_id, a.id")), + error = function(e) data.frame()) + + reg_ops <- tryCatch( + query_db(con, paste0( + "SELECT management_sch_id, op_typ, mon, day, hu_sch, ", + "op_data1, op_data2, op_data3 ", + "FROM management_sch_op ", + "ORDER BY management_sch_id, id")), + error = function(e) data.frame()) + + fp <- file.path(output_dir, file_name) + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(swat_meta_line(fp, version, swat_version), f) + + # Header line + name_pad <- 41L + writeLines(paste0( + swat_string_pad("name", align = "left", pad = name_pad), + swat_string_pad("numb_ops", align = "right", pad = SWAT_INT_PAD), + swat_string_pad("numb_auto", align = "right", pad = 9L), + swat_string_pad("op_typ", align = "right"), + swat_string_pad("mon", align = "right"), + swat_string_pad("day", align = "right"), + swat_string_pad("hu_sch", align = "right"), + swat_string_pad("op_data1", align = "right"), + swat_string_pad("op_data2", align = "right"), + swat_string_pad("op_data3", align = "right") + ), f) + writeLines("", f) + + row_pad <- 46L # padding before auto-op / reg-op entries + + for (i in seq_len(nrow(scheds))) { + sch_id <- scheds$id[i] + sch_name <- scheds$name[i] + + aops <- if (nrow(auto_ops) > 0 && "management_sch_id" %in% names(auto_ops)) + auto_ops[auto_ops$management_sch_id == sch_id, , drop = FALSE] else data.frame() + rops <- if (nrow(reg_ops) > 0 && "management_sch_id" %in% names(reg_ops)) + reg_ops[reg_ops$management_sch_id == sch_id, , drop = FALSE] else data.frame() + + n_ops <- nrow(rops) + n_auto <- nrow(aops) + + writeLines(paste0( + swat_string_pad(sch_name, align = "left", pad = 25L), + swat_int_pad(n_ops), + swat_string_pad(as.character(n_auto), align = "right", pad = 9L) + ), f) + writeLines("", f) + + # Auto-op rows + special_tables <- c("pl_hv_summer1", "pl_hv_summer2", "pl_hv_winter1") + for (j in seq_len(nrow(aops))) { + aop <- aops[j, ] + line <- paste0(swat_string_pad(" ", pad = row_pad), + swat_string_pad(aop$d_table, align = "left", pad = 16L)) + if (!is.na(aop$d_table) && aop$d_table %in% special_tables) { + line <- paste0(line, swat_string_pad( + if (!is.na(aop$plant1) && aop$plant1 != "") aop$plant1 else "null", + align = "left", pad = 5L)) + if (!is.na(aop$d_table) && aop$d_table == "pl_hv_summer2" && + !is.na(aop$plant2) && aop$plant2 != "") { + line <- paste0(line, swat_string_pad(aop$plant2, align = "left", pad = 5L)) + } + } + writeLines(line, f) + } + + # Regular operation rows + for (j in seq_len(nrow(rops))) { + rop <- rops[j, ] + skip_val <- if (!is.na(rop$op_typ) && rop$op_typ == "skip") "skip" else "" + if (skip_val == "skip") { + writeLines(paste0(swat_string_pad(" ", pad = row_pad), + swat_string_pad("skip", align = "left")), f) + } else { + writeLines(paste0( + swat_string_pad(" ", pad = row_pad), + swat_string_pad(rop$op_typ, align = "left"), + swat_int_pad(rop$mon), + swat_int_pad(rop$day), + swat_num_pad(rop$hu_sch), + swat_string_pad(rop$op_data1, align = "left"), + swat_string_pad(rop$op_data2, align = "left"), + swat_string_pad(rop$op_data3, align = "left") + ), f) + } + } + } + + invisible(NULL) +} + +#' Write weather station CLI file +#' @keywords internal +write_weather_sta_cli <- function(con, output_dir, version = NULL, + swat_version = NULL, + file_name = "weather-sta.cli") { + if (!has_data(con, "weather_sta_cli")) return(invisible(NULL)) + + # Join with wgn to get wgn name + sql <- "SELECT s.name, w.name as wgn, + s.pcp, s.tmp, s.slr, s.hmd, s.wnd, s.pet, s.atmo_dep + FROM weather_sta_cli s + INNER JOIN weather_wgn_cli w ON s.wgn_id = w.name + ORDER BY s.id" + stations <- tryCatch(query_db(con, sql), error = function(e) { + # Fallback without join if wgn table doesn't exist + query_db(con, "SELECT name, 'null' as wgn, pcp, tmp, slr, hmd, wnd, pet, atmo_dep + FROM weather_sta_cli ORDER BY id") + }) + if (nrow(stations) == 0) return(invisible(NULL)) + + fp <- file.path(output_dir, file_name) + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(swat_meta_line(fp, version, swat_version), f) + + # Header + writeLines(paste0( + swat_string_pad("name", align = "left"), + swat_string_pad("wgn"), + swat_string_pad("pcp"), + swat_string_pad("tmp"), + swat_string_pad("slr"), + swat_string_pad("hmd"), + swat_string_pad("wnd"), + swat_string_pad("pet"), + swat_string_pad("atmo_dep") + ), f) + + for (i in seq_len(nrow(stations))) { + s <- stations[i, ] + na_to_null <- function(x) if (is.na(x) || is.null(x)) SWAT_NULL_STR else x + writeLines(paste0( + swat_string_pad(na_to_null(s$name), align = "left"), + swat_string_pad(na_to_null(s$wgn)), + swat_string_pad(na_to_null(s$pcp)), + swat_string_pad(na_to_null(s$tmp)), + swat_string_pad(na_to_null(s$slr)), + swat_string_pad(na_to_null(s$hmd)), + swat_string_pad(na_to_null(s$wnd)), + swat_string_pad(na_to_null(s$pet)), + swat_string_pad(na_to_null(s$atmo_dep)) + ), f) + } +} + +#' Write weather generator file (weather-wgn.cli) +#' @keywords internal +write_weather_wgn <- function(con, output_dir, version = NULL, + swat_version = NULL, + file_name = "weather-wgn.cli") { + if (!has_data(con, "weather_wgn_cli")) return(invisible(NULL)) + + stations <- query_db(con, "SELECT * FROM weather_wgn_cli ORDER BY id") + fp <- file.path(output_dir, file_name) + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(swat_meta_line(fp, version, swat_version), f) + + mon_cols <- c("tmp_max_ave", "tmp_min_ave", "tmp_max_sd", "tmp_min_sd", + "pcp_ave", "pcp_sd", "pcp_skew", "wet_dry", "wet_wet", + "pcp_days", "pcp_hhr", "slr_ave", "dew_ave", "wnd_ave") + + for (i in seq_len(nrow(stations))) { + sta <- stations[i, ] + + # Station header + writeLines(paste0( + swat_string_pad("name", align = "left"), + swat_num_pad("lat"), swat_num_pad("lon"), + swat_num_pad("elev"), swat_num_pad("rain_yrs") + ), f) + writeLines(paste0( + swat_string_pad(sta$name, align = "left"), + swat_num_pad(sta$lat), swat_num_pad(sta$lon), + swat_num_pad(sta$elev), swat_num_pad(sta$rain_yrs) + ), f) + + # Monthly data header + hdr <- paste0(swat_int_pad("month")) + for (mc in mon_cols) hdr <- paste0(hdr, swat_num_pad(mc)) + writeLines(hdr, f) + + # Monthly data + mon_data <- tryCatch( + query_db(con, "SELECT * FROM weather_wgn_cli_mon + WHERE weather_wgn_cli_id = ? ORDER BY month", + params = list(sta$id)), + error = function(e) data.frame()) + + if (nrow(mon_data) > 0) { + for (m in seq_len(nrow(mon_data))) { + md <- mon_data[m, ] + line <- swat_int_pad(md$month) + for (mc in mon_cols) { + val <- if (mc %in% names(md)) md[[mc]] else 0 + line <- paste0(line, swat_num_pad(val)) + } + writeLines(line, f) + } + } + } +} + +#' Write atmospheric deposition file (atmo.cli) +#' @keywords internal +write_atmo_cli <- function(con, output_dir, version = NULL, + swat_version = NULL, file_name = "atmo.cli") { + if (!has_data(con, "atmo_cli")) return(invisible(NULL)) + + fp <- file.path(output_dir, file_name) + swat_write_table(con, "atmo_cli", fp, + version = version, swat_version = swat_version) +} + +# =================================================================== +# Connect file writers +# =================================================================== + +#' Write all connect section files +#' @keywords internal +write_connect_section <- function(con, output_dir, v, sv, has_cio) { + # Map connect tables to file.cio positions (1-based). + # The file.cio connect section has 13 entries in fixed order. + # Positions 4 (gwflow.con), 6 (aquifer2d.con), and 12 (outlet.con) + # are handled by file.cio conditions but not explicitly written here + # (matching Python behaviour where these positions are skipped). + con_specs <- list( + list(cio_pos = 1, con_tbl = "hru_con", con_out_tbl = "hru_con_out", + elem_name = "hru", file = "hru.con"), + list(cio_pos = 2, con_tbl = "hru_lte_con", con_out_tbl = "hru_lte_con_out", + elem_name = "lhru", file = "hru-lte.con"), + list(cio_pos = 3, con_tbl = "rout_unit_con", con_out_tbl = "rout_unit_con_out", + elem_name = "rtu", file = "rout_unit.con"), + list(cio_pos = 5, con_tbl = "aquifer_con", con_out_tbl = "aquifer_con_out", + elem_name = "aqu", file = "aquifer.con"), + list(cio_pos = 7, con_tbl = "channel_con", con_out_tbl = "channel_con_out", + elem_name = "cha", file = "channel-lte.con"), + list(cio_pos = 8, con_tbl = "reservoir_con", con_out_tbl = "reservoir_con_out", + elem_name = "res", file = "reservoir.con"), + list(cio_pos = 9, con_tbl = "recall_con", con_out_tbl = "recall_con_out", + elem_name = "rec", file = "recall.con"), + list(cio_pos = 10, con_tbl = "exco_con", con_out_tbl = "exco_con_out", + elem_name = "exco", file = "exco.con"), + list(cio_pos = 11, con_tbl = "delratio_con", con_out_tbl = "delratio_con_out", + elem_name = "dlr", file = "delratio.con"), + list(cio_pos = 12, con_tbl = "outlet_con", con_out_tbl = "outlet_con_out", + elem_name = "out", file = "outlet.con"), + list(cio_pos = 13, con_tbl = "chandeg_con", con_out_tbl = "chandeg_con_out", + elem_name = "lcha", file = "chandeg.con") + ) + + cio_files <- if (has_cio) get_cio_file_names(con, "connect") else character(0) + + for (spec in con_specs) { + pos <- spec$cio_pos + fname <- if (pos <= length(cio_files) && cio_files[pos] != "null") { + trimws(cio_files[pos]) + } else { + spec$file + } + if (is.null(fname) || fname == "null") next + if (!has_data(con, spec$con_tbl)) next + + write_connect_file(con, con_tbl = spec$con_tbl, + con_out_tbl = spec$con_out_tbl, + elem_name = spec$elem_name, file_path = file.path(output_dir, fname), v, sv) + } +} + +#' Write a single connect file (e.g. hru.con, channel.con) +#' @keywords internal +write_connect_file <- function(con, con_tbl, con_out_tbl, elem_name, + file_path, version, swat_version) { + # Check if con_out table exists + has_con_out <- has_data(con, con_out_tbl) + + # Check if wst_id column exists in the table + tbl_cols <- DBI::dbListFields(con, con_tbl) + has_wst_id <- "wst_id" %in% tbl_cols + + if (has_wst_id) { + sql <- paste0( + "SELECT c.id, c.name, c.gis_id, c.area, c.lat, c.lon, c.elev, ", + "COALESCE(w.name, 'null') as wst ", + "FROM ", con_tbl, " c ", + "LEFT JOIN weather_sta_cli w ON c.wst_id = w.id ", + "ORDER BY c.id") + } else { + # No wst_id column - get nearest weather station or use first available + default_wst <- tryCatch( + DBI::dbGetQuery(con, "SELECT name FROM weather_sta_cli LIMIT 1")$name, + error = function(e) "null") + sql <- paste0( + "SELECT *, '", default_wst, "' as wst FROM ", con_tbl, " ORDER BY id") + } + + # Get connection data with weather station name + # sql <- paste0( + # "SELECT c.id, c.name, c.gis_id, c.area, c.lat, c.lon, c.elev, ", + # "COALESCE(w.name, 'null') as wst ", + # "FROM ", con_tbl, " c ", + # "LEFT JOIN weather_sta_cli w ON c.wst_id = w.id ", + # "ORDER BY c.id") + # weather_sta_cli <- DBI::dbReadTable(con, "weather_sta_cli") + cons <- tryCatch(query_db(con, sql), error = function(e) { + # Fallback without weather join + tryCatch(query_db(con, paste0("SELECT * FROM ", con_tbl, " ORDER BY id")), + error = function(e2) data.frame()) + }) + if (nrow(cons) == 0) { + warning("No data found in table ", con_tbl, " for writing ", basename(file_path)) + return(invisible(NULL)) + } + + f <- file(file_path, "w") + on.exit(close(f)) + + writeLines(swat_meta_line(file_path, version, swat_version), f) + + # Header + hdr <- paste0( + swat_int_pad("id"), + swat_string_pad("name", align = "left"), + swat_int_pad("gis_id"), + swat_num_pad("area"), + swat_num_pad("lat"), + swat_num_pad("lon"), + swat_num_pad("elev"), + swat_int_pad(elem_name), + swat_string_pad("wst"), + swat_int_pad("cst"), + swat_int_pad("ovfl"), + swat_int_pad("rule"), + swat_int_pad("out_tot") + ) + if (has_con_out) { + hdr <- paste0(hdr, + swat_string_pad("obj_typ", pad = SWAT_CODE_PAD), + swat_int_pad("obj_id"), + swat_string_pad("hyd_typ", pad = SWAT_CODE_PAD), + swat_num_pad("frac") + ) + } + writeLines(hdr, f) + + # Get element ID column name + elem_id_col <- paste0(elem_name, "_id") + + # Data rows + for (i in seq_len(nrow(cons))) { + c_row <- cons[i, ] + elem_id <- if (elem_id_col %in% names(c_row)) c_row[[elem_id_col]] else i + if (is.null(elem_id) || is.na(elem_id)) elem_id <- i + + wst <- if ("wst" %in% names(c_row)) c_row$wst else SWAT_NULL_STR + cst_id <- if ("cst_id" %in% names(c_row)) c_row$cst_id else 0L + ovfl <- if ("ovfl" %in% names(c_row)) c_row$ovfl else 0L + rule <- if ("rule" %in% names(c_row)) c_row$rule else 0L + + # Get outflows for this connection + outs <- if (has_con_out) { + tryCatch( + query_db(con, paste0("SELECT * FROM ", con_out_tbl, + " WHERE ", gsub("_out$", "_id", con_out_tbl), + " = ? ORDER BY order_id"), + params = list(c_row$id)), + error = function(e) data.frame()) + } else data.frame() + + out_tot <- nrow(outs) + + line <- paste0( + swat_int_pad(i), + swat_string_pad(c_row$name, align = "left"), + swat_int_pad(if (is.null(c_row$gis_id) || is.na(c_row$gis_id)) 0L else c_row$gis_id), + swat_num_pad(c_row$area, use_non_zero_min = TRUE), + swat_num_pad(c_row$lat), + swat_num_pad(c_row$lon), + swat_num_pad(c_row$elev), + swat_int_pad(elem_id), + swat_string_pad(wst), + swat_int_pad(cst_id), + swat_int_pad(ovfl), + swat_int_pad(rule), + swat_int_pad(out_tot) + ) + + if (out_tot > 0) { + for (j in seq_len(out_tot)) { + o <- outs[j, ] + line <- paste0(line, + swat_string_pad(o$obj_typ, pad = SWAT_CODE_PAD), + swat_int_pad(o$obj_id), + swat_string_pad(o$hyd_typ, pad = SWAT_CODE_PAD), + swat_num_pad(o$frac) + ) + } + } + writeLines(line, f) + } +} + +# =================================================================== +# Recall file writer +# =================================================================== + +#' Write recall.rec file (includes nested recall data) +#' @keywords internal +write_recall_rec <- function(con, output_dir, version = NULL, + swat_version = NULL) { + recs <- query_db(con, "SELECT * FROM recall_rec ORDER BY id") + if (nrow(recs) == 0) return(invisible(NULL)) + + fp <- file.path(output_dir, "recall.rec") + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(swat_meta_line(fp, version, swat_version), f) + + for (i in seq_len(nrow(recs))) { + rec <- recs[i, ] + + # Get data for this recall + dat <- tryCatch( + query_db(con, "SELECT * FROM recall_dat WHERE recall_rec_id = ? ORDER BY id", + params = list(rec$id)), + error = function(e) data.frame()) + + writeLines(paste0( + swat_int_pad(i), + swat_string_pad(rec$name, align = "left"), + swat_int_pad(rec$rec_typ) + ), f) + + if (nrow(dat) > 0) { + # Write data rows + for (d in seq_len(nrow(dat))) { + dr <- dat[d, ] + line <- "" + # Write numeric columns (skip id and recall_rec_id) + dat_cols <- setdiff(names(dr), c("id", "recall_rec_id")) + for (dc in dat_cols) { + val <- dr[[dc]] + if (is.numeric(val)) { + line <- paste0(line, swat_num_pad(val)) + } else { + line <- paste0(line, swat_string_pad(val)) + } + } + writeLines(line, f) + } + } + } +} + +# =================================================================== +# Decision table writer +# =================================================================== + +#' Write decision table files +#' @keywords internal +write_decision_tables <- function(con, output_dir, version, swat_version) { + # Decision tables are grouped by file_name + file_names <- tryCatch( + query_db(con, "SELECT DISTINCT file_name FROM d_table_dtl ORDER BY file_name"), + error = function(e) data.frame(file_name = character(0))) + + for (fn in file_names$file_name) { + if (is.na(fn) || fn == "" || fn == "null") next + + tables <- query_db(con, + "SELECT * FROM d_table_dtl WHERE file_name = ? ORDER BY id", + params = list(fn)) + + fp <- file.path(output_dir, fn) + f <- file(fp, "w") + # on.exit(close(f), add = TRUE) + + writeLines(swat_meta_line(fp, version, swat_version), f) + + for (t in seq_len(nrow(tables))) { + tbl <- tables[t, ] + + # Get conditions and actions + conds <- tryCatch( + query_db(con, "SELECT * FROM d_table_dtl_cond WHERE d_table_dtl_id = ? ORDER BY id", + params = list(tbl$id)), + error = function(e) data.frame()) + acts <- tryCatch( + query_db(con, "SELECT * FROM d_table_dtl_act WHERE d_table_dtl_id = ? ORDER BY id", + params = list(tbl$id)), + error = function(e) data.frame()) + + # Table header + writeLines(paste0( + swat_string_pad(tbl$name, align = "left"), + swat_int_pad(nrow(conds)), + swat_int_pad(0), # alts placeholder + swat_int_pad(nrow(acts)) + ), f) + + # Conditions + if (nrow(conds) > 0) { + for (ci in seq_len(nrow(conds))) { + cd <- conds[ci, ] + writeLines(paste0( + swat_string_pad(if(is.na(cd$var)) "null" else cd$var, align = "left"), + swat_string_pad(if(is.na(cd$obj)) "null" else cd$obj), + swat_int_pad(if(is.na(cd$obj_num)) 0L else cd$obj_num), + swat_string_pad(if(is.na(cd$lim_var)) "null" else cd$lim_var), + swat_string_pad(if(is.na(cd$lim_op)) "null" else cd$lim_op), + swat_num_pad(if(is.na(cd$lim_const)) 0 else cd$lim_const) + ), f) + } + } + + # Actions + if (nrow(acts) > 0) { + for (ai in seq_len(nrow(acts))) { + ac <- acts[ai, ] + writeLines(paste0( + swat_string_pad(if(is.na(ac$act_typ)) "null" else ac$act_typ, align = "left"), + swat_string_pad(if(is.na(ac$obj)) "null" else ac$obj), + swat_int_pad(if(is.na(ac$obj_num)) 0L else ac$obj_num), + swat_string_pad(if(is.na(ac$name)) "null" else ac$name), + swat_string_pad(if(is.na(ac$option)) "null" else ac$option), + swat_num_pad(if(is.na(ac$const)) 0 else ac$const), + swat_num_pad(if(is.na(ac$const2)) 0 else ac$const2) + ), f) + } + } + } + close(f) + } +} + +# =================================================================== +# Weather file copying +# =================================================================== + +#' Copy weather data files from weather_dir to output_dir +#' @keywords internal +copy_weather_files <- function(con, output_dir, weather_dir, + weather_data_format = "observed") { + if (is.null(weather_dir) || !dir.exists(weather_dir)) return(invisible(NULL)) + if (normalizePath(weather_dir, mustWork = FALSE) == + normalizePath(output_dir, mustWork = FALSE)) return(invisible(NULL)) + + if (weather_data_format == "netcdf") { + message(" Skipping weather file copy (using NetCDF format)") + return(invisible(NULL)) + } + + message(" Copying weather files from: ", weather_dir) + + # Copy standard cli files + for (ext in c("hmd.cli", "pcp.cli", "slr.cli", "tmp.cli", "wnd.cli")) { + src <- file.path(weather_dir, ext) + if (file.exists(src)) { + file.copy(src, file.path(output_dir, ext), overwrite = TRUE) + } + } + + # Copy individual weather files listed in weather_file table + if (has_data(con, "weather_file")) { + wfiles <- query_db(con, "SELECT filename FROM weather_file") + for (wf in wfiles$filename) { + src <- file.path(weather_dir, wf) + if (file.exists(src)) { + file.copy(src, file.path(output_dir, wf), overwrite = TRUE) + } + } + } +} + +# =================================================================== +# file.cio writer (database-driven) +# =================================================================== + +#' Write file.cio (main SWAT+ configuration file) +#' +#' Database-driven version that reads the file_cio and +#' file_cio_classification tables to determine which files to include. +#' Falls back to a static template if these tables don't exist. +#' +#' @param con Database connection. +#' @param output_dir Output directory. +#' @param version Editor version. +#' @param swat_version SWAT+ version. +#' @param is_lte Logical. Is this an LTE project. +#' @param weather_data_format Character. Weather data format. +#' @keywords internal +write_file_cio <- function(con, output_dir, version = NULL, + swat_version = NULL, is_lte = FALSE, + weather_data_format = "observed") { + fp <- file.path(output_dir, "file.cio") + + # Try database-driven approach + if (has_data(con, "file_cio_classification") && has_data(con, "file_cio")) { + write_file_cio_from_db(con, fp, version, swat_version, + is_lte, weather_data_format) + } else { + write_file_cio_static(fp, version, swat_version) + } +} + +#' Write file.cio from database tables +#' @keywords internal +write_file_cio_from_db <- function(con, file_path, version, swat_version, + is_lte, weather_data_format) { + is_netcdf <- identical(weather_data_format, "netcdf") + classifications <- get_file_cio_conditions(con, is_lte, is_netcdf) + + classes <- query_db(con, + "SELECT * FROM file_cio_classification ORDER BY id") + files <- query_db(con, + "SELECT * FROM file_cio ORDER BY order_in_class") + + f <- file(file_path, "w") + on.exit(close(f)) + + writeLines(swat_meta_line(file_path, version, swat_version), f) + + for (ci in seq_len(nrow(classes))) { + cls <- classes[ci, ] + cls_name <- cls$name + conditions <- classifications[[cls_name]] + + line <- swat_string_pad(cls_name, align = "left") + + # Get files for this classification + cls_files <- files[files$classification_id == cls$id, ] + + if (nrow(cls_files) == 0) { + line <- paste0(line, swat_string_pad(SWAT_NULL_STR, align = "left")) + } else { + for (fi in seq_len(nrow(cls_files))) { + cf <- cls_files[fi, ] + order_idx <- cf$order_in_class + cond_met <- if (!is.null(conditions) && order_idx %in% names(conditions)) { + conditions[[as.character(order_idx)]] + } else if (!is.null(conditions) && order_idx <= length(conditions)) { + conditions[[order_idx]] + } else { + FALSE + } + + fname <- if (isTRUE(cond_met)) { + fn <- cf$default_file_name + if (is.null(fn) || is.na(fn) || fn == "") SWAT_NULL_STR else fn + } else { + SWAT_NULL_STR + } + + # NetCDF: replace weather-sta.cli with netcdf.ncw + if (is_netcdf && cls_name == "climate" && order_idx == 1) { + fname <- "netcdf.ncw" + } + + line <- paste0(line, swat_string_pad(fname, align = "left")) + } + } + + writeLines(line, f) + } + + # Ensure path entries appear even if missing from file_cio_classification in DB + # (rQSWATPlus may use an older database without these entries) + db_class_names <- classes$name + expected_paths <- c("pcp_path", "tmp_path", "slr_path", "hmd_path", "wnd_path", "out_path") + for (pn in expected_paths) { + if (!pn %in% db_class_names) { + writeLines(paste0(swat_string_pad(pn, align = "left"), + swat_string_pad(SWAT_NULL_STR, align = "left")), f) + } + } +} + +#' Get file.cio condition flags for each classification +#' @keywords internal +get_file_cio_conditions <- function(con, is_lte = FALSE, is_netcdf = FALSE) { + # Helper for safe count + sc <- function(tbl) safe_count(con, tbl) + + # Helper: count rows in weather_sta_cli where a column has a non-null file ref + sc_wsta <- function(col) { + tryCatch({ + r <- query_db(con, sprintf( + "SELECT COUNT(*) as cnt FROM weather_sta_cli WHERE %s IS NOT NULL AND %s NOT IN ('null', '')", + col, col)) + r$cnt[1] + }, error = function(e) 0L) + } + + # Per-file counts for decision tables + dtl_files <- tryCatch( + query_db(con, "SELECT DISTINCT file_name FROM d_table_dtl WHERE file_name IS NOT NULL")$file_name, + error = function(e) character(0)) + + gwflow_on <- tryCatch({ + cfg <- query_db(con, "SELECT * FROM codes_bsn LIMIT 1") + isTRUE(cfg$gwflow == 1) + }, error = function(e) FALSE) + + list( + simulation = list(TRUE, TRUE, sc("object_prt") > 0, TRUE, + sc("constituents_cs") > 0), + basin = list(sc("codes_bsn") > 0, sc("parameters_bsn") > 0), + climate = if (is_netcdf) { + list(TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, + sc("atmo_cli") > 0) + } else { + list(TRUE, TRUE, + sc_wsta("pet") > 0, # pet.cli + sc_wsta("pcp") > 0, # pcp.cli + sc_wsta("tmp") > 0, # tmp.cli + sc_wsta("slr") > 0, # slr.cli + sc_wsta("hmd") > 0, # hmd.cli + sc_wsta("wnd") > 0, # wnd.cli + sc("atmo_cli") > 0) # atmodep.cli + }, + connect = list( + sc("hru_con") > 0, sc("hru_lte_con") > 0, + sc("rout_unit_con") > 0, gwflow_on, + !gwflow_on && sc("aquifer_con") > 0, + sc("aquifer2d_con") > 0, sc("channel_con") > 0, + sc("reservoir_con") > 0, sc("recall_con") > 0, + sc("exco_con") > 0, sc("delratio_con") > 0, + sc("outlet_con") > 0, sc("chandeg_con") > 0), + channel = list( + sc("initial_cha") > 0, + FALSE, #!is_lte && sc("channel_cha") > 0, # standard only + FALSE, #!is_lte && sc("hydrology_cha") > 0, # standard only + FALSE, #!is_lte && sc("sediment_cha") > 0, # standard only + sc("nutrients_cha") > 0, + sc("channel_lte_cha") > 0, # lte only + sc("hyd_sed_lte_cha") > 0, # lte only + sc("temperature_cha") > 0), + reservoir = list( + sc("initial_res") > 0, sc("reservoir_res") > 0, + sc("hydrology_res") > 0, sc("sediment_res") > 0, + sc("nutrients_res") > 0, sc("weir_res") > 0, + sc("wetland_wet") > 0, sc("hydrology_wet") > 0), + routing_unit = list( + sc("rout_unit_ele") > 0, sc("rout_unit_ele") > 0, + sc("rout_unit_rtu") > 0, sc("rout_unit_dr") > 0), + hru = list(sc("hru_data_hru") > 0, sc("hru_lte_hru") > 0), + exco = list( + sc("exco_exc") > 0, sc("exco_om_exc") > 0, + sc("exco_pest_exc") > 0, sc("exco_path_exc") > 0, + sc("exco_hmet_exc") > 0, sc("exco_salt_exc") > 0), + recall = list(sc("recall_rec") > 0), + dr = list( + sc("delratio_del") > 0, sc("dr_om_del") > 0, + sc("dr_pest_del") > 0, sc("dr_path_del") > 0, + sc("dr_hmet_del") > 0, sc("dr_salt_del") > 0), + aquifer = list(sc("initial_aqu") > 0, sc("aquifer_aqu") > 0), + herd = list(sc("animal_hrd") > 0, sc("herd_hrd") > 0, sc("ranch_hrd") > 0), + water_rights = list(sc("water_allocation_wro") > 0, + sc("element_wro") > 0, sc("define_wro") > 0), + link = list(sc("chan_surf_lin") > 0, sc("chan_aqu_lin") > 0), + hydrology = list( + sc("hydrology_hyd") > 0, sc("topography_hyd") > 0, + sc("field_fld") > 0), + structural = list( + sc("tiledrain_str") > 0, sc("septic_str") > 0, + sc("filterstrip_str") > 0, sc("grassedww_str") > 0, + sc("bmpuser_str") > 0), + hru_parm_db = list( + sc("plants_plt") > 0, sc("fertilizer_frt") > 0, + sc("tillage_til") > 0, sc("pesticide_pst") > 0, + sc("pathogens_pth") > 0, sc("metals_mtl") > 0, + sc("salts_slt") > 0, sc("urban_urb") > 0, + sc("septic_sep") > 0, sc("snow_sno") > 0), + ops = list( + sc("harv_ops") > 0, sc("graze_ops") > 0, sc("irr_ops") > 0, + sc("chem_app_ops") > 0, sc("fire_ops") > 0, sc("sweep_ops") > 0), + lum = list( + sc("landuse_lum") > 0, sc("management_sch") > 0, + sc("cntable_lum") > 0, sc("cons_prac_lum") > 0, + sc("ovn_table_lum") > 0), + chg = list( + sc("cal_parms_cal") > 0, sc("calibration_cal") > 0, + sc("codes_sft") > 0, sc("wb_parms_sft") > 0, + sc("water_balance_sft") > 0, sc("ch_sed_budget_sft") > 0, + sc("ch_sed_parms_sft") > 0, sc("plant_parms_sft") > 0, + sc("plant_gro_sft") > 0), + init = list( + sc("plant_ini") > 0, sc("soil_plant_ini") > 0, + sc("om_water_ini") > 0, sc("pest_hru_ini") > 0, + sc("pest_water_ini") > 0, sc("path_hru_ini") > 0, + sc("path_water_ini") > 0, sc("hmet_hru_ini") > 0, + sc("hmet_water_ini") > 0, sc("salt_hru_ini") > 0, + sc("salt_water_ini") > 0), + soils = list( + !is_lte && sc("soils_sol") > 0, + sc("nutrients_sol") > 0, + is_lte && sc("soils_lte_sol") > 0), + decision_table = list( + "lum.dtl" %in% dtl_files, # lum.dtl + "res_rel.dtl" %in% dtl_files, # res_rel.dtl + "scen_lu.dtl" %in% dtl_files, # scen_lu.dtl + "flo_con.dtl" %in% dtl_files), # flo_con.dtl + regions = list( + sc("ls_unit_ele") > 0, sc("ls_unit_def") > 0, + sc("ls_reg_ele") > 0, sc("ls_reg_def") > 0, FALSE, + sc("ch_catunit_ele") > 0, sc("ch_catunit_def") > 0, + sc("ch_reg_def") > 0, sc("aquifer_con") > 0, + sc("aqu_catunit_def") > 0, sc("aqu_reg_def") > 0, + sc("res_catunit_ele") > 0, sc("res_catunit_def") > 0, + sc("res_reg_def") > 0, sc("rec_catunit_ele") > 0, + sc("rec_catunit_def") > 0, sc("rec_reg_def") > 0), + pcp_path = list(TRUE), + tmp_path = list(TRUE), + slr_path = list(TRUE), + hmd_path = list(TRUE), + wnd_path = list(TRUE), + out_path = list(TRUE) + ) +} + +#' Write static file.cio as fallback +#' @keywords internal +write_file_cio_static <- function(file_path, version = NULL, + swat_version = NULL) { + f <- file(file_path, "w") + on.exit(close(f)) + + writeLines(swat_meta_line(file_path, version, swat_version), f) + + sections <- c( + "simulation", "basin", "climate", "connect", "channel", "reservoir", + "routing_unit", "hru", "exco", "recall", "dr", "aquifer", "hrd", + "water_rights", "link", "hydrology", "structural", "hru_parm_db", + "ops", "lum", "chg", "init", "soils", "decision_table", "regions" + ) + + for (sec in sections) { + writeLines(paste0(swat_string_pad(sec, align = "left"), + swat_string_pad(SWAT_NULL_STR, align = "left")), f) + } +} + +# =================================================================== +# gwflow module support +# =================================================================== + +#' Check if gwflow module is active +#' @param con Database connection. +#' @return Logical. TRUE if gwflow_base table exists and has data, +#' AND project_config.use_gwflow is enabled. +#' @keywords internal +gwflow_exists <- function(con) { + use_gw <- tryCatch({ + cfg <- query_db(con, "SELECT use_gwflow FROM project_config LIMIT 1") + isTRUE(cfg$use_gwflow == 1) + }, error = function(e) FALSE) + + if (!use_gw) return(FALSE) + has_data(con, "gwflow_base") +} + +#' Update codes_bsn gwflow flag +#' +#' Sets codes_bsn.gwflow = 1 if gwflow module is active, 0 otherwise. +#' Matches Python gwflow_writer.update_codes_bsn(). +#' @param con Database connection. +#' @keywords internal +update_gwflow_codes_bsn <- function(con) { + if (!has_data(con, "codes_bsn")) return(invisible(NULL)) + + # Ensure gwflow column exists (older databases may lack it; mirrors Python + # update_project.py migrator.add_column('codes_bsn', 'gwflow', ...)) + cols <- DBI::dbListFields(con, "codes_bsn") + if (!"gwflow" %in% cols) { + tryCatch( + execute_db(con, "ALTER TABLE codes_bsn ADD COLUMN gwflow INTEGER DEFAULT 0"), + error = function(e) invisible(NULL)) + } + + gw_flag <- if (gwflow_exists(con)) 1L else 0L + tryCatch( + execute_db(con, "UPDATE codes_bsn SET gwflow = ?", params = list(gw_flag)), + error = function(e) invisible(NULL) + ) +} + +#' Write all gwflow module files +#' +#' Writes the gwflow input files when gwflow_base exists. This mirrors +#' the Python \code{Gwflow_files.write()} method. +#' +#' @param con Database connection. +#' @param output_dir Output directory. +#' @param version Editor version string. +#' @param swat_version SWAT+ version string. +#' @keywords internal +write_gwflow_files <- function(con, output_dir, version = NULL, + swat_version = NULL) { + write_gwflow_input(con, output_dir, version, swat_version) + write_gwflow_chancells(con, output_dir, version, swat_version) + write_gwflow_hrucell(con, output_dir, version, swat_version) + write_gwflow_lsucell(con, output_dir, version, swat_version) + write_gwflow_rescells(con, output_dir, version, swat_version) + write_gwflow_floodplain(con, output_dir, version, swat_version) + write_gwflow_wetland(con, output_dir, version, swat_version) + write_gwflow_tiles(con, output_dir, version, swat_version) + write_gwflow_solutes(con, output_dir, version, swat_version) +} + +#' Build grid index mapping cell_id -> cell data +#' @keywords internal +gwflow_grid_index <- function(con) { + base <- query_db(con, "SELECT * FROM gwflow_base LIMIT 1") + total_cells <- base$row_count * base$col_count + + grid <- tryCatch( + query_db(con, "SELECT * FROM gwflow_grid ORDER BY cell_id"), + error = function(e) data.frame() + ) + + # Build lookup: cell_id -> row (or NULL) + grid_map <- list() + if (nrow(grid) > 0) { + for (i in seq_len(nrow(grid))) { + grid_map[[as.character(grid$cell_id[i])]] <- grid[i, ] + } + } + + list(base = base, total_cells = total_cells, grid_map = grid_map) +} + +#' Write gwflow.input file +#' @keywords internal +write_gwflow_input <- function(con, output_dir, version, swat_version) { + if (!has_data(con, "gwflow_base")) return(invisible(NULL)) + + gw <- gwflow_grid_index(con) + base <- gw$base + fp <- file.path(output_dir, "gwflow.input") + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(paste0(" INPUT FOR GWFLOW MODULE ", + swat_meta_line(fp, version, swat_version)), f) + + writeLines(" Basic information", f) + writeLines(" structured", f) + writeLines(paste0(" ", formatC(base$cell_size, format = "f", digits = 1, width = 12), + " cell size (m)"), f) + writeLines(paste0(" ", base$row_count, " ", base$col_count, + " number of rows, number of columns"), f) + writeLines(paste0(" ", formatC(base$boundary_conditions, format = "f", digits = 0, width = 12), + " boundary condition type (1=constant head; 2=no-flow)"), f) + writeLines(paste0(" ", formatC(base$recharge, format = "f", digits = 0, width = 12), + " recharge connection type (1=HRU-cell; 2=LSU-cell)"), f) + writeLines(paste0(" ", formatC(base$soil_transfer, format = "f", digits = 0, width = 12), + " groundwater-->soil transfer (0=off; 1=on)"), f) + writeLines(paste0(" ", formatC(base$saturation_excess, format = "f", digits = 0, width = 12), + " groundwater saturation excess flow (0=off; 1=on)"), f) + writeLines(paste0(" ", formatC(base$external_pumping, format = "f", digits = 0, width = 12), + " external groundwater pumping (0=off; 1=on)"), f) + writeLines(paste0(" ", formatC(base$tile_drainage, format = "f", digits = 0, width = 12), + " groundwater tile drainage (0=off; 1=on)"), f) + writeLines(paste0(" ", formatC(base$reservoir_exchange, format = "f", digits = 0, width = 12), + " groundwater-reservoir exchange (0=off; 1=on)"), f) + writeLines(paste0(" ", formatC(base$wetland_exchange, format = "f", digits = 0, width = 12), + " groundwater-wetland exchange (0=off; 1=on)"), f) + writeLines(paste0(" ", formatC(base$floodplain_exchange, format = "f", digits = 0, width = 12), + " groundwater-floodplain exchange (0=off; 1=on)"), f) + writeLines(paste0(" ", formatC(base$canal_seepage, format = "f", digits = 0, width = 12), + " canal seepage to groundwater (0=off; 1=on)"), f) + writeLines(paste0(" ", formatC(base$solute_transport, format = "f", digits = 0, width = 12), + " groundwater solute transport (0=off; 1=on)"), f) + writeLines(paste0(" ", formatC(base$timestep_balance, format = "f", digits = 2, width = 12), + " time step (days)"), f) + writeLines(paste0(" ", base$daily_output, " ", base$annual_output, " ", base$aa_output, + " write flags (daily, annual, avg. annual)"), f) + writeLines(paste0(" ", formatC(1, format = "f", digits = 0, width = 12), + " number of columns in output files"), f) + + # Aquifer zones + zones <- tryCatch( + query_db(con, "SELECT * FROM gwflow_zone ORDER BY zone_id"), + error = function(e) data.frame() + ) + zone_cnt <- nrow(zones) + zone_id_index <- list() + if (zone_cnt > 0) { + for (i in seq_len(zone_cnt)) { + zone_id_index[[as.character(zones$zone_id[i])]] <- i + } + } + + writeLines(" Aquifer and Streambed Parameter Zones", f) + + writeLines(" Aquifer Hydraulic Conductivity (m/day) Zones", f) + writeLines(paste0(" ", zone_cnt), f) + for (i in seq_len(zone_cnt)) { + writeLines(paste0(i, "\t", format(zones$aquifer_k[i], nsmall = 4)), f) + } + + writeLines(" Aquifer Specific Yield Zones", f) + writeLines(paste0(" ", zone_cnt), f) + for (i in seq_len(zone_cnt)) { + writeLines(paste0(i, "\t", format(zones$specific_yield[i], nsmall = 4)), f) + } + + writeLines(" Streambed Hydraulic Conductivity (m/day) Zones", f) + writeLines(paste0(" ", zone_cnt), f) + for (i in seq_len(zone_cnt)) { + writeLines(paste0(i, "\t", format(zones$streambed_k[i], nsmall = 4)), f) + } + + writeLines(" Streambed Thickness (m) Zones", f) + writeLines(paste0(" ", zone_cnt), f) + for (i in seq_len(zone_cnt)) { + writeLines(paste0(i, "\t", format(zones$streambed_thickness[i], nsmall = 4)), f) + } + + # Grid cell information + writeLines(" Grid Cell Information", f) + + status_lines <- "Cell Status (0=inactive; 1=active; 2=boundary)\n" + elevation_lines <- "Ground Surface Elevation (m)\n" + thickness_lines <- "Aquifer Thickness(m)\n" + zone_k_lines <- "Hydraulic conductivity zone\n" + zone_yld_lines <- "Specific yield zone\n" + recharge_lines <- "Recharge delay(Days)\n" + et_lines <- "Groundwater ET Extinction Depth (m)\t\n" + init_head_lines <- "Initial Groundwater Head (m)\n" + + col_count <- base$col_count + col <- 1 + for (cell_id in seq_len(gw$total_cells)) { + if (col == col_count + 1) { + status_lines <- paste0(status_lines, "\n") + elevation_lines <- paste0(elevation_lines, "\n") + thickness_lines <- paste0(thickness_lines, "\n") + zone_k_lines <- paste0(zone_k_lines, "\n") + zone_yld_lines <- paste0(zone_yld_lines, "\n") + recharge_lines <- paste0(recharge_lines, "\n") + et_lines <- paste0(et_lines, "\n") + init_head_lines <- paste0(init_head_lines, "\n") + col <- 1 + } + + cell <- gw$grid_map[[as.character(cell_id)]] + if (is.null(cell)) { + status_lines <- paste0(status_lines, "0\t") + elevation_lines <- paste0(elevation_lines, "0.00\t") + thickness_lines <- paste0(thickness_lines, "0.00\t") + zone_k_lines <- paste0(zone_k_lines, "0\t") + zone_yld_lines <- paste0(zone_yld_lines, "0\t") + recharge_lines <- paste0(recharge_lines, + formatC(base$recharge_delay, format = "f", digits = 2), "\t") + et_lines <- paste0(et_lines, "0.00\t") + init_head_lines <- paste0(init_head_lines, "0.00\t") + } else { + zone_idx <- zone_id_index[[as.character(cell$zone)]] + if (is.null(zone_idx)) zone_idx <- 0L + status_lines <- paste0(status_lines, cell$status, "\t") + elevation_lines <- paste0(elevation_lines, + formatC(cell$elevation, format = "f", digits = 2), "\t") + thickness_lines <- paste0(thickness_lines, + formatC(cell$aquifer_thickness, format = "f", digits = 2), "\t") + zone_k_lines <- paste0(zone_k_lines, zone_idx, "\t") + zone_yld_lines <- paste0(zone_yld_lines, zone_idx, "\t") + recharge_lines <- paste0(recharge_lines, + formatC(base$recharge_delay, format = "f", digits = 2), "\t") + et_lines <- paste0(et_lines, + formatC(cell$extinction_depth, format = "f", digits = 2), "\t") + init_head_lines <- paste0(init_head_lines, + formatC(cell$initial_head, format = "f", digits = 2), "\t") + } + col <- col + 1 + } + if (!endsWith(status_lines, "\n")) { + status_lines <- paste0(status_lines, "\n") + elevation_lines <- paste0(elevation_lines, "\n") + thickness_lines <- paste0(thickness_lines, "\n") + zone_k_lines <- paste0(zone_k_lines, "\n") + zone_yld_lines <- paste0(zone_yld_lines, "\n") + recharge_lines <- paste0(recharge_lines, "\n") + et_lines <- paste0(et_lines, "\n") + init_head_lines <- paste0(init_head_lines, "\n") + } + + cat(status_lines, file = f) + cat(elevation_lines, file = f) + cat(thickness_lines, file = f) + cat(zone_k_lines, file = f) + cat(zone_yld_lines, file = f) + cat(recharge_lines, file = f) + cat(et_lines, file = f) + cat(init_head_lines, file = f) + + # Output days + writeLines(" Times for Groundwater Head Output", f) + out_days <- tryCatch( + query_db(con, "SELECT * FROM gwflow_out_days ORDER BY year, jday"), + error = function(e) data.frame() + ) + writeLines(paste0("\t\t", nrow(out_days)), f) + if (nrow(out_days) > 0) { + for (i in seq_len(nrow(out_days))) { + writeLines(paste0(swat_int_pad(out_days$year[i]), " ", + swat_int_pad(out_days$jday[i])), f) + } + } + + # Observation locations + writeLines(" Groundwater Observation Locations", f) + obs_locs <- tryCatch( + query_db(con, "SELECT * FROM gwflow_obs_locs"), + error = function(e) data.frame() + ) + writeLines(paste0("\t\t", nrow(obs_locs)), f) + if (nrow(obs_locs) > 0) { + for (i in seq_len(nrow(obs_locs))) { + writeLines(as.character(obs_locs$cell_id[i]), f) + } + } + + # Daily output cell + writeLines(" Cell for detailed daily sources/sink output", f) + row_det <- base$daily_output_row + col_det <- base$daily_output_col + cell_det <- 0L + if (!is.null(row_det) && !is.null(col_det) && row_det > 0 && col_det > 0) { + cell_det <- (row_det - 1L) * col_count + col_det + } + writeLines(paste0(" ", cell_det), f) + + # River cell information + writeLines(" River Cell Information", f) + writeLines(paste0(" ", formatC(base$river_depth, format = "f", digits = 2)), f) +} + +#' Write gwflow.chancells file +#' @keywords internal +write_gwflow_chancells <- function(con, output_dir, version, swat_version) { + if (!has_data(con, "gwflow_rivcell")) return(invisible(NULL)) + + fp <- file.path(output_dir, "gwflow.chancells") + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(paste0(" Cell-Channel Connection Information ", + swat_meta_line(fp, version, swat_version)), f) + writeLines("", f) + + # Header + writeLines(paste0( + swat_int_pad("ID"), + swat_num_pad("elev_m"), + swat_int_pad("channel"), + swat_num_pad("riv_length_m"), + swat_int_pad("zone") + ), f) + writeLines("", f) + + # Build channel GIS-to-con index + chan_idx <- gwflow_gis_to_con_index(con, "chandeg_con") + + cells <- tryCatch( + query_db(con, + "SELECT r.cell_id, g.elevation, r.channel, r.length_m, g.zone + FROM gwflow_rivcell r + JOIN gwflow_grid g ON r.cell_id = g.cell_id + ORDER BY r.cell_id"), + error = function(e) data.frame() + ) + for (i in seq_len(nrow(cells))) { + row <- cells[i, ] + chan_con <- chan_idx[[as.character(row$channel)]] + if (is.null(chan_con)) chan_con <- 0L + writeLines(paste0( + swat_int_pad(row$cell_id), + swat_num_pad(row$elevation, decimals = 2), + swat_int_pad(chan_con), + swat_num_pad(row$length_m, decimals = 2), + swat_int_pad(row$zone) + ), f) + } +} + +#' Write gwflow.hrucell and gwflow.cellhru files +#' @keywords internal +write_gwflow_hrucell <- function(con, output_dir, version, swat_version) { + if (!has_data(con, "gwflow_hrucell")) return(invisible(NULL)) + + base <- query_db(con, "SELECT * FROM gwflow_base LIMIT 1") + recharge_type <- base$recharge + if (!(recharge_type %in% c(1, 3))) return(invisible(NULL)) + + hru_idx <- gwflow_gis_to_con_index(con, "hru_con") + + cells <- tryCatch( + query_db(con, + "SELECT h.cell_id, h.hru, h.area_m2, + g.elevation, COALESCE(gis.arslp, 0) as arslp + FROM gwflow_hrucell h + JOIN gwflow_grid g ON h.cell_id = g.cell_id + LEFT JOIN gis_hrus gis ON h.hru = gis.id + ORDER BY h.hru, h.cell_id"), + error = function(e) data.frame() + ) + if (nrow(cells) == 0) return(invisible(NULL)) + + # gwflow.hrucell + fp1 <- file.path(output_dir, "gwflow.hrucell") + f1 <- file(fp1, "w") + on.exit(close(f1), add = TRUE) + + writeLines(paste0(" HRU-Cell Connection Information ", + swat_meta_line(fp1, version, swat_version)), f1) + writeLines("", f1) + writeLines(" HRUs that are connected to cells", f1) + + hru_ids <- sort(unique(cells$hru)) + writeLines(as.character(length(hru_ids)), f1) + for (hid in hru_ids) { + hcon <- hru_idx[[as.character(hid)]] + if (is.null(hcon)) hcon <- 0L + writeLines(as.character(hcon), f1) + } + writeLines("", f1) + + writeLines(paste0( + swat_int_pad("hru"), + swat_num_pad("area_m2"), + swat_int_pad("cell_id"), + swat_num_pad("overlap_m2") + ), f1) + writeLines("", f1) + + for (i in seq_len(nrow(cells))) { + row <- cells[i, ] + hcon <- hru_idx[[as.character(row$hru)]] + if (is.null(hcon)) hcon <- 0L + writeLines(paste0( + swat_int_pad(hcon), + swat_num_pad(row$arslp * 10000, decimals = 2), + swat_int_pad(row$cell_id), + swat_num_pad(row$area_m2, decimals = 2) + ), f1) + } + + # gwflow.cellhru + fp2 <- file.path(output_dir, "gwflow.cellhru") + f2 <- file(fp2, "w") + on.exit(close(f2), add = TRUE) + + writeLines(paste0(" Cell-HRU Connection Information ", + swat_meta_line(fp2, version, swat_version)), f2) + writeLines("", f2) + + num_intersect <- length(unique(cells$cell_id)) + writeLines(paste0(num_intersect, "\t\t\tNumber of cells that intersect HRUs"), f2) + + writeLines(paste0( + swat_int_pad("cell_id"), + swat_int_pad("hru"), + swat_num_pad("cell_area"), + swat_num_pad("overlap_m2") + ), f2) + writeLines("", f2) + + cell_area <- base$cell_size * base$cell_size + cells_by_cell <- cells[order(cells$cell_id), ] + for (i in seq_len(nrow(cells_by_cell))) { + row <- cells_by_cell[i, ] + hcon <- hru_idx[[as.character(row$hru)]] + if (is.null(hcon)) hcon <- 0L + writeLines(paste0( + swat_int_pad(row$cell_id), + swat_int_pad(hcon), + swat_num_pad(cell_area, decimals = 2), + swat_num_pad(row$area_m2, decimals = 2) + ), f2) + } +} + +#' Write gwflow.lsucell file +#' @keywords internal +write_gwflow_lsucell <- function(con, output_dir, version, swat_version) { + if (!has_data(con, "gwflow_lsucell")) return(invisible(NULL)) + + base <- query_db(con, "SELECT * FROM gwflow_base LIMIT 1") + if (!(base$recharge %in% c(2, 3))) return(invisible(NULL)) + + lsu_idx <- gwflow_gis_to_con_index(con, "rout_unit_con") + + cells <- tryCatch( + query_db(con, + "SELECT l.cell_id, l.lsu, l.area_m2, + COALESCE(gis.area, 0) as lsu_area + FROM gwflow_lsucell l + LEFT JOIN gis_lsus gis ON l.lsu = gis.id + ORDER BY l.cell_id"), + error = function(e) data.frame() + ) + if (nrow(cells) == 0) return(invisible(NULL)) + + fp <- file.path(output_dir, "gwflow.lsucell") + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(paste0(" LSU (landscape unit) - Cell Connection Information ", + swat_meta_line(fp, version, swat_version)), f) + + total_lsu <- safe_count(con, "gis_lsus") + unique_lsu <- sort(unique(cells$lsu)) + writeLines(paste0(total_lsu, "\t\t total number of landscape units in model"), f) + writeLines(paste0(length(unique_lsu), + "\t\t number of landscape units connected to grid cells"), f) + for (lid in unique_lsu) { + lcon <- lsu_idx[[as.character(lid)]] + if (is.null(lcon)) lcon <- 0L + writeLines(as.character(lcon), f) + } + writeLines("", f) + + writeLines("connection information between landscape units and grid cells", f) + writeLines(paste0( + swat_int_pad("lsu_id"), + swat_num_pad("lsu_area_m2"), + swat_int_pad("cell_id"), + swat_num_pad("area_m2") + ), f) + writeLines("", f) + + for (i in seq_len(nrow(cells))) { + row <- cells[i, ] + lcon <- lsu_idx[[as.character(row$lsu)]] + if (is.null(lcon)) lcon <- 0L + writeLines(paste0( + swat_int_pad(lcon), + swat_num_pad(row$lsu_area * 10000, decimals = 2), + swat_int_pad(row$cell_id), + swat_num_pad(row$area_m2, decimals = 2) + ), f) + } +} + +#' Write gwflow.rescells file +#' @keywords internal +write_gwflow_rescells <- function(con, output_dir, version, swat_version) { + if (!has_data(con, "gwflow_rescell")) return(invisible(NULL)) + + base <- query_db(con, "SELECT * FROM gwflow_base LIMIT 1") + if (!isTRUE(base$reservoir_exchange == 1)) return(invisible(NULL)) + + res_idx <- gwflow_gis_to_con_index(con, "reservoir_con") + + cells <- tryCatch( + query_db(con, + "SELECT r.cell_id, r.res_id, r.res_stage + FROM gwflow_rescell r + JOIN gwflow_grid g ON r.cell_id = g.cell_id + ORDER BY r.cell_id"), + error = function(e) data.frame() + ) + if (nrow(cells) == 0) return(invisible(NULL)) + + fp <- file.path(output_dir, "gwflow.rescells") + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(paste0(" Cell-Reservoir Connection Information ", + swat_meta_line(fp, version, swat_version)), f) + writeLines(" Reservoir bed parameters", f) + writeLines(paste0(" ", base$resbed_thickness, "\t\t bed thickness (m)"), f) + writeLines(paste0(" ", base$resbed_k, "\t\t bed conductivity (m/day)"), f) + writeLines(paste0(" ", nrow(cells), + "\t\t number of cells connected to reservoirs"), f) + + writeLines(paste0( + swat_int_pad("cell_id"), + swat_int_pad("res_id"), + swat_num_pad("res_stage_m") + ), f) + writeLines("", f) + + for (i in seq_len(nrow(cells))) { + row <- cells[i, ] + rcon <- res_idx[[as.character(row$res_id)]] + if (is.null(rcon)) rcon <- 0L + writeLines(paste0( + swat_int_pad(row$cell_id), + swat_int_pad(rcon), + swat_num_pad(row$res_stage, decimals = 2) + ), f) + } +} + +#' Write gwflow.floodplain file +#' @keywords internal +write_gwflow_floodplain <- function(con, output_dir, version, swat_version) { + if (!has_data(con, "gwflow_fpcell")) return(invisible(NULL)) + + base <- query_db(con, "SELECT * FROM gwflow_base LIMIT 1") + if (!isTRUE(base$floodplain_exchange == 1)) return(invisible(NULL)) + + chan_idx <- gwflow_gis_to_con_index(con, "chandeg_con") + + cells <- tryCatch( + query_db(con, + "SELECT f.cell_id, f.channel_id, f.area_m2 + FROM gwflow_fpcell f + JOIN gwflow_grid g ON f.cell_id = g.cell_id + ORDER BY f.cell_id"), + error = function(e) data.frame() + ) + if (nrow(cells) == 0) return(invisible(NULL)) + + fp <- file.path(output_dir, "gwflow.floodplain") + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(paste0( + "gwflow floodplain cells (optional file; list cells that interact with channels, ", + "when channel water is in the floodplain) ", + swat_meta_line(fp, version, swat_version)), f) + + # Filter to valid channel connections + valid_lines <- character(0) + for (i in seq_len(nrow(cells))) { + row <- cells[i, ] + ccon <- chan_idx[[as.character(row$channel_id)]] + if (is.null(ccon)) next + valid_lines <- c(valid_lines, paste0( + swat_int_pad(row$cell_id), + swat_int_pad(ccon), + swat_num_pad(0, decimals = 4), + swat_num_pad(row$area_m2, decimals = 2) + )) + } + + writeLines(paste0(length(valid_lines), + "\t\t\t\t\tNumber of floodplain cells"), f) + writeLines(paste0( + swat_int_pad("cell_id"), + swat_int_pad("chan_id"), + swat_num_pad("fp_K"), + swat_num_pad("area_m2") + ), f) + writeLines("", f) + for (line in valid_lines) writeLines(line, f) +} + +#' Write gwflow.wetland file +#' @keywords internal +write_gwflow_wetland <- function(con, output_dir, version, swat_version) { + base <- tryCatch( + query_db(con, "SELECT * FROM gwflow_base LIMIT 1"), + error = function(e) data.frame() + ) + if (nrow(base) == 0 || !isTRUE(base$wetland_exchange == 1)) + return(invisible(NULL)) + + fp <- file.path(output_dir, "gwflow.wetland") + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(paste0("gwflow.wetland: parameters for groundwater-wetland interactions ", + swat_meta_line(fp, version, swat_version)), f) + writeLines("wet_id = same as id listed in wetland.wet", f) + writeLines("thick_m = thickness (in meters) of wetland bottom material", f) + writeLines("(hydraulic conductivity is listed in hydrology.wet)", f) + + writeLines(paste0(swat_int_pad("wet_id"), swat_num_pad("thick_m")), f) + writeLines("", f) + + wet_thick <- list() + if (has_data(con, "gwflow_wetland")) { + wt <- query_db(con, "SELECT wet_id, thickness FROM gwflow_wetland ORDER BY wet_id") + for (i in seq_len(nrow(wt))) { + wet_thick[[as.character(wt$wet_id[i])]] <- wt$thickness[i] + } + } + + if (has_data(con, "wetland_wet")) { + wets <- query_db(con, "SELECT id FROM wetland_wet ORDER BY id") + default_thick <- base$wet_thickness + for (i in seq_len(nrow(wets))) { + wid <- wets$id[i] + thick <- wet_thick[[as.character(wid)]] + if (is.null(thick)) thick <- default_thick + writeLines(paste0( + swat_int_pad(wid), + swat_num_pad(thick, decimals = 2) + ), f) + } + } +} + +#' Write gwflow.tiles file +#' @keywords internal +write_gwflow_tiles <- function(con, output_dir, version, swat_version) { + base <- tryCatch( + query_db(con, "SELECT * FROM gwflow_base LIMIT 1"), + error = function(e) data.frame() + ) + if (nrow(base) == 0 || !isTRUE(base$tile_drainage == 1)) + return(invisible(NULL)) + + gw <- gwflow_grid_index(con) + fp <- file.path(output_dir, "gwflow.tiles") + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(paste0("gwflow tile drain information ", + swat_meta_line(fp, version, swat_version)), f) + writeLines(paste0(" ", swat_num_pad(base$tile_depth, decimals = 5), + "\t\t Depth (m) of tiles below ground surface"), f) + writeLines(paste0(" ", swat_num_pad(base$tile_area, decimals = 5), + "\t\t Area (m2) of groundwater inflow * flow length"), f) + writeLines(paste0(" ", swat_num_pad(base$tile_k, decimals = 5), + "\t\t Hydraulic conductivity (m/day) of the drain perimeter"), f) + tile_groups <- if (!is.null(base$tile_groups)) base$tile_groups else 0L + writeLines(paste0(" ", swat_int_pad(tile_groups, pad = SWAT_NUM_PAD), + "\t\t Tile cell groups (flag: 0=no; 1=yes)"), f) + + status_lines <- "gwflow tile cells (0=no tile; 1=tiles are present)\n" + col_count <- base$col_count + col <- 1 + for (cell_id in seq_len(gw$total_cells)) { + if (col == col_count + 1) { + status_lines <- paste0(status_lines, "\n") + col <- 1 + } + cell <- gw$grid_map[[as.character(cell_id)]] + tile_val <- if (is.null(cell) || is.null(cell$tile)) 0L else cell$tile + status_lines <- paste0(status_lines, tile_val, "\t") + col <- col + 1 + } + if (!endsWith(status_lines, "\n")) { + status_lines <- paste0(status_lines, "\n") + } + cat(status_lines, file = f) +} + +#' Write gwflow.solutes file +#' @keywords internal +write_gwflow_solutes <- function(con, output_dir, version, swat_version) { + base <- tryCatch( + query_db(con, "SELECT * FROM gwflow_base LIMIT 1"), + error = function(e) data.frame() + ) + if (nrow(base) == 0 || !isTRUE(base$solute_transport == 1)) + return(invisible(NULL)) + + if (!has_data(con, "gwflow_solutes")) return(invisible(NULL)) + + fp <- file.path(output_dir, "gwflow.solutes") + f <- file(fp, "w") + on.exit(close(f)) + + writeLines(paste0("solute parameters and initial concentrations ", + swat_meta_line(fp, version, swat_version)), f) + writeLines("general parameters", f) + writeLines(paste0(" ", base$transport_steps, + "\t\t number of transport time steps for flow time step"), f) + writeLines(paste0(" ", base$disp_coef, + "\t\t dispersion coefficient (m2/day)"), f) + + writeLines("solute parameters: name,sorption,rate constant,canal_irrig (one row per active solute)", f) + + solutes <- query_db(con, "SELECT * FROM gwflow_solutes") + for (i in seq_len(nrow(solutes))) { + sol <- solutes[i, ] + writeLines(paste0( + swat_string_pad(sol$solute_name, pad = 8, align = "left"), + swat_num_pad(sol$sorption, decimals = 2), + swat_num_pad(sol$rate_const, decimals = 4), + swat_num_pad(sol$canal_irr, decimals = 2) + ), f) + } + + writeLines("initial concentrations (g/m3)", f) + for (i in seq_len(nrow(solutes))) { + sol <- solutes[i, ] + writeLines(sol$solute_name, f) + writeLines(sol$init_data, f) + if (identical(sol$init_data, "single")) { + writeLines(formatC(sol$init_conc, format = "f", digits = 2), f) + } else { + gw <- gwflow_grid_index(con) + solute_col <- paste0("init_", + if (sol$solute_name == "no3-n") "no3" else sol$solute_name) + grid_text <- gwflow_write_grid_column(con, gw, solute_col) + cat(grid_text, file = f) + } + } +} + +#' Build GIS ID to connection index mapping +#' @keywords internal +gwflow_gis_to_con_index <- function(con, con_table) { + idx <- list() + rows <- tryCatch( + query_db(con, paste0("SELECT id, gis_id FROM ", con_table, " ORDER BY id")), + error = function(e) data.frame() + ) + if (nrow(rows) > 0) { + for (i in seq_len(nrow(rows))) { + idx[[as.character(rows$gis_id[i])]] <- i + } + } + idx +} + +#' Write a grid column for gwflow_init_conc +#' @keywords internal +gwflow_write_grid_column <- function(con, gw, column_name) { + conc_data <- tryCatch( + query_db(con, paste0("SELECT cell_id, ", column_name, + " FROM gwflow_init_conc ORDER BY cell_id")), + error = function(e) data.frame() + ) + + conc_map <- list() + if (nrow(conc_data) > 0) { + for (i in seq_len(nrow(conc_data))) { + conc_map[[as.character(conc_data$cell_id[i])]] <- conc_data[[column_name]][i] + } + } + + result <- "" + base <- gw$base + col <- 1 + for (cell_id in seq_len(gw$total_cells)) { + if (col == base$col_count + 1) { + result <- paste0(result, "\n") + col <- 1 + } + val <- conc_map[[as.character(cell_id)]] + if (is.null(val)) val <- 0 + result <- paste0(result, formatC(val, format = "f", digits = 2), "\t") + col <- col + 1 + } + if (!endsWith(result, "\n")) result <- paste0(result, "\n") + result +} diff --git a/src/r-api/swatplusEditoR/README.md b/src/r-api/swatplusEditoR/README.md new file mode 100644 index 00000000..9330225d --- /dev/null +++ b/src/r-api/swatplusEditoR/README.md @@ -0,0 +1,184 @@ +# swatplusEditoR + +R interface to the SWAT+ Editor project database. Provides direct SQLite +access for managing weather stations, updating model parameters, configuring +groundwater flow (GWFLOW), and writing SWAT+ model configuration files. + +## Installation + +```r +# Install from source +devtools::install("src/r-api/swatplusEditoR") + +# Or using remotes +remotes::install_local("src/r-api/swatplusEditoR") +``` + +## Quick Start + +```r +library(swatplusEditoR) + +# Create a project object (from your GIS/delineation workflow) +project <- list( + project_dir = normalizePath("/path/to/project"), + dem_file = normalizePath("/path/to/dem.tif"), + landuse_file = normalizePath("/path/to/landuse.tif"), + soil_file = normalizePath("/path/to/soil.tif"), + landuse_lookup = normalizePath("/path/to/lu_lookup.csv"), + soil_lookup = normalizePath("/path/to/soil_lookup.csv"), + outlet_file = NULL, + crs = "EPSG:2193", + units = "metric", + cell_size = c(30, 30), + extent = c(0, 100, 0, 100), + nrow = 100, + ncol = 100, + # Files populated during delineation + fel_file = NULL, p_file = NULL, sd8_file = NULL, + slp_file = NULL, ang_file = NULL, ad8_file = NULL, + sca_file = NULL, src_stream_file = NULL, + src_channel_file = NULL, ord_file = NULL, + tree_file = NULL, coord_file = NULL, + stream_file = NULL, watershed_file = NULL, + # HRU results + hru_data = NULL, + basin_data = NULL, + stream_threshold = NULL, + channel_threshold = NULL, + # Database file + db_file = NULL +) + +# Step 1: Create the project database +project <- create_project_db(project, "/path/to/project/swatplus.sqlite") + +# Step 2: Load and validate the project +project <- load_project(project) + +# Step 3: Read GIS data +gis <- read_gis_data(project) +subbasins <- read_gis_subbasins(project) +channels <- read_gis_channels(project) +hrus <- read_gis_hrus(project) + +# Step 4: Add weather station data +stations <- data.frame( + name = c("station1", "station2"), + lat = c(-38.1, -38.2), + lon = c(176.3, 176.4), + pcp = c("pcp1.cli", "pcp2.cli"), + tmp = c("tmp1.cli", "tmp2.cli"), + slr = c("slr1.cli", "slr2.cli"), + hmd = c("hmd1.cli", "hmd2.cli"), + wnd = c("wnd1.cli", "wnd2.cli"), + pet = c("pet1.cli", "pet2.cli"), + atmo_dep = c("atmo1.cli", "atmo2.cli"), + stringsAsFactors = FALSE +) +add_weather_stations(project, stations) + +# Add weather generators +wgn <- data.frame( + name = "wgn_station1", + lat = -38.1, lon = 176.3, elev = 350, rain_yrs = 30 +) +add_weather_generators(project, wgn) + +# Step 5: Update model parameters +update_parameters(project, "hydrology_hyd", list(cn2 = 65)) +update_parameters(project, "hydrology_hyd", list(cn2 = 70), ids = c(1, 2, 3)) + +# Step 6: Set simulation time +set_simulation_time(project, day_start = 1, yrc_start = 2000, + day_end = 365, yrc_end = 2010) + +# Step 7: Configure GWFLOW (optional) +init_gwflow(project, cell_size = 200, row_count = 100, col_count = 150) +update_gwflow_zones(project, zone_id = 1, aquifer_k = 15.0) + +# Step 8: Write configuration files (all done within R!) +write_config_files(project) +# Or specify weather data directory and output location: +write_config_files(project, output_dir = "/path/to/TxtInOut", + weather_dir = "/path/to/weather") +# Optional: delegate to Python executable if preferred: +write_config_files(project, editor_exe = "/path/to/swatplus_api.py") + +# Step 9: Run SWAT+ +run_swatplus(project, swat_exe = "/path/to/swatplus") +``` + +## Functions Reference + +### Project Management +- `create_project_db()` - Create a new SWAT+ project database +- `load_project()` - Load and validate a project +- `get_project_config()` - Get project configuration +- `get_project_info()` - Get project summary information + +### GIS Data +- `read_gis_data()` - Read all GIS tables +- `read_gis_subbasins()` - Read subbasin data +- `read_gis_channels()` - Read channel data +- `read_gis_hrus()` - Read HRU data +- `read_gis_lsus()` - Read landscape unit data +- `read_gis_aquifers()` - Read aquifer data +- `read_gis_deep_aquifers()` - Read deep aquifer data +- `read_gis_water()` - Read water body data +- `read_gis_points()` - Read point feature data +- `read_gis_routing()` - Read routing connectivity data + +### Weather Data +- `add_weather_stations()` - Add weather stations +- `list_weather_stations()` - List all weather stations +- `update_weather_station()` - Update a weather station +- `remove_weather_stations()` - Remove weather stations +- `add_weather_generators()` - Add weather generator data +- `set_weather_dir()` - Set weather data directory +- `match_weather_stations()` - Match stations to spatial objects + +### Parameters +- `update_parameters()` - Update parameters in any table +- `set_simulation_time()` - Set simulation time period +- `set_print_options()` - Set print/output options + +### GWFLOW +- `get_gwflow_status()` - Check GWFLOW status +- `init_gwflow()` - Initialize GWFLOW module +- `get_gwflow_base()` - Get GWFLOW base configuration +- `update_gwflow_base()` - Update GWFLOW base settings +- `get_gwflow_zones()` - Get GWFLOW zones +- `update_gwflow_zones()` - Update GWFLOW zone parameters + +### File Writing & Model Execution +- `write_config_files()` - Write SWAT+ input files +- `run_swatplus()` - Run the SWAT+ model + +### Database Access +- `open_project_db()` - Open a database connection (for custom queries) + +## Database Tables + +The project SQLite database contains the following GIS tables (matching +the SWAT+ Editor format): + +| Table | Description | +|-------|-------------| +| `gis_aquifers` | Aquifer properties (category, area, coordinates) | +| `gis_channels` | Channel geometry (length, slope, width, depth) | +| `gis_deep_aquifers` | Deep aquifer properties | +| `gis_hrus` | HRU data (landuse, soil, slope, area) | +| `gis_lsus` | Landscape units | +| `gis_points` | Point features (outlets, inlets) | +| `gis_routing` | Connectivity routing between features | +| `gis_subbasins` | Subbasin geometry (area, slope, elevation) | +| `gis_water` | Water bodies | + +## Requirements + +- R >= 4.0.0 +- DBI +- RSQLite +- jsonlite +- httr (optional, for API server communication) diff --git a/src/r-api/swatplusEditoR/inst/extbin/hdf5.dll b/src/r-api/swatplusEditoR/inst/extbin/hdf5.dll new file mode 100644 index 00000000..518dc855 Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/hdf5.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/hdf5_hl.dll b/src/r-api/swatplusEditoR/inst/extbin/hdf5_hl.dll new file mode 100644 index 00000000..c0eba161 Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/hdf5_hl.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/hdf5_tools.dll b/src/r-api/swatplusEditoR/inst/extbin/hdf5_tools.dll new file mode 100644 index 00000000..53de3970 Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/hdf5_tools.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/libifcoremd.dll b/src/r-api/swatplusEditoR/inst/extbin/libifcoremd.dll new file mode 100644 index 00000000..3c1375da Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/libifcoremd.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/libifcoremdd.dll b/src/r-api/swatplusEditoR/inst/extbin/libifcoremdd.dll new file mode 100644 index 00000000..95815543 Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/libifcoremdd.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/libifportmd.dll b/src/r-api/swatplusEditoR/inst/extbin/libifportmd.dll new file mode 100644 index 00000000..a5385c6e Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/libifportmd.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/libmmd.dll b/src/r-api/swatplusEditoR/inst/extbin/libmmd.dll new file mode 100644 index 00000000..7d745c36 Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/libmmd.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/netcdf.dll b/src/r-api/swatplusEditoR/inst/extbin/netcdf.dll new file mode 100644 index 00000000..6054d5a8 Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/netcdf.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/readme.txt b/src/r-api/swatplusEditoR/inst/extbin/readme.txt new file mode 100644 index 00000000..7c7af4f3 --- /dev/null +++ b/src/r-api/swatplusEditoR/inst/extbin/readme.txt @@ -0,0 +1,10 @@ +You may update the model run in SWAT+ editor by replacing the files in this directory. Please note the following: + +1. File names must be exactly the same, OR +2. Update the version number in the appsettings.json file in the directory above this one. If the version number in that file is updated, the SWAT+ exe file names must match accordingly. + +Want to run the model outside of SWAT+ Editor? In this version the .dll files in this folder are required, so if you just copy and paste the .exe file, you will encounter errors if you don't have Fortran installed. +Instead, open a command prompt. Navigate to your TxtInOut folder (cd "C:\My-Project\Scenarios\Default\TxtInOut"), then run the SWAT exe providing the full path name. + +In the command prompt from inside your TxtInOut, type something like: "C:\Users\{YOUR_USERNAME}\SWATPlus\SWATPlusEditor\resources\app.asar.unpacked\static\swat_exe\rev{CURRENT_VERSION}_64rel.exe" +Remember to adjust the above for your full path and SWAT exe revision number. \ No newline at end of file diff --git a/src/r-api/swatplusEditoR/inst/extbin/rev61.0.2_64rel.exe b/src/r-api/swatplusEditoR/inst/extbin/rev61.0.2_64rel.exe new file mode 100644 index 00000000..9d734274 Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/rev61.0.2_64rel.exe differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/svml_dispmd.dll b/src/r-api/swatplusEditoR/inst/extbin/svml_dispmd.dll new file mode 100644 index 00000000..ab075667 Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/svml_dispmd.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/ucrtbase.dll b/src/r-api/swatplusEditoR/inst/extbin/ucrtbase.dll new file mode 100644 index 00000000..aabc4efb Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/ucrtbase.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/ucrtbased.dll b/src/r-api/swatplusEditoR/inst/extbin/ucrtbased.dll new file mode 100644 index 00000000..99545c35 Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/ucrtbased.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/vcruntime140.dll b/src/r-api/swatplusEditoR/inst/extbin/vcruntime140.dll new file mode 100644 index 00000000..5786e938 Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/vcruntime140.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/vcruntime140_1.dll b/src/r-api/swatplusEditoR/inst/extbin/vcruntime140_1.dll new file mode 100644 index 00000000..39c0ca97 Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/vcruntime140_1.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/vcruntime140d.dll b/src/r-api/swatplusEditoR/inst/extbin/vcruntime140d.dll new file mode 100644 index 00000000..e4443512 Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/vcruntime140d.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extbin/zlib1.dll b/src/r-api/swatplusEditoR/inst/extbin/zlib1.dll new file mode 100644 index 00000000..fa79f735 Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extbin/zlib1.dll differ diff --git a/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.hmd b/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.hmd new file mode 100644 index 00000000..9183f888 --- /dev/null +++ b/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.hmd @@ -0,0 +1,16074 @@ +IDera5.hmd: Relative humidity data - file written by R +nbyr tstep lat lon elev + 44 1 -38.136 176.250 280.000 +1980 1 0.82650 +1980 2 0.68890 +1980 3 0.65771 +1980 4 0.66047 +1980 5 0.65951 +1980 6 0.71198 +1980 7 0.83669 +1980 8 0.82249 +1980 9 0.78599 +1980 10 0.67848 +1980 11 0.94394 +1980 12 0.78880 +1980 13 0.76863 +1980 14 0.85142 +1980 15 0.97173 +1980 16 0.84770 +1980 17 0.74746 +1980 18 0.71937 +1980 19 0.89293 +1980 20 0.94312 +1980 21 0.99572 +1980 22 0.78917 +1980 23 0.80273 +1980 24 0.82420 +1980 25 0.75152 +1980 26 0.81611 +1980 27 0.81523 +1980 28 0.84803 +1980 29 0.81908 +1980 30 0.80586 +1980 31 0.81466 +1980 32 0.76697 +1980 33 0.77244 +1980 34 0.75561 +1980 35 0.80510 +1980 36 0.78190 +1980 37 0.75708 +1980 38 0.80589 +1980 39 0.76657 +1980 40 0.85575 +1980 41 0.64244 +1980 42 0.56423 +1980 43 0.67186 +1980 44 0.90671 +1980 45 0.79699 +1980 46 0.71403 +1980 47 0.77969 +1980 48 0.82241 +1980 49 0.86017 +1980 50 0.79075 +1980 51 0.82099 +1980 52 0.82602 +1980 53 0.80942 +1980 54 0.70360 +1980 55 0.88640 +1980 56 0.80024 +1980 57 0.73080 +1980 58 0.73334 +1980 59 0.79886 +1980 60 0.97832 +1980 61 0.92134 +1980 62 0.76159 +1980 63 0.73930 +1980 64 0.74740 +1980 65 0.70208 +1980 66 0.74848 +1980 67 0.72872 +1980 68 0.72645 +1980 69 0.75978 +1980 70 0.85419 +1980 71 0.89743 +1980 72 0.69378 +1980 73 0.70723 +1980 74 0.92857 +1980 75 0.80796 +1980 76 0.70250 +1980 77 0.65462 +1980 78 0.81250 +1980 79 0.82382 +1980 80 0.68313 +1980 81 0.68979 +1980 82 0.82558 +1980 83 0.89784 +1980 84 0.86382 +1980 85 0.77562 +1980 86 0.71750 +1980 87 0.80421 +1980 88 0.90136 +1980 89 0.86153 +1980 90 0.90073 +1980 91 0.82361 +1980 92 0.88795 +1980 93 0.84989 +1980 94 0.75937 +1980 95 0.78609 +1980 96 0.85190 +1980 97 0.93520 +1980 98 0.90780 +1980 99 0.95442 +1980 100 0.88980 +1980 101 0.82885 +1980 102 0.72742 +1980 103 0.75111 +1980 104 0.81348 +1980 105 0.83152 +1980 106 0.87115 +1980 107 0.83434 +1980 108 0.81202 +1980 109 0.75474 +1980 110 0.79673 +1980 111 0.85597 +1980 112 0.83170 +1980 113 0.88736 +1980 114 0.89637 +1980 115 0.87691 +1980 116 0.91731 +1980 117 0.96809 +1980 118 0.97434 +1980 119 0.93513 +1980 120 0.89480 +1980 121 0.79984 +1980 122 0.78579 +1980 123 0.83099 +1980 124 0.84162 +1980 125 0.84427 +1980 126 0.85479 +1980 127 0.84343 +1980 128 0.75998 +1980 129 0.79300 +1980 130 0.78793 +1980 131 0.86008 +1980 132 0.84195 +1980 133 0.88261 +1980 134 0.86637 +1980 135 0.91791 +1980 136 0.92475 +1980 137 0.92285 +1980 138 0.92815 +1980 139 0.85189 +1980 140 0.74961 +1980 141 0.89399 +1980 142 0.80006 +1980 143 0.84276 +1980 144 0.89188 +1980 145 0.91729 +1980 146 0.87963 +1980 147 0.80141 +1980 148 0.72958 +1980 149 0.74268 +1980 150 0.85717 +1980 151 0.90157 +1980 152 0.92605 +1980 153 0.98861 +1980 154 0.93515 +1980 155 0.98575 +1980 156 0.87400 +1980 157 0.92435 +1980 158 0.96763 +1980 159 0.87957 +1980 160 0.87928 +1980 161 0.90536 +1980 162 0.93745 +1980 163 0.82094 +1980 164 0.80544 +1980 165 0.74870 +1980 166 0.73276 +1980 167 0.76064 +1980 168 0.76812 +1980 169 0.81881 +1980 170 0.84366 +1980 171 0.81226 +1980 172 0.90623 +1980 173 0.88016 +1980 174 0.85799 +1980 175 0.90513 +1980 176 0.88861 +1980 177 0.88235 +1980 178 0.87250 +1980 179 0.91591 +1980 180 0.89495 +1980 181 0.97843 +1980 182 0.97868 +1980 183 0.96514 +1980 184 0.98979 +1980 185 0.96703 +1980 186 0.87417 +1980 187 0.86134 +1980 188 0.83832 +1980 189 0.93252 +1980 190 0.95381 +1980 191 0.86030 +1980 192 0.87283 +1980 193 0.75175 +1980 194 0.80883 +1980 195 0.87588 +1980 196 0.84998 +1980 197 0.74815 +1980 198 0.79444 +1980 199 0.82142 +1980 200 0.85214 +1980 201 0.84551 +1980 202 0.88107 +1980 203 0.96453 +1980 204 0.91997 +1980 205 0.79616 +1980 206 0.84408 +1980 207 0.78487 +1980 208 0.84470 +1980 209 0.84801 +1980 210 0.83871 +1980 211 0.83050 +1980 212 0.95145 +1980 213 0.99285 +1980 214 0.91651 +1980 215 0.85911 +1980 216 0.79250 +1980 217 0.83906 +1980 218 0.84775 +1980 219 0.82268 +1980 220 0.71151 +1980 221 0.72755 +1980 222 0.78331 +1980 223 0.83129 +1980 224 0.81538 +1980 225 0.91503 +1980 226 0.74380 +1980 227 0.75527 +1980 228 0.91594 +1980 229 0.85186 +1980 230 0.68650 +1980 231 0.76514 +1980 232 0.81746 +1980 233 0.82434 +1980 234 0.91297 +1980 235 0.85528 +1980 236 0.82242 +1980 237 0.92503 +1980 238 0.88660 +1980 239 0.96080 +1980 240 0.97012 +1980 241 0.78453 +1980 242 0.83150 +1980 243 0.85692 +1980 244 0.91746 +1980 245 0.85625 +1980 246 0.93294 +1980 247 0.97568 +1980 248 0.96980 +1980 249 0.78440 +1980 250 0.82809 +1980 251 0.88180 +1980 252 0.79046 +1980 253 0.93307 +1980 254 0.80700 +1980 255 0.81976 +1980 256 0.94230 +1980 257 0.71617 +1980 258 0.75109 +1980 259 0.78813 +1980 260 0.85394 +1980 261 0.84574 +1980 262 0.91142 +1980 263 0.79896 +1980 264 0.79393 +1980 265 0.78600 +1980 266 0.79692 +1980 267 0.77331 +1980 268 0.77991 +1980 269 0.85622 +1980 270 0.90586 +1980 271 0.73602 +1980 272 0.84203 +1980 273 0.82062 +1980 274 0.79556 +1980 275 0.81208 +1980 276 0.84570 +1980 277 0.79352 +1980 278 0.74562 +1980 279 0.83695 +1980 280 0.94114 +1980 281 0.96630 +1980 282 0.94273 +1980 283 0.84805 +1980 284 0.96897 +1980 285 0.80097 +1980 286 0.65997 +1980 287 0.74287 +1980 288 0.87443 +1980 289 0.88570 +1980 290 0.87436 +1980 291 0.83389 +1980 292 0.79464 +1980 293 0.75218 +1980 294 0.83420 +1980 295 0.92348 +1980 296 0.69114 +1980 297 0.68906 +1980 298 0.80082 +1980 299 0.83278 +1980 300 0.83108 +1980 301 0.81446 +1980 302 0.90024 +1980 303 0.74894 +1980 304 0.82014 +1980 305 0.82406 +1980 306 0.76822 +1980 307 0.84477 +1980 308 0.83610 +1980 309 0.90062 +1980 310 0.74719 +1980 311 0.87054 +1980 312 0.90212 +1980 313 0.87103 +1980 314 0.62250 +1980 315 0.86032 +1980 316 0.74401 +1980 317 0.79029 +1980 318 0.73161 +1980 319 0.77061 +1980 320 0.72707 +1980 321 0.62574 +1980 322 0.72935 +1980 323 0.79474 +1980 324 0.74123 +1980 325 0.68053 +1980 326 0.67110 +1980 327 0.83937 +1980 328 0.73594 +1980 329 0.76048 +1980 330 0.82237 +1980 331 0.81740 +1980 332 0.81259 +1980 333 0.68813 +1980 334 0.96565 +1980 335 0.72792 +1980 336 0.69494 +1980 337 0.73745 +1980 338 0.74807 +1980 339 0.76772 +1980 340 0.84498 +1980 341 0.72425 +1980 342 0.74761 +1980 343 0.79964 +1980 344 0.68295 +1980 345 0.62463 +1980 346 0.65785 +1980 347 0.72206 +1980 348 0.81166 +1980 349 0.77570 +1980 350 0.75629 +1980 351 0.74959 +1980 352 0.77110 +1980 353 0.87869 +1980 354 0.96247 +1980 355 0.74757 +1980 356 0.86609 +1980 357 0.94899 +1980 358 0.92404 +1980 359 0.92527 +1980 360 0.91696 +1980 361 0.94700 +1980 362 0.78626 +1980 363 0.70985 +1980 364 0.85578 +1980 365 0.76401 +1980 366 0.78421 +1981 1 0.78731 +1981 2 0.74913 +1981 3 0.77814 +1981 4 0.76608 +1981 5 0.70131 +1981 6 0.71117 +1981 7 0.65879 +1981 8 0.59788 +1981 9 0.68975 +1981 10 0.87686 +1981 11 0.95255 +1981 12 0.97020 +1981 13 0.88876 +1981 14 0.90664 +1981 15 0.88279 +1981 16 0.89351 +1981 17 0.77075 +1981 18 0.85780 +1981 19 0.99005 +1981 20 0.82300 +1981 21 0.81335 +1981 22 0.88172 +1981 23 0.77954 +1981 24 0.74520 +1981 25 0.78106 +1981 26 0.80537 +1981 27 0.76430 +1981 28 0.77292 +1981 29 0.77625 +1981 30 0.83008 +1981 31 0.96701 +1981 32 0.71682 +1981 33 0.86554 +1981 34 0.77111 +1981 35 0.73346 +1981 36 0.78647 +1981 37 0.86225 +1981 38 0.82656 +1981 39 0.75917 +1981 40 0.84354 +1981 41 0.93043 +1981 42 0.88055 +1981 43 0.93305 +1981 44 0.90211 +1981 45 0.85607 +1981 46 0.80383 +1981 47 0.81513 +1981 48 0.75126 +1981 49 0.70931 +1981 50 0.70687 +1981 51 0.81170 +1981 52 0.79263 +1981 53 0.80415 +1981 54 0.78583 +1981 55 0.71733 +1981 56 0.69423 +1981 57 0.71576 +1981 58 0.78834 +1981 59 0.96505 +1981 60 0.84015 +1981 61 0.80673 +1981 62 0.79179 +1981 63 0.77143 +1981 64 0.79256 +1981 65 0.86065 +1981 66 0.95960 +1981 67 0.97190 +1981 68 0.89432 +1981 69 0.78712 +1981 70 0.85741 +1981 71 0.74359 +1981 72 0.79973 +1981 73 0.85100 +1981 74 0.79332 +1981 75 0.83958 +1981 76 0.94404 +1981 77 0.80938 +1981 78 0.81834 +1981 79 0.88267 +1981 80 0.96208 +1981 81 0.91614 +1981 82 0.90561 +1981 83 0.95309 +1981 84 0.96778 +1981 85 0.90072 +1981 86 0.80145 +1981 87 0.67918 +1981 88 0.71665 +1981 89 0.76581 +1981 90 0.77579 +1981 91 0.81864 +1981 92 0.80552 +1981 93 0.80031 +1981 94 0.78393 +1981 95 0.75542 +1981 96 0.78074 +1981 97 0.77702 +1981 98 0.81015 +1981 99 0.82862 +1981 100 0.86269 +1981 101 0.98594 +1981 102 0.96410 +1981 103 0.97073 +1981 104 0.94498 +1981 105 0.94661 +1981 106 0.86446 +1981 107 0.81047 +1981 108 0.72849 +1981 109 0.79324 +1981 110 0.87304 +1981 111 0.83431 +1981 112 0.88956 +1981 113 0.89794 +1981 114 0.84149 +1981 115 0.82499 +1981 116 0.80336 +1981 117 0.82112 +1981 118 0.85477 +1981 119 0.89523 +1981 120 0.79254 +1981 121 0.79156 +1981 122 0.80993 +1981 123 0.85108 +1981 124 0.82220 +1981 125 0.77849 +1981 126 0.87400 +1981 127 0.99424 +1981 128 0.98423 +1981 129 0.97264 +1981 130 0.94412 +1981 131 0.81767 +1981 132 0.84098 +1981 133 0.79617 +1981 134 0.82669 +1981 135 0.81428 +1981 136 0.82421 +1981 137 0.87687 +1981 138 0.89901 +1981 139 0.98568 +1981 140 0.84635 +1981 141 0.77620 +1981 142 0.73165 +1981 143 0.76571 +1981 144 0.79321 +1981 145 0.82624 +1981 146 0.81284 +1981 147 0.82000 +1981 148 0.85180 +1981 149 0.83303 +1981 150 0.88638 +1981 151 0.97886 +1981 152 0.96535 +1981 153 0.98866 +1981 154 0.95717 +1981 155 0.90897 +1981 156 0.94460 +1981 157 0.94315 +1981 158 0.90086 +1981 159 0.81055 +1981 160 0.79210 +1981 161 0.81280 +1981 162 0.87411 +1981 163 0.98859 +1981 164 0.97250 +1981 165 0.96494 +1981 166 0.97277 +1981 167 0.90699 +1981 168 0.84400 +1981 169 0.88991 +1981 170 0.83321 +1981 171 0.81979 +1981 172 0.77133 +1981 173 0.75322 +1981 174 0.78802 +1981 175 0.84827 +1981 176 0.83804 +1981 177 0.96404 +1981 178 0.97396 +1981 179 0.92587 +1981 180 0.89182 +1981 181 0.83322 +1981 182 0.88115 +1981 183 0.94823 +1981 184 0.93143 +1981 185 0.95079 +1981 186 0.95412 +1981 187 0.85212 +1981 188 0.90515 +1981 189 0.90564 +1981 190 0.94714 +1981 191 0.89236 +1981 192 0.77160 +1981 193 0.79470 +1981 194 0.78700 +1981 195 0.79805 +1981 196 0.81619 +1981 197 0.83187 +1981 198 0.90647 +1981 199 0.88802 +1981 200 0.70511 +1981 201 0.82183 +1981 202 0.83350 +1981 203 0.86728 +1981 204 0.89681 +1981 205 0.94385 +1981 206 0.90042 +1981 207 0.82927 +1981 208 0.89590 +1981 209 0.73590 +1981 210 0.96331 +1981 211 0.91943 +1981 212 0.89477 +1981 213 0.84206 +1981 214 0.88133 +1981 215 0.80341 +1981 216 0.76357 +1981 217 0.76940 +1981 218 0.91454 +1981 219 0.97950 +1981 220 0.85981 +1981 221 0.73517 +1981 222 0.92558 +1981 223 0.78476 +1981 224 0.78503 +1981 225 0.80700 +1981 226 0.94055 +1981 227 0.80889 +1981 228 0.76285 +1981 229 0.88492 +1981 230 0.98314 +1981 231 0.86799 +1981 232 0.79117 +1981 233 0.93332 +1981 234 0.95751 +1981 235 0.96042 +1981 236 0.85679 +1981 237 0.74293 +1981 238 0.75961 +1981 239 0.68783 +1981 240 0.71872 +1981 241 0.79097 +1981 242 0.95770 +1981 243 0.97619 +1981 244 0.97824 +1981 245 0.85763 +1981 246 0.69961 +1981 247 0.81416 +1981 248 0.73236 +1981 249 0.77237 +1981 250 0.82110 +1981 251 0.80842 +1981 252 0.89631 +1981 253 0.78403 +1981 254 0.80169 +1981 255 0.90377 +1981 256 0.83335 +1981 257 0.69702 +1981 258 0.83328 +1981 259 0.70288 +1981 260 0.73177 +1981 261 0.78960 +1981 262 0.84293 +1981 263 0.73373 +1981 264 0.74616 +1981 265 0.78528 +1981 266 0.86344 +1981 267 0.90016 +1981 268 0.79524 +1981 269 0.76209 +1981 270 0.94050 +1981 271 0.77779 +1981 272 0.70915 +1981 273 0.73208 +1981 274 0.83456 +1981 275 0.87830 +1981 276 0.83769 +1981 277 0.86122 +1981 278 0.90045 +1981 279 0.71311 +1981 280 0.80196 +1981 281 0.68334 +1981 282 0.74234 +1981 283 0.81835 +1981 284 0.72357 +1981 285 0.88282 +1981 286 0.83046 +1981 287 0.76961 +1981 288 0.80547 +1981 289 0.89779 +1981 290 0.88180 +1981 291 0.67276 +1981 292 0.77298 +1981 293 0.81911 +1981 294 0.83353 +1981 295 0.88079 +1981 296 0.98121 +1981 297 0.92777 +1981 298 0.77397 +1981 299 0.62443 +1981 300 0.55826 +1981 301 0.59234 +1981 302 0.67063 +1981 303 0.83531 +1981 304 0.74468 +1981 305 0.68951 +1981 306 0.69256 +1981 307 0.76276 +1981 308 0.74284 +1981 309 0.82240 +1981 310 0.93348 +1981 311 0.98704 +1981 312 0.90750 +1981 313 0.88139 +1981 314 0.81352 +1981 315 0.79580 +1981 316 0.89502 +1981 317 0.95232 +1981 318 0.97761 +1981 319 0.80016 +1981 320 0.76197 +1981 321 0.70984 +1981 322 0.62246 +1981 323 0.66611 +1981 324 0.68188 +1981 325 0.86367 +1981 326 0.67199 +1981 327 0.65047 +1981 328 0.67917 +1981 329 0.75280 +1981 330 0.72790 +1981 331 0.82445 +1981 332 0.92713 +1981 333 0.93204 +1981 334 0.92393 +1981 335 0.91594 +1981 336 0.76541 +1981 337 0.74616 +1981 338 0.83643 +1981 339 0.82462 +1981 340 0.90516 +1981 341 0.94563 +1981 342 0.76722 +1981 343 0.88063 +1981 344 0.67325 +1981 345 0.77143 +1981 346 0.75709 +1981 347 0.74257 +1981 348 0.77686 +1981 349 0.86728 +1981 350 0.83194 +1981 351 0.78465 +1981 352 0.83631 +1981 353 0.77669 +1981 354 0.79097 +1981 355 0.90726 +1981 356 0.89443 +1981 357 0.82574 +1981 358 0.86578 +1981 359 0.90320 +1981 360 0.84874 +1981 361 0.75706 +1981 362 0.75253 +1981 363 0.79461 +1981 364 0.86753 +1981 365 0.95987 +1982 1 0.81159 +1982 2 0.78759 +1982 3 0.77771 +1982 4 0.75545 +1982 5 0.90677 +1982 6 0.83624 +1982 7 0.67320 +1982 8 0.72708 +1982 9 0.73015 +1982 10 0.74546 +1982 11 0.77744 +1982 12 0.75404 +1982 13 0.74070 +1982 14 0.69927 +1982 15 0.65151 +1982 16 0.73992 +1982 17 0.75724 +1982 18 0.73108 +1982 19 0.51210 +1982 20 0.63674 +1982 21 0.72407 +1982 22 0.85288 +1982 23 0.72864 +1982 24 0.65060 +1982 25 0.72224 +1982 26 0.78818 +1982 27 0.64200 +1982 28 0.66923 +1982 29 0.74212 +1982 30 0.78050 +1982 31 0.79915 +1982 32 0.84807 +1982 33 0.63388 +1982 34 0.58106 +1982 35 0.91533 +1982 36 0.69535 +1982 37 0.59482 +1982 38 0.73261 +1982 39 0.80627 +1982 40 0.75860 +1982 41 0.71198 +1982 42 0.62126 +1982 43 0.58480 +1982 44 0.64837 +1982 45 0.67655 +1982 46 0.63377 +1982 47 0.71193 +1982 48 0.76446 +1982 49 0.77625 +1982 50 0.87030 +1982 51 0.63729 +1982 52 0.81863 +1982 53 0.98458 +1982 54 0.99893 +1982 55 0.89626 +1982 56 0.86528 +1982 57 0.81192 +1982 58 0.84522 +1982 59 0.97782 +1982 60 0.94701 +1982 61 0.88437 +1982 62 0.70975 +1982 63 0.70755 +1982 64 0.80757 +1982 65 0.86902 +1982 66 0.81811 +1982 67 0.89616 +1982 68 0.83407 +1982 69 0.85071 +1982 70 0.83738 +1982 71 0.83412 +1982 72 0.66832 +1982 73 0.64039 +1982 74 0.65866 +1982 75 0.74719 +1982 76 0.72545 +1982 77 0.74056 +1982 78 0.81027 +1982 79 0.91080 +1982 80 0.91674 +1982 81 0.80700 +1982 82 0.94090 +1982 83 0.84361 +1982 84 0.76499 +1982 85 0.79636 +1982 86 0.80646 +1982 87 0.78720 +1982 88 0.78024 +1982 89 0.97218 +1982 90 0.95621 +1982 91 0.83511 +1982 92 0.83677 +1982 93 0.87303 +1982 94 0.73851 +1982 95 0.79444 +1982 96 0.80962 +1982 97 0.88022 +1982 98 0.98148 +1982 99 0.84891 +1982 100 0.68394 +1982 101 0.73280 +1982 102 0.84391 +1982 103 0.89114 +1982 104 0.78967 +1982 105 0.76378 +1982 106 0.78597 +1982 107 0.82035 +1982 108 0.83008 +1982 109 0.76481 +1982 110 0.72871 +1982 111 0.75298 +1982 112 0.77159 +1982 113 0.78941 +1982 114 0.80618 +1982 115 0.83196 +1982 116 0.80109 +1982 117 0.82437 +1982 118 0.87668 +1982 119 0.92471 +1982 120 0.82188 +1982 121 0.67312 +1982 122 0.76228 +1982 123 0.80473 +1982 124 0.81315 +1982 125 0.84151 +1982 126 0.86866 +1982 127 0.92015 +1982 128 0.84002 +1982 129 0.85948 +1982 130 0.89991 +1982 131 0.95300 +1982 132 0.91548 +1982 133 0.91320 +1982 134 0.88578 +1982 135 0.80717 +1982 136 0.86447 +1982 137 0.75087 +1982 138 0.80117 +1982 139 0.89274 +1982 140 0.79228 +1982 141 0.93253 +1982 142 0.88637 +1982 143 0.89721 +1982 144 0.86938 +1982 145 0.79218 +1982 146 0.82228 +1982 147 0.79562 +1982 148 0.85964 +1982 149 0.89492 +1982 150 0.90991 +1982 151 0.89786 +1982 152 0.91548 +1982 153 0.84961 +1982 154 0.96270 +1982 155 0.94019 +1982 156 0.78141 +1982 157 0.78469 +1982 158 0.83521 +1982 159 0.79778 +1982 160 0.79932 +1982 161 0.84661 +1982 162 0.85628 +1982 163 0.77775 +1982 164 0.76134 +1982 165 0.81806 +1982 166 0.82264 +1982 167 0.80047 +1982 168 0.78748 +1982 169 0.82111 +1982 170 0.85883 +1982 171 0.92518 +1982 172 0.95856 +1982 173 0.95727 +1982 174 0.97381 +1982 175 0.92713 +1982 176 0.85406 +1982 177 0.82560 +1982 178 0.89481 +1982 179 0.94786 +1982 180 0.90816 +1982 181 0.80063 +1982 182 0.76864 +1982 183 0.77818 +1982 184 0.80203 +1982 185 0.82095 +1982 186 0.86289 +1982 187 0.82252 +1982 188 0.84027 +1982 189 0.76653 +1982 190 0.79377 +1982 191 0.78383 +1982 192 0.85191 +1982 193 0.88076 +1982 194 0.93605 +1982 195 0.75211 +1982 196 0.81591 +1982 197 0.83095 +1982 198 0.86886 +1982 199 0.90596 +1982 200 0.97003 +1982 201 0.88370 +1982 202 0.71945 +1982 203 0.77241 +1982 204 0.77544 +1982 205 0.82392 +1982 206 0.86672 +1982 207 0.91009 +1982 208 0.92642 +1982 209 0.98061 +1982 210 0.95724 +1982 211 0.88434 +1982 212 0.94639 +1982 213 0.88801 +1982 214 0.66402 +1982 215 0.84920 +1982 216 0.88617 +1982 217 0.93621 +1982 218 0.83337 +1982 219 0.85017 +1982 220 0.82261 +1982 221 0.84522 +1982 222 0.90188 +1982 223 0.88945 +1982 224 0.90009 +1982 225 0.91117 +1982 226 0.81183 +1982 227 0.78086 +1982 228 0.77618 +1982 229 0.84008 +1982 230 0.68853 +1982 231 0.80091 +1982 232 0.81570 +1982 233 0.81769 +1982 234 0.78522 +1982 235 0.82205 +1982 236 0.82067 +1982 237 0.86374 +1982 238 0.79153 +1982 239 0.80658 +1982 240 0.84713 +1982 241 0.74878 +1982 242 0.80004 +1982 243 0.90806 +1982 244 0.71747 +1982 245 0.74626 +1982 246 0.84970 +1982 247 0.91422 +1982 248 0.76300 +1982 249 0.80093 +1982 250 0.94404 +1982 251 0.79328 +1982 252 0.79258 +1982 253 0.96659 +1982 254 0.79674 +1982 255 0.87259 +1982 256 0.78128 +1982 257 0.69462 +1982 258 0.69839 +1982 259 0.77470 +1982 260 0.80297 +1982 261 0.79539 +1982 262 0.87817 +1982 263 0.80131 +1982 264 0.84667 +1982 265 0.81959 +1982 266 0.84385 +1982 267 0.94268 +1982 268 0.91475 +1982 269 0.84449 +1982 270 0.77424 +1982 271 0.78071 +1982 272 0.80240 +1982 273 0.82496 +1982 274 0.87994 +1982 275 0.65231 +1982 276 0.82434 +1982 277 0.93049 +1982 278 0.81136 +1982 279 0.70765 +1982 280 0.74312 +1982 281 0.77462 +1982 282 0.86176 +1982 283 0.79169 +1982 284 0.70163 +1982 285 0.78658 +1982 286 0.80991 +1982 287 0.93994 +1982 288 0.77222 +1982 289 0.65579 +1982 290 0.94418 +1982 291 0.85626 +1982 292 0.72113 +1982 293 0.80083 +1982 294 0.74615 +1982 295 0.83120 +1982 296 0.86052 +1982 297 0.87052 +1982 298 0.85129 +1982 299 0.83123 +1982 300 0.72269 +1982 301 0.79012 +1982 302 0.80331 +1982 303 0.81891 +1982 304 0.84807 +1982 305 0.81353 +1982 306 0.81046 +1982 307 0.76938 +1982 308 0.77226 +1982 309 0.75908 +1982 310 0.74687 +1982 311 0.65213 +1982 312 0.73958 +1982 313 0.76379 +1982 314 0.84470 +1982 315 0.89663 +1982 316 0.65988 +1982 317 0.73263 +1982 318 0.70003 +1982 319 0.74028 +1982 320 0.73800 +1982 321 0.75924 +1982 322 0.79911 +1982 323 0.69668 +1982 324 0.76789 +1982 325 0.63604 +1982 326 0.71634 +1982 327 0.79712 +1982 328 0.72176 +1982 329 0.73828 +1982 330 0.77678 +1982 331 0.82813 +1982 332 0.73151 +1982 333 0.64173 +1982 334 0.63237 +1982 335 0.69960 +1982 336 0.77053 +1982 337 0.68235 +1982 338 0.92858 +1982 339 0.88122 +1982 340 0.78844 +1982 341 0.68270 +1982 342 0.71712 +1982 343 0.83962 +1982 344 0.88791 +1982 345 0.77460 +1982 346 0.69001 +1982 347 0.66271 +1982 348 0.75889 +1982 349 0.71695 +1982 350 0.71962 +1982 351 0.70608 +1982 352 0.72892 +1982 353 0.81444 +1982 354 0.95474 +1982 355 0.72258 +1982 356 0.69115 +1982 357 0.74804 +1982 358 0.77591 +1982 359 0.93342 +1982 360 0.67529 +1982 361 0.65997 +1982 362 0.71647 +1982 363 0.74419 +1982 364 0.68092 +1982 365 0.78504 +1983 1 0.74141 +1983 2 0.71297 +1983 3 0.69839 +1983 4 0.79006 +1983 5 0.75175 +1983 6 0.70177 +1983 7 0.73200 +1983 8 0.68121 +1983 9 0.66714 +1983 10 0.55541 +1983 11 0.72480 +1983 12 0.90896 +1983 13 0.68724 +1983 14 0.82285 +1983 15 0.86193 +1983 16 0.72541 +1983 17 0.80942 +1983 18 0.88643 +1983 19 0.79836 +1983 20 0.64105 +1983 21 0.78999 +1983 22 0.68321 +1983 23 0.68826 +1983 24 0.78722 +1983 25 0.77696 +1983 26 0.64079 +1983 27 0.72788 +1983 28 0.76619 +1983 29 0.75039 +1983 30 0.70883 +1983 31 0.64871 +1983 32 0.67426 +1983 33 0.72884 +1983 34 0.76543 +1983 35 0.67455 +1983 36 0.61703 +1983 37 0.75437 +1983 38 0.77439 +1983 39 0.68519 +1983 40 0.75274 +1983 41 0.69762 +1983 42 0.73222 +1983 43 0.82220 +1983 44 0.97210 +1983 45 0.82434 +1983 46 0.81660 +1983 47 0.85738 +1983 48 0.77282 +1983 49 0.76291 +1983 50 0.79662 +1983 51 0.85662 +1983 52 0.75235 +1983 53 0.82685 +1983 54 0.71347 +1983 55 0.73047 +1983 56 0.80859 +1983 57 0.90151 +1983 58 0.78853 +1983 59 0.74562 +1983 60 0.68846 +1983 61 0.76765 +1983 62 0.63611 +1983 63 0.68045 +1983 64 0.78158 +1983 65 0.70958 +1983 66 0.75415 +1983 67 0.83815 +1983 68 0.76449 +1983 69 0.70576 +1983 70 0.74192 +1983 71 0.86888 +1983 72 0.87751 +1983 73 0.72720 +1983 74 0.88429 +1983 75 0.67106 +1983 76 0.74513 +1983 77 0.81073 +1983 78 0.96599 +1983 79 0.72713 +1983 80 0.75544 +1983 81 0.93102 +1983 82 0.91855 +1983 83 0.83490 +1983 84 0.69365 +1983 85 0.80787 +1983 86 0.90146 +1983 87 0.80298 +1983 88 0.60627 +1983 89 0.64530 +1983 90 0.81503 +1983 91 0.90565 +1983 92 0.97519 +1983 93 0.92913 +1983 94 0.71475 +1983 95 0.73897 +1983 96 0.93982 +1983 97 0.99730 +1983 98 0.76927 +1983 99 0.64522 +1983 100 0.74383 +1983 101 0.82779 +1983 102 0.82443 +1983 103 0.90909 +1983 104 0.92572 +1983 105 0.83236 +1983 106 0.81205 +1983 107 0.85963 +1983 108 0.97154 +1983 109 0.98614 +1983 110 0.91531 +1983 111 0.87667 +1983 112 0.86068 +1983 113 0.82364 +1983 114 0.83475 +1983 115 0.85446 +1983 116 0.93422 +1983 117 0.68336 +1983 118 0.78850 +1983 119 0.86060 +1983 120 0.80656 +1983 121 0.83446 +1983 122 0.80029 +1983 123 0.84572 +1983 124 0.94655 +1983 125 0.90689 +1983 126 0.88318 +1983 127 0.79935 +1983 128 0.83385 +1983 129 0.91961 +1983 130 0.80862 +1983 131 0.89298 +1983 132 0.74034 +1983 133 0.77068 +1983 134 0.87699 +1983 135 0.89863 +1983 136 0.93861 +1983 137 0.86241 +1983 138 0.93819 +1983 139 0.86225 +1983 140 0.84809 +1983 141 0.80701 +1983 142 0.73174 +1983 143 0.78715 +1983 144 0.89388 +1983 145 0.85507 +1983 146 0.79663 +1983 147 0.81939 +1983 148 0.84525 +1983 149 0.97336 +1983 150 0.95593 +1983 151 0.87392 +1983 152 0.86970 +1983 153 0.72435 +1983 154 0.80876 +1983 155 0.82165 +1983 156 0.81969 +1983 157 0.83300 +1983 158 0.83909 +1983 159 0.87999 +1983 160 0.99877 +1983 161 0.97573 +1983 162 0.97320 +1983 163 0.92450 +1983 164 0.87781 +1983 165 0.88613 +1983 166 0.89327 +1983 167 0.79898 +1983 168 0.64130 +1983 169 0.74643 +1983 170 0.80921 +1983 171 0.74649 +1983 172 0.83086 +1983 173 0.91528 +1983 174 0.94687 +1983 175 0.88451 +1983 176 0.91090 +1983 177 0.94368 +1983 178 0.91671 +1983 179 0.93720 +1983 180 0.94666 +1983 181 0.84766 +1983 182 0.78106 +1983 183 0.74761 +1983 184 0.72385 +1983 185 0.78503 +1983 186 0.83899 +1983 187 0.88324 +1983 188 0.88139 +1983 189 0.94552 +1983 190 0.98617 +1983 191 0.93758 +1983 192 0.79986 +1983 193 0.84196 +1983 194 0.85332 +1983 195 0.85741 +1983 196 0.85106 +1983 197 0.86001 +1983 198 0.85399 +1983 199 0.78403 +1983 200 0.75850 +1983 201 0.80579 +1983 202 0.91332 +1983 203 0.90219 +1983 204 0.80785 +1983 205 0.68874 +1983 206 0.77311 +1983 207 0.80558 +1983 208 0.82691 +1983 209 0.84338 +1983 210 0.88896 +1983 211 0.87453 +1983 212 0.94375 +1983 213 0.95859 +1983 214 0.94764 +1983 215 0.90929 +1983 216 0.86285 +1983 217 0.78815 +1983 218 0.83692 +1983 219 0.84565 +1983 220 0.87031 +1983 221 0.95313 +1983 222 0.86678 +1983 223 0.75917 +1983 224 0.71933 +1983 225 0.61530 +1983 226 0.76866 +1983 227 0.75445 +1983 228 0.79508 +1983 229 0.85913 +1983 230 0.88209 +1983 231 0.94926 +1983 232 0.98218 +1983 233 0.90237 +1983 234 0.84637 +1983 235 0.84086 +1983 236 0.73131 +1983 237 0.74499 +1983 238 0.78872 +1983 239 0.79909 +1983 240 0.84154 +1983 241 0.78577 +1983 242 0.78308 +1983 243 0.80895 +1983 244 0.80069 +1983 245 0.77311 +1983 246 0.71014 +1983 247 0.73587 +1983 248 0.85832 +1983 249 0.84612 +1983 250 0.95158 +1983 251 0.85444 +1983 252 0.97335 +1983 253 0.83493 +1983 254 0.88436 +1983 255 0.80382 +1983 256 0.85303 +1983 257 0.86812 +1983 258 0.66667 +1983 259 0.75114 +1983 260 0.76860 +1983 261 0.76268 +1983 262 0.85060 +1983 263 0.89225 +1983 264 0.82541 +1983 265 0.72443 +1983 266 0.84591 +1983 267 0.83894 +1983 268 0.94440 +1983 269 0.92468 +1983 270 0.75099 +1983 271 0.70758 +1983 272 0.88935 +1983 273 0.90783 +1983 274 0.75478 +1983 275 0.77251 +1983 276 0.88331 +1983 277 0.98380 +1983 278 0.91043 +1983 279 0.88607 +1983 280 0.97080 +1983 281 0.93717 +1983 282 0.79485 +1983 283 0.74245 +1983 284 0.77785 +1983 285 0.81987 +1983 286 0.86566 +1983 287 0.80760 +1983 288 0.70653 +1983 289 0.69036 +1983 290 0.75059 +1983 291 0.79738 +1983 292 0.85401 +1983 293 0.91498 +1983 294 0.99864 +1983 295 0.96132 +1983 296 0.96353 +1983 297 0.96192 +1983 298 0.96455 +1983 299 0.88739 +1983 300 0.94036 +1983 301 0.97749 +1983 302 0.92911 +1983 303 0.87194 +1983 304 0.70595 +1983 305 0.67708 +1983 306 0.80286 +1983 307 0.85228 +1983 308 0.90205 +1983 309 0.96094 +1983 310 0.98855 +1983 311 0.97235 +1983 312 0.79942 +1983 313 0.77828 +1983 314 0.80021 +1983 315 0.71865 +1983 316 0.72680 +1983 317 0.75224 +1983 318 0.59513 +1983 319 0.73150 +1983 320 0.77589 +1983 321 0.83960 +1983 322 0.73206 +1983 323 0.61840 +1983 324 0.79458 +1983 325 0.71761 +1983 326 0.62188 +1983 327 0.62803 +1983 328 0.68370 +1983 329 0.80742 +1983 330 0.72013 +1983 331 0.57351 +1983 332 0.65762 +1983 333 0.68495 +1983 334 0.75468 +1983 335 0.67128 +1983 336 0.72836 +1983 337 0.91938 +1983 338 0.83640 +1983 339 0.87627 +1983 340 0.98881 +1983 341 0.95902 +1983 342 0.97709 +1983 343 0.87127 +1983 344 0.82984 +1983 345 0.69495 +1983 346 0.81582 +1983 347 0.72725 +1983 348 0.66795 +1983 349 0.67820 +1983 350 0.83251 +1983 351 0.72509 +1983 352 0.89768 +1983 353 0.77583 +1983 354 0.61231 +1983 355 0.80985 +1983 356 0.74502 +1983 357 0.70111 +1983 358 0.64671 +1983 359 0.73911 +1983 360 0.83517 +1983 361 0.74232 +1983 362 0.59005 +1983 363 0.65721 +1983 364 0.70935 +1983 365 0.68221 +1984 1 0.71548 +1984 2 0.68402 +1984 3 0.68193 +1984 4 0.70290 +1984 5 0.83555 +1984 6 0.88884 +1984 7 0.72243 +1984 8 0.74525 +1984 9 0.72298 +1984 10 0.78395 +1984 11 0.81162 +1984 12 0.78582 +1984 13 0.69966 +1984 14 0.67551 +1984 15 0.70612 +1984 16 0.68188 +1984 17 0.74983 +1984 18 0.91178 +1984 19 0.75360 +1984 20 0.68234 +1984 21 0.75991 +1984 22 0.85939 +1984 23 0.70125 +1984 24 0.67544 +1984 25 0.73481 +1984 26 0.76021 +1984 27 0.69720 +1984 28 0.71525 +1984 29 0.73133 +1984 30 0.65332 +1984 31 0.71668 +1984 32 0.73484 +1984 33 0.95435 +1984 34 0.79597 +1984 35 0.74783 +1984 36 0.86403 +1984 37 0.73618 +1984 38 0.70027 +1984 39 0.78253 +1984 40 0.83326 +1984 41 0.94712 +1984 42 0.90013 +1984 43 0.76945 +1984 44 0.78534 +1984 45 0.78564 +1984 46 0.89204 +1984 47 0.91212 +1984 48 0.87937 +1984 49 0.84582 +1984 50 0.58453 +1984 51 0.64775 +1984 52 0.73067 +1984 53 0.78333 +1984 54 0.78851 +1984 55 0.83780 +1984 56 0.93175 +1984 57 0.82885 +1984 58 0.78635 +1984 59 0.82236 +1984 60 0.88056 +1984 61 0.85857 +1984 62 0.83151 +1984 63 0.97685 +1984 64 0.97718 +1984 65 0.98561 +1984 66 0.87687 +1984 67 0.95209 +1984 68 0.81371 +1984 69 0.93149 +1984 70 0.86062 +1984 71 0.92324 +1984 72 0.90793 +1984 73 0.92732 +1984 74 0.78983 +1984 75 0.97625 +1984 76 0.91932 +1984 77 0.86472 +1984 78 0.77915 +1984 79 0.82439 +1984 80 0.85154 +1984 81 0.78473 +1984 82 0.78206 +1984 83 0.72187 +1984 84 0.76939 +1984 85 0.81980 +1984 86 0.87009 +1984 87 0.86110 +1984 88 0.88040 +1984 89 0.93431 +1984 90 0.98205 +1984 91 0.89844 +1984 92 0.80944 +1984 93 0.75911 +1984 94 0.79131 +1984 95 0.77223 +1984 96 0.85262 +1984 97 0.82161 +1984 98 0.89344 +1984 99 0.67391 +1984 100 0.78322 +1984 101 0.85694 +1984 102 0.84324 +1984 103 0.83696 +1984 104 0.83817 +1984 105 0.82531 +1984 106 0.87565 +1984 107 0.78263 +1984 108 0.73237 +1984 109 0.74771 +1984 110 0.76615 +1984 111 0.72648 +1984 112 0.71890 +1984 113 0.79279 +1984 114 0.83838 +1984 115 0.83126 +1984 116 0.91094 +1984 117 0.91615 +1984 118 0.80646 +1984 119 0.88254 +1984 120 0.79961 +1984 121 0.83458 +1984 122 0.67873 +1984 123 0.73691 +1984 124 0.84868 +1984 125 0.89321 +1984 126 0.84485 +1984 127 0.87546 +1984 128 0.94761 +1984 129 0.99623 +1984 130 0.86103 +1984 131 0.73789 +1984 132 0.82435 +1984 133 0.91074 +1984 134 0.88434 +1984 135 0.82914 +1984 136 0.74696 +1984 137 0.80910 +1984 138 0.79824 +1984 139 0.87066 +1984 140 0.64172 +1984 141 0.74555 +1984 142 0.81151 +1984 143 0.82857 +1984 144 0.95794 +1984 145 0.94796 +1984 146 0.94482 +1984 147 0.89456 +1984 148 0.89047 +1984 149 0.74148 +1984 150 0.78391 +1984 151 0.69690 +1984 152 0.81512 +1984 153 0.87588 +1984 154 0.88577 +1984 155 0.90904 +1984 156 0.92959 +1984 157 0.97567 +1984 158 0.74922 +1984 159 0.85805 +1984 160 0.85925 +1984 161 0.91192 +1984 162 0.84246 +1984 163 0.83040 +1984 164 0.82627 +1984 165 0.80406 +1984 166 0.86994 +1984 167 0.84225 +1984 168 0.87389 +1984 169 0.86470 +1984 170 0.89782 +1984 171 0.94977 +1984 172 0.94686 +1984 173 0.92751 +1984 174 0.85105 +1984 175 0.73089 +1984 176 0.79325 +1984 177 0.87294 +1984 178 0.88205 +1984 179 0.92463 +1984 180 0.97364 +1984 181 0.98921 +1984 182 0.96455 +1984 183 0.96415 +1984 184 0.93480 +1984 185 0.85275 +1984 186 0.97064 +1984 187 0.95314 +1984 188 0.95332 +1984 189 0.82607 +1984 190 0.74940 +1984 191 0.81198 +1984 192 0.87867 +1984 193 0.97232 +1984 194 0.88598 +1984 195 0.95685 +1984 196 0.82476 +1984 197 0.60518 +1984 198 0.73363 +1984 199 0.79464 +1984 200 0.89058 +1984 201 0.92406 +1984 202 0.89588 +1984 203 0.94950 +1984 204 0.89409 +1984 205 0.83340 +1984 206 0.94805 +1984 207 0.86631 +1984 208 0.77611 +1984 209 0.85630 +1984 210 0.86756 +1984 211 0.93892 +1984 212 0.96520 +1984 213 0.94046 +1984 214 0.77770 +1984 215 0.87811 +1984 216 0.86977 +1984 217 0.85389 +1984 218 0.76821 +1984 219 0.71855 +1984 220 0.71058 +1984 221 0.75185 +1984 222 0.78363 +1984 223 0.81721 +1984 224 0.79094 +1984 225 0.82700 +1984 226 0.95294 +1984 227 0.93201 +1984 228 0.95323 +1984 229 0.97205 +1984 230 0.91865 +1984 231 0.95807 +1984 232 0.90894 +1984 233 0.95157 +1984 234 0.98761 +1984 235 0.85002 +1984 236 0.69953 +1984 237 0.78332 +1984 238 0.89479 +1984 239 0.84201 +1984 240 0.82550 +1984 241 0.87495 +1984 242 0.98729 +1984 243 0.96404 +1984 244 0.81349 +1984 245 0.84767 +1984 246 0.97260 +1984 247 0.94773 +1984 248 0.88063 +1984 249 0.81217 +1984 250 0.67602 +1984 251 0.73306 +1984 252 0.76914 +1984 253 0.87801 +1984 254 0.88440 +1984 255 0.87584 +1984 256 0.93145 +1984 257 0.86238 +1984 258 0.68611 +1984 259 0.65506 +1984 260 0.67089 +1984 261 0.71128 +1984 262 0.77392 +1984 263 0.82842 +1984 264 0.83020 +1984 265 0.88982 +1984 266 0.93328 +1984 267 0.96258 +1984 268 0.89247 +1984 269 0.90803 +1984 270 0.98468 +1984 271 0.72510 +1984 272 0.87626 +1984 273 0.96361 +1984 274 0.72043 +1984 275 0.61085 +1984 276 0.65643 +1984 277 0.62443 +1984 278 0.65766 +1984 279 0.77853 +1984 280 0.82418 +1984 281 0.75910 +1984 282 0.65705 +1984 283 0.82020 +1984 284 0.90645 +1984 285 0.69369 +1984 286 0.76849 +1984 287 0.80070 +1984 288 0.79548 +1984 289 0.84204 +1984 290 0.85283 +1984 291 0.95419 +1984 292 0.81605 +1984 293 0.76331 +1984 294 0.78671 +1984 295 0.72495 +1984 296 0.55253 +1984 297 0.70468 +1984 298 0.77466 +1984 299 0.71138 +1984 300 0.70184 +1984 301 0.63803 +1984 302 0.74945 +1984 303 0.74410 +1984 304 0.71234 +1984 305 0.78622 +1984 306 0.98622 +1984 307 0.99023 +1984 308 0.94249 +1984 309 0.81481 +1984 310 0.81098 +1984 311 0.76531 +1984 312 0.81894 +1984 313 0.84039 +1984 314 0.85053 +1984 315 0.82777 +1984 316 0.80524 +1984 317 0.75030 +1984 318 0.78871 +1984 319 0.81995 +1984 320 0.90900 +1984 321 0.72436 +1984 322 0.72650 +1984 323 0.66226 +1984 324 0.70714 +1984 325 0.72582 +1984 326 0.74893 +1984 327 0.78994 +1984 328 0.78950 +1984 329 0.92197 +1984 330 0.77940 +1984 331 0.70027 +1984 332 0.72194 +1984 333 0.80288 +1984 334 0.75286 +1984 335 0.73779 +1984 336 0.83797 +1984 337 0.78324 +1984 338 0.80428 +1984 339 0.93960 +1984 340 0.93252 +1984 341 0.85033 +1984 342 0.86127 +1984 343 0.78045 +1984 344 0.73693 +1984 345 0.96288 +1984 346 0.79955 +1984 347 0.87204 +1984 348 0.94704 +1984 349 0.81232 +1984 350 0.92883 +1984 351 0.75969 +1984 352 0.69731 +1984 353 0.69643 +1984 354 0.73908 +1984 355 0.85140 +1984 356 0.97775 +1984 357 0.72899 +1984 358 0.79528 +1984 359 0.75560 +1984 360 0.78367 +1984 361 0.80657 +1984 362 0.83276 +1984 363 0.88226 +1984 364 0.87830 +1984 365 0.74071 +1984 366 0.83697 +1985 1 0.87443 +1985 2 0.82336 +1985 3 0.80144 +1985 4 0.69100 +1985 5 0.73339 +1985 6 0.72909 +1985 7 0.73096 +1985 8 0.61008 +1985 9 0.74186 +1985 10 0.91280 +1985 11 0.84179 +1985 12 0.86010 +1985 13 0.72500 +1985 14 0.71430 +1985 15 0.72995 +1985 16 0.69471 +1985 17 0.69114 +1985 18 0.82163 +1985 19 0.80066 +1985 20 0.91913 +1985 21 0.86826 +1985 22 0.82382 +1985 23 0.77176 +1985 24 0.96017 +1985 25 0.82679 +1985 26 0.83087 +1985 27 0.78689 +1985 28 0.81659 +1985 29 0.66675 +1985 30 0.77647 +1985 31 0.82588 +1985 32 0.86861 +1985 33 0.64353 +1985 34 0.67469 +1985 35 0.72896 +1985 36 0.72859 +1985 37 0.73221 +1985 38 0.87078 +1985 39 0.69643 +1985 40 0.70456 +1985 41 0.73479 +1985 42 0.61051 +1985 43 0.55821 +1985 44 0.64661 +1985 45 0.76228 +1985 46 0.87392 +1985 47 0.86666 +1985 48 0.80559 +1985 49 0.72768 +1985 50 0.72163 +1985 51 0.70626 +1985 52 0.74816 +1985 53 0.69651 +1985 54 0.77612 +1985 55 0.74918 +1985 56 0.78796 +1985 57 0.81578 +1985 58 0.89689 +1985 59 0.99125 +1985 60 0.97737 +1985 61 0.86613 +1985 62 0.91705 +1985 63 0.88619 +1985 64 0.84624 +1985 65 0.81089 +1985 66 0.62414 +1985 67 0.64165 +1985 68 0.70932 +1985 69 0.80973 +1985 70 0.89200 +1985 71 0.85331 +1985 72 0.92168 +1985 73 0.85396 +1985 74 0.75885 +1985 75 0.76345 +1985 76 0.75052 +1985 77 0.80399 +1985 78 0.75794 +1985 79 0.65496 +1985 80 0.76338 +1985 81 0.80291 +1985 82 0.72931 +1985 83 0.71350 +1985 84 0.88776 +1985 85 0.75309 +1985 86 0.74627 +1985 87 0.81563 +1985 88 0.81041 +1985 89 0.66188 +1985 90 0.70437 +1985 91 0.75110 +1985 92 0.93819 +1985 93 0.73173 +1985 94 0.73804 +1985 95 0.72194 +1985 96 0.74450 +1985 97 0.79637 +1985 98 0.75786 +1985 99 0.80266 +1985 100 0.84543 +1985 101 0.76064 +1985 102 0.81379 +1985 103 0.79940 +1985 104 0.82529 +1985 105 0.86570 +1985 106 0.97622 +1985 107 0.96178 +1985 108 0.96365 +1985 109 0.99782 +1985 110 0.93742 +1985 111 0.67922 +1985 112 0.78618 +1985 113 0.81620 +1985 114 0.81311 +1985 115 0.78843 +1985 116 0.78816 +1985 117 0.84291 +1985 118 0.76297 +1985 119 0.74887 +1985 120 0.75659 +1985 121 0.77069 +1985 122 0.77567 +1985 123 0.83803 +1985 124 0.86611 +1985 125 0.88825 +1985 126 0.84783 +1985 127 0.86114 +1985 128 0.88115 +1985 129 0.87668 +1985 130 0.86626 +1985 131 0.82433 +1985 132 0.80062 +1985 133 0.92703 +1985 134 0.76881 +1985 135 0.66752 +1985 136 0.75119 +1985 137 0.83075 +1985 138 0.91722 +1985 139 0.91046 +1985 140 0.91618 +1985 141 0.97449 +1985 142 0.98538 +1985 143 0.82365 +1985 144 0.75185 +1985 145 0.78492 +1985 146 0.79185 +1985 147 0.79371 +1985 148 0.76993 +1985 149 0.75514 +1985 150 0.79978 +1985 151 0.80384 +1985 152 0.79275 +1985 153 0.84208 +1985 154 0.92330 +1985 155 0.95360 +1985 156 0.92728 +1985 157 0.96852 +1985 158 0.85739 +1985 159 0.86631 +1985 160 0.89753 +1985 161 0.87040 +1985 162 0.90059 +1985 163 0.88258 +1985 164 0.95577 +1985 165 0.99252 +1985 166 0.98219 +1985 167 0.97138 +1985 168 0.96622 +1985 169 0.89972 +1985 170 0.90647 +1985 171 0.88290 +1985 172 0.98840 +1985 173 0.90796 +1985 174 0.81584 +1985 175 0.86046 +1985 176 0.82512 +1985 177 0.89576 +1985 178 0.95368 +1985 179 0.97409 +1985 180 0.98946 +1985 181 0.89331 +1985 182 0.83027 +1985 183 0.86411 +1985 184 0.86845 +1985 185 0.90549 +1985 186 0.84497 +1985 187 0.84303 +1985 188 0.78103 +1985 189 0.82138 +1985 190 0.75550 +1985 191 0.85677 +1985 192 0.97292 +1985 193 0.98573 +1985 194 0.92310 +1985 195 0.94040 +1985 196 0.88497 +1985 197 0.93034 +1985 198 0.98958 +1985 199 0.99413 +1985 200 0.92680 +1985 201 0.95851 +1985 202 0.85726 +1985 203 0.83876 +1985 204 0.83890 +1985 205 0.95126 +1985 206 0.87954 +1985 207 0.84364 +1985 208 0.79316 +1985 209 0.84757 +1985 210 0.86941 +1985 211 0.96116 +1985 212 0.95956 +1985 213 0.93018 +1985 214 0.83487 +1985 215 0.76660 +1985 216 0.78259 +1985 217 0.80563 +1985 218 0.84568 +1985 219 0.86282 +1985 220 0.83832 +1985 221 0.89073 +1985 222 0.99068 +1985 223 0.82879 +1985 224 0.70094 +1985 225 0.68382 +1985 226 0.73027 +1985 227 0.74813 +1985 228 0.80212 +1985 229 0.84472 +1985 230 0.87928 +1985 231 0.87547 +1985 232 0.75625 +1985 233 0.79438 +1985 234 0.82119 +1985 235 0.82383 +1985 236 0.91065 +1985 237 0.92570 +1985 238 0.79445 +1985 239 0.94372 +1985 240 0.70470 +1985 241 0.77557 +1985 242 0.82015 +1985 243 0.91620 +1985 244 0.90388 +1985 245 0.95284 +1985 246 0.95311 +1985 247 0.91545 +1985 248 0.85428 +1985 249 0.67745 +1985 250 0.76865 +1985 251 0.76198 +1985 252 0.80011 +1985 253 0.81972 +1985 254 0.85035 +1985 255 0.82871 +1985 256 0.81323 +1985 257 0.74230 +1985 258 0.71241 +1985 259 0.77316 +1985 260 0.83162 +1985 261 0.77608 +1985 262 0.78950 +1985 263 0.78267 +1985 264 0.79672 +1985 265 0.75864 +1985 266 0.83276 +1985 267 0.84250 +1985 268 0.95389 +1985 269 0.88408 +1985 270 0.79113 +1985 271 0.76420 +1985 272 0.81820 +1985 273 0.76195 +1985 274 0.77114 +1985 275 0.75979 +1985 276 0.82749 +1985 277 0.87569 +1985 278 0.77219 +1985 279 0.77101 +1985 280 0.68955 +1985 281 0.80276 +1985 282 0.74001 +1985 283 0.73973 +1985 284 0.82628 +1985 285 0.84906 +1985 286 0.73427 +1985 287 0.70013 +1985 288 0.59070 +1985 289 0.57800 +1985 290 0.67022 +1985 291 0.73959 +1985 292 0.84293 +1985 293 0.98784 +1985 294 0.80115 +1985 295 0.91162 +1985 296 0.86266 +1985 297 0.95354 +1985 298 0.74023 +1985 299 0.58798 +1985 300 0.68165 +1985 301 0.72980 +1985 302 0.75547 +1985 303 0.80633 +1985 304 0.86381 +1985 305 0.74426 +1985 306 0.72583 +1985 307 0.68918 +1985 308 0.65839 +1985 309 0.66525 +1985 310 0.69601 +1985 311 0.71602 +1985 312 0.68779 +1985 313 0.76615 +1985 314 0.70689 +1985 315 0.72208 +1985 316 0.89373 +1985 317 0.74526 +1985 318 0.77321 +1985 319 0.74819 +1985 320 0.77215 +1985 321 0.79226 +1985 322 0.85326 +1985 323 0.95341 +1985 324 0.75392 +1985 325 0.70733 +1985 326 0.93188 +1985 327 0.84578 +1985 328 0.95593 +1985 329 0.95270 +1985 330 0.80236 +1985 331 0.76232 +1985 332 0.87027 +1985 333 0.90002 +1985 334 0.91163 +1985 335 0.96838 +1985 336 0.91365 +1985 337 0.77182 +1985 338 0.83064 +1985 339 0.77926 +1985 340 0.80076 +1985 341 0.83041 +1985 342 0.79659 +1985 343 0.77185 +1985 344 0.77417 +1985 345 0.77844 +1985 346 0.81865 +1985 347 0.83928 +1985 348 0.85375 +1985 349 0.86929 +1985 350 0.73780 +1985 351 0.70418 +1985 352 0.80253 +1985 353 0.80373 +1985 354 0.79507 +1985 355 0.81599 +1985 356 0.89945 +1985 357 0.77127 +1985 358 0.87855 +1985 359 0.85641 +1985 360 0.74063 +1985 361 0.83282 +1985 362 0.98732 +1985 363 0.72231 +1985 364 0.76558 +1985 365 0.74442 +1986 1 0.89891 +1986 2 0.98524 +1986 3 0.98041 +1986 4 0.92043 +1986 5 0.83923 +1986 6 0.85177 +1986 7 0.88937 +1986 8 0.97612 +1986 9 0.80770 +1986 10 0.78039 +1986 11 0.87966 +1986 12 0.78160 +1986 13 0.74460 +1986 14 0.74181 +1986 15 0.80394 +1986 16 0.80437 +1986 17 0.72905 +1986 18 0.69589 +1986 19 0.89993 +1986 20 0.89204 +1986 21 0.83140 +1986 22 0.90271 +1986 23 0.84446 +1986 24 0.96767 +1986 25 0.76815 +1986 26 0.70006 +1986 27 0.69738 +1986 28 0.65555 +1986 29 0.66864 +1986 30 0.73146 +1986 31 0.83396 +1986 32 0.96052 +1986 33 0.87868 +1986 34 0.78473 +1986 35 0.86644 +1986 36 0.90379 +1986 37 0.75962 +1986 38 0.67720 +1986 39 0.75254 +1986 40 0.66218 +1986 41 0.73762 +1986 42 0.74000 +1986 43 0.71420 +1986 44 0.69234 +1986 45 0.79017 +1986 46 0.95903 +1986 47 0.82770 +1986 48 0.77103 +1986 49 0.75778 +1986 50 0.85756 +1986 51 0.74821 +1986 52 0.78065 +1986 53 0.88985 +1986 54 0.97730 +1986 55 0.89468 +1986 56 0.77588 +1986 57 0.86273 +1986 58 0.86012 +1986 59 0.80005 +1986 60 0.71399 +1986 61 0.75928 +1986 62 0.93145 +1986 63 0.77506 +1986 64 0.69089 +1986 65 0.70013 +1986 66 0.76970 +1986 67 0.81387 +1986 68 0.85802 +1986 69 0.83913 +1986 70 0.94555 +1986 71 0.95270 +1986 72 0.94619 +1986 73 0.93401 +1986 74 0.85423 +1986 75 0.76633 +1986 76 0.75323 +1986 77 0.77097 +1986 78 0.81520 +1986 79 0.77206 +1986 80 0.63843 +1986 81 0.71872 +1986 82 0.83591 +1986 83 0.69812 +1986 84 0.68806 +1986 85 0.75398 +1986 86 0.81257 +1986 87 0.81500 +1986 88 0.66616 +1986 89 0.73701 +1986 90 0.70403 +1986 91 0.75577 +1986 92 0.74129 +1986 93 0.81011 +1986 94 0.74243 +1986 95 0.82908 +1986 96 0.76889 +1986 97 0.74573 +1986 98 0.78509 +1986 99 0.81370 +1986 100 0.74039 +1986 101 0.78984 +1986 102 0.82661 +1986 103 0.69240 +1986 104 0.67808 +1986 105 0.72300 +1986 106 0.82192 +1986 107 0.81923 +1986 108 0.83949 +1986 109 0.80612 +1986 110 0.85217 +1986 111 0.87114 +1986 112 0.93425 +1986 113 0.88639 +1986 114 0.88620 +1986 115 0.94199 +1986 116 0.97168 +1986 117 0.97511 +1986 118 0.86285 +1986 119 0.78535 +1986 120 0.79803 +1986 121 0.79003 +1986 122 0.81999 +1986 123 0.85571 +1986 124 0.79018 +1986 125 0.78282 +1986 126 0.84163 +1986 127 0.85019 +1986 128 0.83573 +1986 129 0.84393 +1986 130 0.88080 +1986 131 0.90766 +1986 132 0.83960 +1986 133 0.84553 +1986 134 0.84972 +1986 135 0.89652 +1986 136 0.95010 +1986 137 0.87826 +1986 138 0.79259 +1986 139 0.93873 +1986 140 0.95546 +1986 141 0.84884 +1986 142 0.71030 +1986 143 0.79362 +1986 144 0.87099 +1986 145 0.98578 +1986 146 0.83437 +1986 147 0.74153 +1986 148 0.84148 +1986 149 0.88707 +1986 150 0.85675 +1986 151 0.79638 +1986 152 0.86577 +1986 153 0.85590 +1986 154 0.87643 +1986 155 0.80849 +1986 156 0.83157 +1986 157 0.86860 +1986 158 0.92914 +1986 159 0.95317 +1986 160 0.99165 +1986 161 0.92388 +1986 162 0.84454 +1986 163 0.91261 +1986 164 0.83294 +1986 165 0.79005 +1986 166 0.66486 +1986 167 0.76164 +1986 168 0.79777 +1986 169 0.84074 +1986 170 0.85329 +1986 171 0.97733 +1986 172 0.90989 +1986 173 0.90172 +1986 174 0.95807 +1986 175 0.97641 +1986 176 0.87978 +1986 177 0.81804 +1986 178 0.90682 +1986 179 0.87667 +1986 180 0.90631 +1986 181 0.74968 +1986 182 0.63998 +1986 183 0.74457 +1986 184 0.80410 +1986 185 0.83819 +1986 186 0.96651 +1986 187 0.90579 +1986 188 0.83448 +1986 189 0.87146 +1986 190 0.95232 +1986 191 0.95479 +1986 192 0.87595 +1986 193 0.86686 +1986 194 0.83628 +1986 195 0.82028 +1986 196 0.88824 +1986 197 0.87069 +1986 198 0.86057 +1986 199 0.85066 +1986 200 0.86226 +1986 201 0.82860 +1986 202 0.70618 +1986 203 0.76413 +1986 204 0.85311 +1986 205 0.98171 +1986 206 0.95091 +1986 207 0.88555 +1986 208 0.83111 +1986 209 0.87101 +1986 210 0.85266 +1986 211 0.83058 +1986 212 0.92669 +1986 213 0.82734 +1986 214 0.82967 +1986 215 0.85596 +1986 216 0.84491 +1986 217 0.78863 +1986 218 0.89657 +1986 219 0.98348 +1986 220 0.96525 +1986 221 0.90908 +1986 222 0.89718 +1986 223 0.81790 +1986 224 0.72211 +1986 225 0.78427 +1986 226 0.73400 +1986 227 0.79894 +1986 228 0.76307 +1986 229 0.89623 +1986 230 0.84148 +1986 231 0.98331 +1986 232 0.99242 +1986 233 0.96527 +1986 234 0.94652 +1986 235 0.92359 +1986 236 0.76378 +1986 237 0.74186 +1986 238 0.86206 +1986 239 0.93367 +1986 240 0.77719 +1986 241 0.75604 +1986 242 0.75325 +1986 243 0.82338 +1986 244 0.80317 +1986 245 0.83155 +1986 246 0.76938 +1986 247 0.79658 +1986 248 0.80193 +1986 249 0.89248 +1986 250 0.92594 +1986 251 0.89390 +1986 252 0.71936 +1986 253 0.76855 +1986 254 0.90643 +1986 255 0.77087 +1986 256 0.78462 +1986 257 0.95798 +1986 258 0.98561 +1986 259 0.86449 +1986 260 0.67759 +1986 261 0.75929 +1986 262 0.87293 +1986 263 0.75352 +1986 264 0.71035 +1986 265 0.78443 +1986 266 0.72588 +1986 267 0.87133 +1986 268 0.93254 +1986 269 0.82768 +1986 270 0.89366 +1986 271 0.67213 +1986 272 0.72980 +1986 273 0.76710 +1986 274 0.76466 +1986 275 0.83515 +1986 276 0.90910 +1986 277 0.86683 +1986 278 0.81654 +1986 279 0.86943 +1986 280 0.81358 +1986 281 0.83317 +1986 282 0.95007 +1986 283 0.93915 +1986 284 0.91942 +1986 285 0.79011 +1986 286 0.77967 +1986 287 0.73574 +1986 288 0.94203 +1986 289 0.76259 +1986 290 0.79706 +1986 291 0.70829 +1986 292 0.72752 +1986 293 0.92815 +1986 294 0.88527 +1986 295 0.73739 +1986 296 0.90801 +1986 297 0.98861 +1986 298 0.94318 +1986 299 0.90287 +1986 300 0.73485 +1986 301 0.74032 +1986 302 0.82818 +1986 303 0.85379 +1986 304 0.88026 +1986 305 0.82743 +1986 306 0.77526 +1986 307 0.75396 +1986 308 0.71166 +1986 309 0.73544 +1986 310 0.76793 +1986 311 0.72409 +1986 312 0.72112 +1986 313 0.68949 +1986 314 0.82596 +1986 315 0.92810 +1986 316 0.72098 +1986 317 0.75307 +1986 318 0.79538 +1986 319 0.77181 +1986 320 0.69594 +1986 321 0.77073 +1986 322 0.63419 +1986 323 0.58491 +1986 324 0.61610 +1986 325 0.63587 +1986 326 0.83540 +1986 327 0.90721 +1986 328 0.88100 +1986 329 0.81654 +1986 330 0.78027 +1986 331 0.74193 +1986 332 0.64432 +1986 333 0.80215 +1986 334 0.77748 +1986 335 0.64593 +1986 336 0.64802 +1986 337 0.69777 +1986 338 0.74490 +1986 339 0.71335 +1986 340 0.63530 +1986 341 0.63960 +1986 342 0.63866 +1986 343 0.65760 +1986 344 0.70809 +1986 345 0.82836 +1986 346 0.90208 +1986 347 0.72879 +1986 348 0.76177 +1986 349 0.73770 +1986 350 0.80684 +1986 351 0.75639 +1986 352 0.74807 +1986 353 0.78107 +1986 354 0.97371 +1986 355 0.79039 +1986 356 0.74100 +1986 357 0.80196 +1986 358 0.73864 +1986 359 0.68713 +1986 360 0.71363 +1986 361 0.67458 +1986 362 0.72703 +1986 363 0.67615 +1986 364 0.61889 +1986 365 0.63924 +1987 1 0.66364 +1987 2 0.61304 +1987 3 0.61303 +1987 4 0.63581 +1987 5 0.67673 +1987 6 0.71940 +1987 7 0.78088 +1987 8 0.77081 +1987 9 0.75003 +1987 10 0.69354 +1987 11 0.61128 +1987 12 0.70898 +1987 13 0.72149 +1987 14 0.66653 +1987 15 0.70138 +1987 16 0.60245 +1987 17 0.83354 +1987 18 0.72699 +1987 19 0.85156 +1987 20 0.78890 +1987 21 0.97087 +1987 22 0.91807 +1987 23 0.82516 +1987 24 0.82918 +1987 25 0.82097 +1987 26 0.70688 +1987 27 0.74281 +1987 28 0.81400 +1987 29 0.73906 +1987 30 0.72030 +1987 31 0.70619 +1987 32 0.73378 +1987 33 0.70739 +1987 34 0.74307 +1987 35 0.87588 +1987 36 0.66020 +1987 37 0.68778 +1987 38 0.68571 +1987 39 0.56808 +1987 40 0.68213 +1987 41 0.65563 +1987 42 0.70480 +1987 43 0.79481 +1987 44 0.73694 +1987 45 0.66240 +1987 46 0.68221 +1987 47 0.72651 +1987 48 0.77817 +1987 49 0.60464 +1987 50 0.67223 +1987 51 0.77077 +1987 52 0.77897 +1987 53 0.79779 +1987 54 0.66238 +1987 55 0.61746 +1987 56 0.77288 +1987 57 0.82935 +1987 58 0.83946 +1987 59 0.67669 +1987 60 0.89368 +1987 61 0.92145 +1987 62 0.86017 +1987 63 0.67944 +1987 64 0.63860 +1987 65 0.74695 +1987 66 0.74294 +1987 67 0.84733 +1987 68 0.87205 +1987 69 0.93106 +1987 70 0.75166 +1987 71 0.77010 +1987 72 0.77348 +1987 73 0.88292 +1987 74 0.74874 +1987 75 0.67920 +1987 76 0.72315 +1987 77 0.78056 +1987 78 0.87662 +1987 79 0.98994 +1987 80 0.85553 +1987 81 0.95660 +1987 82 0.86519 +1987 83 0.78278 +1987 84 0.69052 +1987 85 0.75229 +1987 86 0.74458 +1987 87 0.82583 +1987 88 0.83904 +1987 89 0.86484 +1987 90 0.94840 +1987 91 0.80518 +1987 92 0.75732 +1987 93 0.67711 +1987 94 0.75476 +1987 95 0.75322 +1987 96 0.73642 +1987 97 0.85336 +1987 98 0.88114 +1987 99 0.95391 +1987 100 0.94327 +1987 101 0.88187 +1987 102 0.82608 +1987 103 0.83501 +1987 104 0.87037 +1987 105 0.79362 +1987 106 0.70557 +1987 107 0.73972 +1987 108 0.80358 +1987 109 0.93840 +1987 110 0.99230 +1987 111 0.83236 +1987 112 0.87454 +1987 113 0.70811 +1987 114 0.79377 +1987 115 0.82615 +1987 116 0.79016 +1987 117 0.80593 +1987 118 0.81778 +1987 119 0.87295 +1987 120 0.86255 +1987 121 0.61511 +1987 122 0.73667 +1987 123 0.87008 +1987 124 0.86831 +1987 125 0.88815 +1987 126 0.80008 +1987 127 0.81621 +1987 128 0.84117 +1987 129 0.84817 +1987 130 0.90854 +1987 131 0.86189 +1987 132 0.86405 +1987 133 0.86414 +1987 134 0.88094 +1987 135 0.86820 +1987 136 0.90780 +1987 137 0.97042 +1987 138 0.95177 +1987 139 0.96855 +1987 140 0.90632 +1987 141 0.89490 +1987 142 0.80775 +1987 143 0.87737 +1987 144 0.86202 +1987 145 0.89884 +1987 146 0.91946 +1987 147 0.91019 +1987 148 0.98223 +1987 149 0.99805 +1987 150 0.99034 +1987 151 0.83908 +1987 152 0.86743 +1987 153 0.87853 +1987 154 0.88925 +1987 155 0.90480 +1987 156 0.79909 +1987 157 0.83098 +1987 158 0.85679 +1987 159 0.88207 +1987 160 0.88356 +1987 161 0.91002 +1987 162 0.88633 +1987 163 0.85217 +1987 164 0.91557 +1987 165 0.92466 +1987 166 0.81805 +1987 167 0.80300 +1987 168 0.87662 +1987 169 0.86841 +1987 170 0.85651 +1987 171 0.84073 +1987 172 0.79478 +1987 173 0.87592 +1987 174 0.95862 +1987 175 0.95853 +1987 176 0.94211 +1987 177 0.90626 +1987 178 0.98845 +1987 179 0.95745 +1987 180 0.93234 +1987 181 0.83074 +1987 182 0.79693 +1987 183 0.82816 +1987 184 0.87782 +1987 185 0.74950 +1987 186 0.78696 +1987 187 0.85494 +1987 188 0.82571 +1987 189 0.81425 +1987 190 0.83698 +1987 191 0.86882 +1987 192 0.88722 +1987 193 0.87559 +1987 194 0.85137 +1987 195 0.90975 +1987 196 0.78600 +1987 197 0.81112 +1987 198 0.86759 +1987 199 0.86275 +1987 200 0.90114 +1987 201 0.93712 +1987 202 0.95304 +1987 203 0.89079 +1987 204 0.83837 +1987 205 0.92808 +1987 206 0.96651 +1987 207 0.82991 +1987 208 0.80592 +1987 209 0.78543 +1987 210 0.81101 +1987 211 0.86955 +1987 212 0.96864 +1987 213 0.86572 +1987 214 0.86215 +1987 215 0.97603 +1987 216 0.97901 +1987 217 0.88588 +1987 218 0.88297 +1987 219 0.82874 +1987 220 0.79360 +1987 221 0.79869 +1987 222 0.76686 +1987 223 0.79307 +1987 224 0.80891 +1987 225 0.79946 +1987 226 0.83572 +1987 227 0.80895 +1987 228 0.81744 +1987 229 0.84209 +1987 230 0.85827 +1987 231 0.85414 +1987 232 0.83500 +1987 233 0.94041 +1987 234 0.89663 +1987 235 0.88364 +1987 236 0.92975 +1987 237 0.99420 +1987 238 0.92175 +1987 239 0.85471 +1987 240 0.86680 +1987 241 0.79447 +1987 242 0.80364 +1987 243 0.87997 +1987 244 0.92162 +1987 245 0.99620 +1987 246 0.87558 +1987 247 0.75229 +1987 248 0.66727 +1987 249 0.72471 +1987 250 0.86700 +1987 251 0.91940 +1987 252 0.76981 +1987 253 0.91408 +1987 254 0.91829 +1987 255 0.84318 +1987 256 0.83705 +1987 257 0.86933 +1987 258 0.68677 +1987 259 0.81040 +1987 260 0.73387 +1987 261 0.71276 +1987 262 0.75066 +1987 263 0.81711 +1987 264 0.89769 +1987 265 0.75787 +1987 266 0.76351 +1987 267 0.66281 +1987 268 0.79337 +1987 269 0.87693 +1987 270 0.80414 +1987 271 0.82366 +1987 272 0.81066 +1987 273 0.89251 +1987 274 0.76438 +1987 275 0.65069 +1987 276 0.71902 +1987 277 0.82999 +1987 278 0.93117 +1987 279 0.92815 +1987 280 0.87645 +1987 281 0.94179 +1987 282 0.77614 +1987 283 0.75737 +1987 284 0.80391 +1987 285 0.88890 +1987 286 0.84059 +1987 287 0.83814 +1987 288 0.72722 +1987 289 0.70857 +1987 290 0.71326 +1987 291 0.73504 +1987 292 0.76855 +1987 293 0.69933 +1987 294 0.70532 +1987 295 0.77889 +1987 296 0.81337 +1987 297 0.88746 +1987 298 0.90925 +1987 299 0.90214 +1987 300 0.86188 +1987 301 0.99186 +1987 302 0.82250 +1987 303 0.79158 +1987 304 0.76990 +1987 305 0.76153 +1987 306 0.80814 +1987 307 0.77789 +1987 308 0.83255 +1987 309 0.68144 +1987 310 0.88680 +1987 311 0.95955 +1987 312 0.87769 +1987 313 0.85422 +1987 314 0.76199 +1987 315 0.74687 +1987 316 0.90166 +1987 317 0.97643 +1987 318 0.72166 +1987 319 0.63502 +1987 320 0.65632 +1987 321 0.70867 +1987 322 0.67272 +1987 323 0.76249 +1987 324 0.92077 +1987 325 0.84199 +1987 326 0.79929 +1987 327 0.74598 +1987 328 0.89984 +1987 329 0.93052 +1987 330 0.70056 +1987 331 0.78281 +1987 332 0.77780 +1987 333 0.79509 +1987 334 0.72985 +1987 335 0.75272 +1987 336 0.78419 +1987 337 0.91963 +1987 338 0.78230 +1987 339 0.78818 +1987 340 0.72928 +1987 341 0.88000 +1987 342 0.92593 +1987 343 0.86905 +1987 344 0.74717 +1987 345 0.73186 +1987 346 0.85779 +1987 347 0.84190 +1987 348 0.92459 +1987 349 0.94424 +1987 350 0.95636 +1987 351 0.82864 +1987 352 0.80927 +1987 353 0.79675 +1987 354 0.74522 +1987 355 0.84790 +1987 356 0.90171 +1987 357 0.88594 +1987 358 0.96784 +1987 359 0.76411 +1987 360 0.68402 +1987 361 0.76253 +1987 362 0.77836 +1987 363 0.78535 +1987 364 0.69121 +1987 365 0.64245 +1988 1 0.69754 +1988 2 0.80732 +1988 3 0.72774 +1988 4 0.74517 +1988 5 0.77596 +1988 6 0.74825 +1988 7 0.73652 +1988 8 0.81213 +1988 9 0.69054 +1988 10 0.73680 +1988 11 0.72354 +1988 12 0.73985 +1988 13 0.62166 +1988 14 0.65378 +1988 15 0.64907 +1988 16 0.66009 +1988 17 0.68529 +1988 18 0.81869 +1988 19 0.63858 +1988 20 0.60484 +1988 21 0.67262 +1988 22 0.72081 +1988 23 0.70867 +1988 24 0.71979 +1988 25 0.74342 +1988 26 0.65846 +1988 27 0.65378 +1988 28 0.77195 +1988 29 0.73269 +1988 30 0.70324 +1988 31 0.72727 +1988 32 0.70931 +1988 33 0.74194 +1988 34 0.85493 +1988 35 0.77707 +1988 36 0.76718 +1988 37 0.89012 +1988 38 0.94995 +1988 39 0.75403 +1988 40 0.83455 +1988 41 0.98151 +1988 42 0.96623 +1988 43 0.97983 +1988 44 0.97294 +1988 45 0.96140 +1988 46 0.92572 +1988 47 0.95612 +1988 48 0.84151 +1988 49 0.74532 +1988 50 0.80231 +1988 51 0.78976 +1988 52 0.69904 +1988 53 0.80942 +1988 54 0.72915 +1988 55 0.68691 +1988 56 0.68442 +1988 57 0.73205 +1988 58 0.80523 +1988 59 0.79690 +1988 60 0.68353 +1988 61 0.78285 +1988 62 0.79415 +1988 63 0.79092 +1988 64 0.80978 +1988 65 0.92023 +1988 66 0.96255 +1988 67 0.85643 +1988 68 0.96443 +1988 69 0.97710 +1988 70 0.96783 +1988 71 0.86241 +1988 72 0.93081 +1988 73 0.83662 +1988 74 0.85062 +1988 75 0.86192 +1988 76 0.79082 +1988 77 0.76119 +1988 78 0.74522 +1988 79 0.74530 +1988 80 0.74687 +1988 81 0.81038 +1988 82 0.82189 +1988 83 0.82789 +1988 84 0.87411 +1988 85 0.76874 +1988 86 0.80691 +1988 87 0.80260 +1988 88 0.87440 +1988 89 0.74255 +1988 90 0.77669 +1988 91 0.90033 +1988 92 0.84496 +1988 93 0.76806 +1988 94 0.80063 +1988 95 0.77839 +1988 96 0.81865 +1988 97 0.79038 +1988 98 0.85982 +1988 99 0.82634 +1988 100 0.87123 +1988 101 0.64965 +1988 102 0.74581 +1988 103 0.75539 +1988 104 0.88281 +1988 105 0.95565 +1988 106 0.83591 +1988 107 0.77638 +1988 108 0.69420 +1988 109 0.76813 +1988 110 0.80018 +1988 111 0.88849 +1988 112 0.88691 +1988 113 0.81031 +1988 114 0.82664 +1988 115 0.79118 +1988 116 0.83088 +1988 117 0.84931 +1988 118 0.86487 +1988 119 0.77965 +1988 120 0.69183 +1988 121 0.72489 +1988 122 0.72087 +1988 123 0.82365 +1988 124 0.79033 +1988 125 0.87162 +1988 126 0.80244 +1988 127 0.76115 +1988 128 0.94624 +1988 129 0.99946 +1988 130 0.95086 +1988 131 0.92425 +1988 132 0.87099 +1988 133 0.75617 +1988 134 0.81886 +1988 135 0.85560 +1988 136 0.88526 +1988 137 0.75955 +1988 138 0.91558 +1988 139 0.95343 +1988 140 0.97286 +1988 141 0.94296 +1988 142 0.96612 +1988 143 0.80053 +1988 144 0.71894 +1988 145 0.77760 +1988 146 0.86857 +1988 147 0.86374 +1988 148 0.88445 +1988 149 0.92997 +1988 150 0.94959 +1988 151 0.84684 +1988 152 0.74036 +1988 153 0.82730 +1988 154 0.90047 +1988 155 0.89867 +1988 156 0.87470 +1988 157 0.87905 +1988 158 0.94797 +1988 159 0.99583 +1988 160 0.91740 +1988 161 0.85825 +1988 162 0.88728 +1988 163 0.95180 +1988 164 0.88988 +1988 165 0.65636 +1988 166 0.78193 +1988 167 0.85756 +1988 168 0.91429 +1988 169 0.98544 +1988 170 0.97946 +1988 171 0.90582 +1988 172 0.94709 +1988 173 0.91689 +1988 174 0.90750 +1988 175 0.87782 +1988 176 0.76519 +1988 177 0.78753 +1988 178 0.80816 +1988 179 0.81207 +1988 180 0.93416 +1988 181 0.87105 +1988 182 0.84248 +1988 183 0.86479 +1988 184 0.80727 +1988 185 0.79294 +1988 186 0.80919 +1988 187 0.73893 +1988 188 0.67689 +1988 189 0.79392 +1988 190 0.88840 +1988 191 0.88517 +1988 192 0.97541 +1988 193 0.83352 +1988 194 0.86246 +1988 195 0.82327 +1988 196 0.77469 +1988 197 0.94606 +1988 198 0.92842 +1988 199 0.88447 +1988 200 0.88909 +1988 201 0.83982 +1988 202 0.85038 +1988 203 0.87153 +1988 204 0.94941 +1988 205 0.95991 +1988 206 0.94866 +1988 207 0.93830 +1988 208 0.95512 +1988 209 0.85349 +1988 210 0.77823 +1988 211 0.86170 +1988 212 0.85674 +1988 213 0.89303 +1988 214 0.79790 +1988 215 0.83264 +1988 216 0.84441 +1988 217 0.84296 +1988 218 0.88363 +1988 219 0.94979 +1988 220 0.99065 +1988 221 0.91289 +1988 222 0.97108 +1988 223 0.86459 +1988 224 0.89094 +1988 225 0.72840 +1988 226 0.78262 +1988 227 0.78941 +1988 228 0.79619 +1988 229 0.87840 +1988 230 0.94044 +1988 231 0.81232 +1988 232 0.95487 +1988 233 0.93334 +1988 234 0.80921 +1988 235 0.84980 +1988 236 0.99549 +1988 237 0.72750 +1988 238 0.62698 +1988 239 0.73525 +1988 240 0.77021 +1988 241 0.83749 +1988 242 0.92085 +1988 243 0.79841 +1988 244 0.82292 +1988 245 0.76413 +1988 246 0.86290 +1988 247 0.82158 +1988 248 0.92808 +1988 249 0.81082 +1988 250 0.77473 +1988 251 0.83312 +1988 252 0.66505 +1988 253 0.79557 +1988 254 0.84454 +1988 255 0.82208 +1988 256 0.84742 +1988 257 0.88266 +1988 258 0.78651 +1988 259 0.78621 +1988 260 0.82985 +1988 261 0.95783 +1988 262 0.99058 +1988 263 0.87929 +1988 264 0.99030 +1988 265 0.87672 +1988 266 0.77670 +1988 267 0.75600 +1988 268 0.78760 +1988 269 0.83217 +1988 270 0.83824 +1988 271 0.83069 +1988 272 0.87836 +1988 273 0.93153 +1988 274 0.76382 +1988 275 0.91142 +1988 276 0.90265 +1988 277 0.79350 +1988 278 0.82673 +1988 279 0.94985 +1988 280 0.91582 +1988 281 0.80803 +1988 282 0.73449 +1988 283 0.81813 +1988 284 0.91720 +1988 285 0.89943 +1988 286 0.78870 +1988 287 0.73317 +1988 288 0.76650 +1988 289 0.79952 +1988 290 0.74986 +1988 291 0.94217 +1988 292 0.89300 +1988 293 0.92513 +1988 294 0.75199 +1988 295 0.67648 +1988 296 0.76127 +1988 297 0.70310 +1988 298 0.77108 +1988 299 0.71912 +1988 300 0.74685 +1988 301 0.75619 +1988 302 0.80828 +1988 303 0.83987 +1988 304 0.85946 +1988 305 0.70674 +1988 306 0.63619 +1988 307 0.72932 +1988 308 0.88431 +1988 309 0.75219 +1988 310 0.91080 +1988 311 0.72992 +1988 312 0.64805 +1988 313 0.75590 +1988 314 0.94001 +1988 315 0.93460 +1988 316 0.65668 +1988 317 0.69191 +1988 318 0.79019 +1988 319 0.77930 +1988 320 0.75358 +1988 321 0.76071 +1988 322 0.87724 +1988 323 0.98349 +1988 324 0.89342 +1988 325 0.76070 +1988 326 0.73666 +1988 327 0.65725 +1988 328 0.70924 +1988 329 0.72844 +1988 330 0.78200 +1988 331 0.97726 +1988 332 0.99891 +1988 333 0.92943 +1988 334 0.94658 +1988 335 0.83802 +1988 336 0.67630 +1988 337 0.81573 +1988 338 0.78334 +1988 339 0.83371 +1988 340 0.78636 +1988 341 0.84243 +1988 342 0.64417 +1988 343 0.69051 +1988 344 0.71241 +1988 345 0.75791 +1988 346 0.78586 +1988 347 0.86249 +1988 348 0.67979 +1988 349 0.68395 +1988 350 0.61429 +1988 351 0.73569 +1988 352 0.70896 +1988 353 0.68742 +1988 354 0.77521 +1988 355 0.80648 +1988 356 0.84805 +1988 357 0.86730 +1988 358 0.82489 +1988 359 0.73629 +1988 360 0.74387 +1988 361 0.79464 +1988 362 0.95698 +1988 363 0.99528 +1988 364 0.99522 +1988 365 0.93084 +1988 366 0.92484 +1989 1 0.96446 +1989 2 0.89856 +1989 3 0.81800 +1989 4 0.81181 +1989 5 0.85735 +1989 6 0.87665 +1989 7 0.89123 +1989 8 0.99409 +1989 9 0.82285 +1989 10 0.74966 +1989 11 0.78784 +1989 12 0.83474 +1989 13 0.79405 +1989 14 0.69336 +1989 15 0.67660 +1989 16 0.74677 +1989 17 0.88341 +1989 18 0.89868 +1989 19 0.86750 +1989 20 0.97673 +1989 21 0.90913 +1989 22 0.71447 +1989 23 0.87372 +1989 24 0.87407 +1989 25 0.94066 +1989 26 0.81889 +1989 27 0.88169 +1989 28 0.65460 +1989 29 0.72289 +1989 30 0.72646 +1989 31 0.77741 +1989 32 0.96267 +1989 33 0.91448 +1989 34 0.85714 +1989 35 0.89615 +1989 36 0.83694 +1989 37 0.78516 +1989 38 0.69518 +1989 39 0.83072 +1989 40 0.93834 +1989 41 0.81656 +1989 42 0.77851 +1989 43 0.67479 +1989 44 0.64704 +1989 45 0.65269 +1989 46 0.66617 +1989 47 0.72562 +1989 48 0.83747 +1989 49 0.85243 +1989 50 0.80328 +1989 51 0.79768 +1989 52 0.92503 +1989 53 0.79036 +1989 54 0.80218 +1989 55 0.68671 +1989 56 0.66699 +1989 57 0.70575 +1989 58 0.75981 +1989 59 0.78209 +1989 60 0.83822 +1989 61 0.91038 +1989 62 0.81282 +1989 63 0.75411 +1989 64 0.81595 +1989 65 0.76837 +1989 66 0.73143 +1989 67 0.87006 +1989 68 0.77999 +1989 69 0.75326 +1989 70 0.81114 +1989 71 0.78033 +1989 72 0.77449 +1989 73 0.90032 +1989 74 0.88985 +1989 75 0.76999 +1989 76 0.68909 +1989 77 0.72591 +1989 78 0.73255 +1989 79 0.58982 +1989 80 0.68942 +1989 81 0.70636 +1989 82 0.72671 +1989 83 0.83231 +1989 84 0.68174 +1989 85 0.86195 +1989 86 0.78198 +1989 87 0.86254 +1989 88 0.73083 +1989 89 0.73323 +1989 90 0.79397 +1989 91 0.76301 +1989 92 0.63050 +1989 93 0.62588 +1989 94 0.66561 +1989 95 0.74579 +1989 96 0.79262 +1989 97 0.79329 +1989 98 0.67199 +1989 99 0.67900 +1989 100 0.70857 +1989 101 0.61310 +1989 102 0.71215 +1989 103 0.77209 +1989 104 0.73592 +1989 105 0.87615 +1989 106 0.85584 +1989 107 0.85429 +1989 108 0.96727 +1989 109 0.78896 +1989 110 0.80035 +1989 111 0.78430 +1989 112 0.76312 +1989 113 0.73108 +1989 114 0.78778 +1989 115 0.77582 +1989 116 0.71808 +1989 117 0.78576 +1989 118 0.90457 +1989 119 0.99429 +1989 120 0.99012 +1989 121 0.96362 +1989 122 0.98053 +1989 123 0.94712 +1989 124 0.92508 +1989 125 0.81443 +1989 126 0.92830 +1989 127 0.83481 +1989 128 0.65341 +1989 129 0.73802 +1989 130 0.80508 +1989 131 0.81580 +1989 132 0.89127 +1989 133 0.93937 +1989 134 0.93941 +1989 135 0.90384 +1989 136 0.83750 +1989 137 0.78582 +1989 138 0.82048 +1989 139 0.84321 +1989 140 0.86907 +1989 141 0.86388 +1989 142 0.94129 +1989 143 0.92671 +1989 144 0.98623 +1989 145 0.86956 +1989 146 0.85366 +1989 147 0.75646 +1989 148 0.92458 +1989 149 0.91503 +1989 150 0.84543 +1989 151 0.84790 +1989 152 0.91872 +1989 153 0.90350 +1989 154 0.76941 +1989 155 0.77622 +1989 156 0.83936 +1989 157 0.85087 +1989 158 0.88984 +1989 159 0.93284 +1989 160 0.92325 +1989 161 0.99716 +1989 162 0.96068 +1989 163 0.82936 +1989 164 0.87752 +1989 165 0.98510 +1989 166 0.87167 +1989 167 0.79281 +1989 168 0.87440 +1989 169 0.94860 +1989 170 0.92746 +1989 171 0.70631 +1989 172 0.72001 +1989 173 0.86156 +1989 174 0.98893 +1989 175 0.96153 +1989 176 0.91860 +1989 177 0.82446 +1989 178 0.80062 +1989 179 0.72756 +1989 180 0.79113 +1989 181 0.85076 +1989 182 0.81211 +1989 183 0.84076 +1989 184 0.83624 +1989 185 0.90258 +1989 186 0.94452 +1989 187 0.82487 +1989 188 0.86830 +1989 189 0.84511 +1989 190 0.88321 +1989 191 0.90859 +1989 192 0.97420 +1989 193 0.94051 +1989 194 0.97559 +1989 195 0.97130 +1989 196 0.84734 +1989 197 0.93155 +1989 198 0.96506 +1989 199 0.90725 +1989 200 0.78483 +1989 201 0.73846 +1989 202 0.76931 +1989 203 0.78881 +1989 204 0.81729 +1989 205 0.84278 +1989 206 0.96561 +1989 207 0.84319 +1989 208 0.76993 +1989 209 0.81812 +1989 210 0.82926 +1989 211 0.85388 +1989 212 0.90059 +1989 213 0.83192 +1989 214 0.91498 +1989 215 0.97746 +1989 216 0.79509 +1989 217 0.83337 +1989 218 0.85727 +1989 219 0.85664 +1989 220 0.89778 +1989 221 0.93099 +1989 222 0.80292 +1989 223 0.78830 +1989 224 0.86126 +1989 225 0.72606 +1989 226 0.68405 +1989 227 0.69508 +1989 228 0.68077 +1989 229 0.71791 +1989 230 0.76656 +1989 231 0.77147 +1989 232 0.84614 +1989 233 0.92532 +1989 234 0.92786 +1989 235 0.89309 +1989 236 0.94414 +1989 237 0.94640 +1989 238 0.83986 +1989 239 0.93354 +1989 240 0.92840 +1989 241 0.92903 +1989 242 0.92036 +1989 243 0.81963 +1989 244 0.65511 +1989 245 0.74264 +1989 246 0.79969 +1989 247 0.80851 +1989 248 0.82098 +1989 249 0.97775 +1989 250 0.98242 +1989 251 0.84990 +1989 252 0.77594 +1989 253 0.81152 +1989 254 0.78776 +1989 255 0.83780 +1989 256 0.89526 +1989 257 0.94454 +1989 258 0.95540 +1989 259 0.87907 +1989 260 0.93640 +1989 261 0.89697 +1989 262 0.78727 +1989 263 0.83266 +1989 264 0.82490 +1989 265 0.69388 +1989 266 0.73428 +1989 267 0.88831 +1989 268 0.98890 +1989 269 0.89584 +1989 270 0.93768 +1989 271 0.94748 +1989 272 0.87291 +1989 273 0.90123 +1989 274 0.95633 +1989 275 0.91707 +1989 276 0.93123 +1989 277 0.89252 +1989 278 0.87386 +1989 279 0.98817 +1989 280 0.93138 +1989 281 0.87903 +1989 282 0.78033 +1989 283 0.85928 +1989 284 0.84705 +1989 285 0.79968 +1989 286 0.90111 +1989 287 0.95067 +1989 288 0.78014 +1989 289 0.76446 +1989 290 0.79513 +1989 291 0.68997 +1989 292 0.77207 +1989 293 0.92866 +1989 294 0.91524 +1989 295 0.79784 +1989 296 0.73780 +1989 297 0.79320 +1989 298 0.82877 +1989 299 0.81279 +1989 300 0.82065 +1989 301 0.87789 +1989 302 0.92817 +1989 303 0.92908 +1989 304 0.81069 +1989 305 0.73662 +1989 306 0.73223 +1989 307 0.82937 +1989 308 0.79376 +1989 309 0.77245 +1989 310 0.82027 +1989 311 0.82485 +1989 312 0.87121 +1989 313 0.82015 +1989 314 0.68922 +1989 315 0.70227 +1989 316 0.76344 +1989 317 0.98463 +1989 318 0.91583 +1989 319 0.72612 +1989 320 0.81428 +1989 321 0.76119 +1989 322 0.87464 +1989 323 0.75750 +1989 324 0.74725 +1989 325 0.67476 +1989 326 0.91510 +1989 327 0.89894 +1989 328 0.95275 +1989 329 0.79742 +1989 330 0.89345 +1989 331 0.74787 +1989 332 0.57109 +1989 333 0.71041 +1989 334 0.79970 +1989 335 0.74196 +1989 336 0.77648 +1989 337 0.76213 +1989 338 0.80479 +1989 339 0.63107 +1989 340 0.62428 +1989 341 0.63545 +1989 342 0.58193 +1989 343 0.56526 +1989 344 0.62511 +1989 345 0.75600 +1989 346 0.68406 +1989 347 0.66398 +1989 348 0.75126 +1989 349 0.94673 +1989 350 0.80453 +1989 351 0.67028 +1989 352 0.59780 +1989 353 0.72849 +1989 354 0.71534 +1989 355 0.75726 +1989 356 0.78356 +1989 357 0.74151 +1989 358 0.74787 +1989 359 0.70983 +1989 360 0.71736 +1989 361 0.73513 +1989 362 0.89393 +1989 363 0.74317 +1989 364 0.90800 +1989 365 0.84688 +1990 1 0.96869 +1990 2 0.77382 +1990 3 0.79036 +1990 4 0.87798 +1990 5 0.66876 +1990 6 0.65168 +1990 7 0.73213 +1990 8 0.72294 +1990 9 0.83151 +1990 10 0.76336 +1990 11 0.70536 +1990 12 0.73476 +1990 13 0.75218 +1990 14 0.79765 +1990 15 0.87621 +1990 16 0.90801 +1990 17 0.73655 +1990 18 0.78088 +1990 19 0.88664 +1990 20 0.83650 +1990 21 0.76308 +1990 22 0.88460 +1990 23 0.77237 +1990 24 0.71841 +1990 25 0.77607 +1990 26 0.77461 +1990 27 0.84898 +1990 28 0.88980 +1990 29 0.97474 +1990 30 0.73664 +1990 31 0.77490 +1990 32 0.79274 +1990 33 0.79227 +1990 34 0.79694 +1990 35 0.71309 +1990 36 0.71291 +1990 37 0.73076 +1990 38 0.67639 +1990 39 0.82861 +1990 40 0.80871 +1990 41 0.77671 +1990 42 0.70097 +1990 43 0.74277 +1990 44 0.77323 +1990 45 0.77427 +1990 46 0.81796 +1990 47 0.76506 +1990 48 0.72018 +1990 49 0.73704 +1990 50 0.87926 +1990 51 0.71209 +1990 52 0.72638 +1990 53 0.89628 +1990 54 0.69279 +1990 55 0.80758 +1990 56 0.73265 +1990 57 0.60529 +1990 58 0.79500 +1990 59 0.68512 +1990 60 0.69581 +1990 61 0.67004 +1990 62 0.63549 +1990 63 0.66525 +1990 64 0.71539 +1990 65 0.82220 +1990 66 0.81179 +1990 67 0.97580 +1990 68 0.97056 +1990 69 0.96502 +1990 70 0.88487 +1990 71 0.91550 +1990 72 0.85597 +1990 73 0.71432 +1990 74 0.92343 +1990 75 0.83009 +1990 76 0.82618 +1990 77 0.86181 +1990 78 0.92064 +1990 79 0.80940 +1990 80 0.80038 +1990 81 0.54902 +1990 82 0.64678 +1990 83 0.72114 +1990 84 0.59435 +1990 85 0.69335 +1990 86 0.72265 +1990 87 0.77810 +1990 88 0.76577 +1990 89 0.64401 +1990 90 0.80156 +1990 91 0.82354 +1990 92 0.75673 +1990 93 0.65317 +1990 94 0.62278 +1990 95 0.71964 +1990 96 0.74489 +1990 97 0.78551 +1990 98 0.88430 +1990 99 0.90521 +1990 100 0.77716 +1990 101 0.82602 +1990 102 0.92356 +1990 103 0.81669 +1990 104 0.78841 +1990 105 0.82553 +1990 106 0.78870 +1990 107 0.74889 +1990 108 0.65513 +1990 109 0.77205 +1990 110 0.79608 +1990 111 0.58582 +1990 112 0.72695 +1990 113 0.97765 +1990 114 0.91696 +1990 115 0.88751 +1990 116 0.89401 +1990 117 0.97765 +1990 118 0.87576 +1990 119 0.84412 +1990 120 0.94504 +1990 121 0.81014 +1990 122 0.90327 +1990 123 0.82408 +1990 124 0.75925 +1990 125 0.84309 +1990 126 0.88623 +1990 127 0.83543 +1990 128 0.69650 +1990 129 0.75828 +1990 130 0.77837 +1990 131 0.85297 +1990 132 0.87225 +1990 133 0.85322 +1990 134 0.82659 +1990 135 0.82834 +1990 136 0.79694 +1990 137 0.84457 +1990 138 0.84594 +1990 139 0.97003 +1990 140 0.82091 +1990 141 0.82158 +1990 142 0.88417 +1990 143 0.96768 +1990 144 0.97592 +1990 145 0.89738 +1990 146 0.78362 +1990 147 0.76557 +1990 148 0.81311 +1990 149 0.80077 +1990 150 0.82255 +1990 151 0.87890 +1990 152 0.96688 +1990 153 0.91851 +1990 154 0.92230 +1990 155 0.91348 +1990 156 0.88014 +1990 157 0.73177 +1990 158 0.65872 +1990 159 0.73195 +1990 160 0.73464 +1990 161 0.80917 +1990 162 0.82874 +1990 163 0.82500 +1990 164 0.89040 +1990 165 0.85383 +1990 166 0.86586 +1990 167 0.86877 +1990 168 0.90897 +1990 169 0.94997 +1990 170 0.98441 +1990 171 0.95771 +1990 172 0.91177 +1990 173 0.89003 +1990 174 0.82629 +1990 175 0.89347 +1990 176 0.90931 +1990 177 0.95126 +1990 178 0.89946 +1990 179 0.92987 +1990 180 0.90695 +1990 181 0.80784 +1990 182 0.81840 +1990 183 0.95974 +1990 184 0.99465 +1990 185 0.91566 +1990 186 0.88516 +1990 187 0.97329 +1990 188 0.82397 +1990 189 0.92006 +1990 190 0.92093 +1990 191 0.82014 +1990 192 0.83478 +1990 193 0.87135 +1990 194 0.85197 +1990 195 0.82411 +1990 196 0.88870 +1990 197 0.86013 +1990 198 0.94211 +1990 199 0.79190 +1990 200 0.76077 +1990 201 0.90452 +1990 202 0.96765 +1990 203 0.96733 +1990 204 0.90674 +1990 205 0.85791 +1990 206 0.90242 +1990 207 0.96037 +1990 208 0.85084 +1990 209 0.97692 +1990 210 0.80474 +1990 211 0.73830 +1990 212 0.81478 +1990 213 0.84794 +1990 214 0.84251 +1990 215 0.90312 +1990 216 0.97680 +1990 217 0.97191 +1990 218 0.95594 +1990 219 0.85266 +1990 220 0.75601 +1990 221 0.86201 +1990 222 0.94948 +1990 223 0.94323 +1990 224 0.93456 +1990 225 0.94185 +1990 226 0.88265 +1990 227 0.83940 +1990 228 0.96258 +1990 229 0.81592 +1990 230 0.82844 +1990 231 0.85733 +1990 232 0.83638 +1990 233 0.90271 +1990 234 0.97130 +1990 235 0.95651 +1990 236 0.91139 +1990 237 0.91364 +1990 238 0.80779 +1990 239 0.73748 +1990 240 0.74259 +1990 241 0.79066 +1990 242 0.80206 +1990 243 0.80108 +1990 244 0.79666 +1990 245 0.93789 +1990 246 0.95567 +1990 247 0.95835 +1990 248 0.84838 +1990 249 0.67072 +1990 250 0.84111 +1990 251 0.70806 +1990 252 0.62566 +1990 253 0.74553 +1990 254 0.80510 +1990 255 0.80314 +1990 256 0.77335 +1990 257 0.76955 +1990 258 0.78278 +1990 259 0.76604 +1990 260 0.66947 +1990 261 0.71211 +1990 262 0.76724 +1990 263 0.77295 +1990 264 0.77758 +1990 265 0.76787 +1990 266 0.81759 +1990 267 0.91940 +1990 268 0.77522 +1990 269 0.77757 +1990 270 0.74445 +1990 271 0.87863 +1990 272 0.96974 +1990 273 0.89331 +1990 274 0.76914 +1990 275 0.70692 +1990 276 0.78190 +1990 277 0.93359 +1990 278 0.79216 +1990 279 0.77092 +1990 280 0.74386 +1990 281 0.75282 +1990 282 0.77501 +1990 283 0.83557 +1990 284 0.84118 +1990 285 0.84234 +1990 286 0.92401 +1990 287 0.94161 +1990 288 0.94322 +1990 289 0.81227 +1990 290 0.79628 +1990 291 0.97524 +1990 292 0.90619 +1990 293 0.85429 +1990 294 0.90842 +1990 295 0.86010 +1990 296 0.87086 +1990 297 0.86525 +1990 298 0.87442 +1990 299 0.97302 +1990 300 0.79562 +1990 301 0.71541 +1990 302 0.71064 +1990 303 0.86559 +1990 304 0.71705 +1990 305 0.74336 +1990 306 0.79186 +1990 307 0.90685 +1990 308 0.77295 +1990 309 0.54266 +1990 310 0.68032 +1990 311 0.77151 +1990 312 0.75008 +1990 313 0.75404 +1990 314 0.84382 +1990 315 0.99323 +1990 316 0.93944 +1990 317 0.89646 +1990 318 0.84010 +1990 319 0.73501 +1990 320 0.84502 +1990 321 0.84295 +1990 322 0.94065 +1990 323 0.91869 +1990 324 0.91323 +1990 325 0.93302 +1990 326 0.73885 +1990 327 0.83478 +1990 328 0.90978 +1990 329 0.84421 +1990 330 0.88682 +1990 331 0.74879 +1990 332 0.70145 +1990 333 0.71184 +1990 334 0.74476 +1990 335 0.74229 +1990 336 0.73556 +1990 337 0.77464 +1990 338 0.63546 +1990 339 0.70843 +1990 340 0.81059 +1990 341 0.74029 +1990 342 0.76210 +1990 343 0.77944 +1990 344 0.75015 +1990 345 0.84905 +1990 346 0.72940 +1990 347 0.72502 +1990 348 0.73697 +1990 349 0.75307 +1990 350 0.58968 +1990 351 0.66184 +1990 352 0.76360 +1990 353 0.68901 +1990 354 0.64601 +1990 355 0.80696 +1990 356 0.86522 +1990 357 0.79468 +1990 358 0.89448 +1990 359 0.69570 +1990 360 0.62958 +1990 361 0.69006 +1990 362 0.79670 +1990 363 0.68041 +1990 364 0.52897 +1990 365 0.57170 +1991 1 0.67808 +1991 2 0.58725 +1991 3 0.64183 +1991 4 0.66920 +1991 5 0.64328 +1991 6 0.78615 +1991 7 0.68975 +1991 8 0.60311 +1991 9 0.53048 +1991 10 0.62449 +1991 11 0.60108 +1991 12 0.63911 +1991 13 0.64879 +1991 14 0.70506 +1991 15 0.78203 +1991 16 0.71624 +1991 17 0.69369 +1991 18 0.63809 +1991 19 0.70023 +1991 20 0.80550 +1991 21 0.86718 +1991 22 0.89037 +1991 23 0.92040 +1991 24 0.97372 +1991 25 0.92839 +1991 26 0.96000 +1991 27 0.87635 +1991 28 0.88547 +1991 29 0.92078 +1991 30 0.73751 +1991 31 0.85974 +1991 32 0.86592 +1991 33 0.63733 +1991 34 0.73561 +1991 35 0.75197 +1991 36 0.79453 +1991 37 0.82669 +1991 38 0.80798 +1991 39 0.82384 +1991 40 0.86734 +1991 41 0.78772 +1991 42 0.80130 +1991 43 0.82110 +1991 44 0.84475 +1991 45 0.80190 +1991 46 0.75928 +1991 47 0.99126 +1991 48 0.88311 +1991 49 0.86818 +1991 50 0.74420 +1991 51 0.66515 +1991 52 0.71149 +1991 53 0.75085 +1991 54 0.73462 +1991 55 0.69183 +1991 56 0.65995 +1991 57 0.80291 +1991 58 0.81744 +1991 59 0.86166 +1991 60 0.80788 +1991 61 0.85045 +1991 62 0.78545 +1991 63 0.79234 +1991 64 0.69169 +1991 65 0.70182 +1991 66 0.70196 +1991 67 0.70384 +1991 68 0.69726 +1991 69 0.74732 +1991 70 0.75360 +1991 71 0.77216 +1991 72 0.81976 +1991 73 0.87415 +1991 74 0.74980 +1991 75 0.77655 +1991 76 0.77084 +1991 77 0.84289 +1991 78 0.74666 +1991 79 0.71646 +1991 80 0.81317 +1991 81 0.86254 +1991 82 0.86188 +1991 83 0.76475 +1991 84 0.84825 +1991 85 0.89320 +1991 86 0.83202 +1991 87 0.86913 +1991 88 0.76840 +1991 89 0.76662 +1991 90 0.82312 +1991 91 0.89050 +1991 92 0.96902 +1991 93 0.78595 +1991 94 0.85167 +1991 95 0.76606 +1991 96 0.75161 +1991 97 0.88000 +1991 98 0.83401 +1991 99 0.83937 +1991 100 0.74928 +1991 101 0.75451 +1991 102 0.78205 +1991 103 0.75696 +1991 104 0.86839 +1991 105 0.86871 +1991 106 0.94943 +1991 107 0.95476 +1991 108 0.84034 +1991 109 0.70564 +1991 110 0.68304 +1991 111 0.76127 +1991 112 0.94028 +1991 113 0.94236 +1991 114 0.91120 +1991 115 0.79303 +1991 116 0.80002 +1991 117 0.96413 +1991 118 0.79218 +1991 119 0.92856 +1991 120 0.89669 +1991 121 0.78811 +1991 122 0.82532 +1991 123 0.94729 +1991 124 0.90210 +1991 125 0.89679 +1991 126 0.85547 +1991 127 0.82963 +1991 128 0.90128 +1991 129 0.86424 +1991 130 0.91113 +1991 131 0.82203 +1991 132 0.84723 +1991 133 0.78585 +1991 134 0.82736 +1991 135 0.84682 +1991 136 0.87939 +1991 137 0.79761 +1991 138 0.79662 +1991 139 0.80210 +1991 140 0.86655 +1991 141 0.81878 +1991 142 0.88551 +1991 143 0.81719 +1991 144 0.87890 +1991 145 0.89988 +1991 146 0.88767 +1991 147 0.97051 +1991 148 0.90062 +1991 149 0.90295 +1991 150 0.85500 +1991 151 0.87665 +1991 152 0.75319 +1991 153 0.74257 +1991 154 0.85950 +1991 155 0.87902 +1991 156 0.95277 +1991 157 0.75729 +1991 158 0.72695 +1991 159 0.73345 +1991 160 0.74379 +1991 161 0.79836 +1991 162 0.83236 +1991 163 0.81120 +1991 164 0.86652 +1991 165 0.94393 +1991 166 0.85466 +1991 167 0.86788 +1991 168 0.96778 +1991 169 0.83387 +1991 170 0.71796 +1991 171 0.66192 +1991 172 0.81452 +1991 173 0.98877 +1991 174 0.84379 +1991 175 0.84072 +1991 176 0.79641 +1991 177 0.88660 +1991 178 0.84171 +1991 179 0.76430 +1991 180 0.78992 +1991 181 0.94865 +1991 182 0.86865 +1991 183 0.80227 +1991 184 0.74014 +1991 185 0.84114 +1991 186 0.88574 +1991 187 0.86954 +1991 188 0.88205 +1991 189 0.93532 +1991 190 0.81643 +1991 191 0.84981 +1991 192 0.81544 +1991 193 0.82397 +1991 194 0.82459 +1991 195 0.86380 +1991 196 0.89845 +1991 197 0.96452 +1991 198 0.96844 +1991 199 0.97153 +1991 200 0.98670 +1991 201 0.94564 +1991 202 0.92290 +1991 203 0.98135 +1991 204 0.89228 +1991 205 0.89424 +1991 206 0.84701 +1991 207 0.79799 +1991 208 0.81850 +1991 209 0.83959 +1991 210 0.91695 +1991 211 0.89687 +1991 212 0.93641 +1991 213 0.82022 +1991 214 0.79167 +1991 215 0.78752 +1991 216 0.93176 +1991 217 0.95523 +1991 218 0.92435 +1991 219 0.88857 +1991 220 0.99171 +1991 221 0.90911 +1991 222 0.78809 +1991 223 0.82479 +1991 224 0.82363 +1991 225 0.85817 +1991 226 0.94391 +1991 227 0.92520 +1991 228 0.92286 +1991 229 0.80663 +1991 230 0.84107 +1991 231 0.77207 +1991 232 0.90225 +1991 233 0.97525 +1991 234 0.86870 +1991 235 0.83130 +1991 236 0.94209 +1991 237 0.90185 +1991 238 0.71536 +1991 239 0.79143 +1991 240 0.82434 +1991 241 0.90253 +1991 242 0.97074 +1991 243 0.99569 +1991 244 0.86739 +1991 245 0.86171 +1991 246 0.76752 +1991 247 0.81987 +1991 248 0.78797 +1991 249 0.90267 +1991 250 0.77545 +1991 251 0.79216 +1991 252 0.76559 +1991 253 0.76949 +1991 254 0.82578 +1991 255 0.95580 +1991 256 0.98440 +1991 257 0.95359 +1991 258 0.86741 +1991 259 0.95446 +1991 260 0.90734 +1991 261 0.92325 +1991 262 0.93178 +1991 263 0.92127 +1991 264 0.79124 +1991 265 0.86179 +1991 266 0.89096 +1991 267 0.88311 +1991 268 0.77976 +1991 269 0.71623 +1991 270 0.95844 +1991 271 0.82249 +1991 272 0.80761 +1991 273 0.81440 +1991 274 0.65133 +1991 275 0.66675 +1991 276 0.78668 +1991 277 0.66813 +1991 278 0.84048 +1991 279 0.77461 +1991 280 0.83251 +1991 281 0.87552 +1991 282 0.86377 +1991 283 0.71177 +1991 284 0.90701 +1991 285 0.81728 +1991 286 0.75189 +1991 287 0.73644 +1991 288 0.77876 +1991 289 0.75577 +1991 290 0.87659 +1991 291 0.75344 +1991 292 0.72808 +1991 293 0.77617 +1991 294 0.81164 +1991 295 0.78902 +1991 296 0.75845 +1991 297 0.81164 +1991 298 0.88072 +1991 299 0.84556 +1991 300 0.97399 +1991 301 0.93749 +1991 302 0.78337 +1991 303 0.71539 +1991 304 0.75211 +1991 305 0.78109 +1991 306 0.83493 +1991 307 0.79805 +1991 308 0.79181 +1991 309 0.81062 +1991 310 0.93662 +1991 311 0.76864 +1991 312 0.93129 +1991 313 0.77631 +1991 314 0.79934 +1991 315 0.79745 +1991 316 0.86006 +1991 317 0.80604 +1991 318 0.70299 +1991 319 0.73999 +1991 320 0.73296 +1991 321 0.73736 +1991 322 0.76232 +1991 323 0.69976 +1991 324 0.85916 +1991 325 0.68625 +1991 326 0.78086 +1991 327 0.62988 +1991 328 0.63212 +1991 329 0.68136 +1991 330 0.59089 +1991 331 0.78671 +1991 332 0.70244 +1991 333 0.65031 +1991 334 0.71539 +1991 335 0.74526 +1991 336 0.69419 +1991 337 0.70458 +1991 338 0.67946 +1991 339 0.83868 +1991 340 0.79293 +1991 341 0.76513 +1991 342 0.70767 +1991 343 0.64072 +1991 344 0.66879 +1991 345 0.74304 +1991 346 0.69683 +1991 347 0.56448 +1991 348 0.61406 +1991 349 0.53382 +1991 350 0.56592 +1991 351 0.66464 +1991 352 0.57320 +1991 353 0.66365 +1991 354 0.68256 +1991 355 0.65289 +1991 356 0.86733 +1991 357 0.88732 +1991 358 0.78990 +1991 359 0.74776 +1991 360 0.76538 +1991 361 0.78241 +1991 362 0.82319 +1991 363 0.84798 +1991 364 0.96563 +1991 365 0.80604 +1992 1 0.58581 +1992 2 0.63567 +1992 3 0.69756 +1992 4 0.73437 +1992 5 0.70637 +1992 6 0.86436 +1992 7 0.78927 +1992 8 0.75135 +1992 9 0.76740 +1992 10 0.79207 +1992 11 0.78918 +1992 12 0.95154 +1992 13 0.95090 +1992 14 0.71842 +1992 15 0.76252 +1992 16 0.93347 +1992 17 0.90181 +1992 18 0.65455 +1992 19 0.60778 +1992 20 0.64456 +1992 21 0.73682 +1992 22 0.75434 +1992 23 0.85371 +1992 24 0.79663 +1992 25 0.89855 +1992 26 0.92535 +1992 27 0.86161 +1992 28 0.80936 +1992 29 0.92887 +1992 30 0.74782 +1992 31 0.75676 +1992 32 0.71101 +1992 33 0.66347 +1992 34 0.76420 +1992 35 0.85852 +1992 36 0.82077 +1992 37 0.72875 +1992 38 0.73541 +1992 39 0.90299 +1992 40 0.76658 +1992 41 0.63945 +1992 42 0.71374 +1992 43 0.78343 +1992 44 0.86251 +1992 45 0.98136 +1992 46 0.78789 +1992 47 0.77905 +1992 48 0.77211 +1992 49 0.74117 +1992 50 0.67762 +1992 51 0.90587 +1992 52 0.74622 +1992 53 0.85113 +1992 54 0.81530 +1992 55 0.84088 +1992 56 0.69805 +1992 57 0.73384 +1992 58 0.70097 +1992 59 0.59233 +1992 60 0.62296 +1992 61 0.68799 +1992 62 0.70458 +1992 63 0.65249 +1992 64 0.73658 +1992 65 0.83100 +1992 66 0.96254 +1992 67 0.93035 +1992 68 0.80010 +1992 69 0.77082 +1992 70 0.78914 +1992 71 0.80261 +1992 72 0.65760 +1992 73 0.69623 +1992 74 0.75991 +1992 75 0.83652 +1992 76 0.78403 +1992 77 0.70549 +1992 78 0.82069 +1992 79 0.70449 +1992 80 0.87224 +1992 81 0.85039 +1992 82 0.64244 +1992 83 0.67486 +1992 84 0.72810 +1992 85 0.78349 +1992 86 0.75471 +1992 87 0.79847 +1992 88 0.84440 +1992 89 0.80673 +1992 90 0.74701 +1992 91 0.86527 +1992 92 0.78372 +1992 93 0.60115 +1992 94 0.60145 +1992 95 0.69986 +1992 96 0.71523 +1992 97 0.80201 +1992 98 0.83795 +1992 99 0.83600 +1992 100 0.91179 +1992 101 0.98154 +1992 102 0.81469 +1992 103 0.73087 +1992 104 0.82273 +1992 105 0.79838 +1992 106 0.76365 +1992 107 0.82163 +1992 108 0.80581 +1992 109 0.80689 +1992 110 0.70584 +1992 111 0.66261 +1992 112 0.67768 +1992 113 0.74717 +1992 114 0.83313 +1992 115 0.77996 +1992 116 0.80732 +1992 117 0.89062 +1992 118 0.82572 +1992 119 0.79125 +1992 120 0.81258 +1992 121 0.84802 +1992 122 0.96122 +1992 123 0.91680 +1992 124 0.87009 +1992 125 0.86003 +1992 126 0.87266 +1992 127 0.91176 +1992 128 0.89130 +1992 129 0.70474 +1992 130 0.69172 +1992 131 0.76235 +1992 132 0.82941 +1992 133 0.77587 +1992 134 0.83534 +1992 135 0.93124 +1992 136 0.86717 +1992 137 0.82675 +1992 138 0.81242 +1992 139 0.76578 +1992 140 0.81289 +1992 141 0.71274 +1992 142 0.77844 +1992 143 0.85118 +1992 144 0.96297 +1992 145 0.89167 +1992 146 0.94237 +1992 147 0.90431 +1992 148 0.98462 +1992 149 0.78471 +1992 150 0.74696 +1992 151 0.81306 +1992 152 0.83943 +1992 153 0.88824 +1992 154 0.93220 +1992 155 0.89166 +1992 156 0.91017 +1992 157 0.98687 +1992 158 0.98863 +1992 159 0.95680 +1992 160 0.87953 +1992 161 0.93472 +1992 162 0.90157 +1992 163 0.95765 +1992 164 0.94303 +1992 165 0.90364 +1992 166 0.86208 +1992 167 0.86597 +1992 168 0.87833 +1992 169 0.91878 +1992 170 0.97273 +1992 171 0.86570 +1992 172 0.83685 +1992 173 0.85972 +1992 174 0.77872 +1992 175 0.77471 +1992 176 0.74548 +1992 177 0.82544 +1992 178 0.88907 +1992 179 0.90283 +1992 180 0.82671 +1992 181 0.75368 +1992 182 0.83270 +1992 183 0.86690 +1992 184 0.90853 +1992 185 0.95545 +1992 186 0.97544 +1992 187 0.88205 +1992 188 0.89952 +1992 189 0.96222 +1992 190 0.91231 +1992 191 0.81577 +1992 192 0.75489 +1992 193 0.69835 +1992 194 0.82760 +1992 195 0.99522 +1992 196 0.90955 +1992 197 0.84440 +1992 198 0.84165 +1992 199 0.81949 +1992 200 0.88210 +1992 201 0.92886 +1992 202 0.99400 +1992 203 0.95891 +1992 204 0.74634 +1992 205 0.86405 +1992 206 0.77822 +1992 207 0.90738 +1992 208 0.75132 +1992 209 0.86219 +1992 210 0.84853 +1992 211 0.93171 +1992 212 0.91511 +1992 213 0.84640 +1992 214 0.73465 +1992 215 0.83938 +1992 216 0.95047 +1992 217 0.78811 +1992 218 0.77784 +1992 219 0.79683 +1992 220 0.83506 +1992 221 0.99435 +1992 222 0.95457 +1992 223 0.81556 +1992 224 0.96065 +1992 225 0.83905 +1992 226 0.93565 +1992 227 0.89398 +1992 228 0.91176 +1992 229 0.77185 +1992 230 0.76473 +1992 231 0.96278 +1992 232 0.82124 +1992 233 0.89141 +1992 234 0.69284 +1992 235 0.67222 +1992 236 0.77107 +1992 237 0.82527 +1992 238 0.94785 +1992 239 0.92689 +1992 240 0.84681 +1992 241 0.88562 +1992 242 0.81873 +1992 243 0.75229 +1992 244 0.92370 +1992 245 0.88450 +1992 246 0.80703 +1992 247 0.83298 +1992 248 0.81492 +1992 249 0.96332 +1992 250 0.90524 +1992 251 0.84215 +1992 252 0.87403 +1992 253 0.82309 +1992 254 0.82527 +1992 255 0.70251 +1992 256 0.76094 +1992 257 0.87038 +1992 258 0.94820 +1992 259 0.76987 +1992 260 0.80358 +1992 261 0.96844 +1992 262 0.85820 +1992 263 0.76431 +1992 264 0.78065 +1992 265 0.76054 +1992 266 0.88438 +1992 267 0.87648 +1992 268 0.79961 +1992 269 0.79272 +1992 270 0.74300 +1992 271 0.66780 +1992 272 0.70060 +1992 273 0.75837 +1992 274 0.87763 +1992 275 0.94633 +1992 276 0.97572 +1992 277 0.68822 +1992 278 0.72781 +1992 279 0.76841 +1992 280 0.79620 +1992 281 0.77638 +1992 282 0.80260 +1992 283 0.86990 +1992 284 0.91546 +1992 285 0.87469 +1992 286 0.82942 +1992 287 0.90520 +1992 288 0.91175 +1992 289 0.79721 +1992 290 0.67711 +1992 291 0.77703 +1992 292 0.77511 +1992 293 0.82819 +1992 294 0.91754 +1992 295 0.95249 +1992 296 0.97784 +1992 297 0.92356 +1992 298 0.90692 +1992 299 0.78532 +1992 300 0.81168 +1992 301 0.77736 +1992 302 0.71058 +1992 303 0.70026 +1992 304 0.70352 +1992 305 0.76343 +1992 306 0.79326 +1992 307 0.78375 +1992 308 0.84895 +1992 309 0.77800 +1992 310 0.74862 +1992 311 0.82222 +1992 312 0.89604 +1992 313 0.79830 +1992 314 0.77583 +1992 315 0.77443 +1992 316 0.83446 +1992 317 0.80396 +1992 318 0.82206 +1992 319 0.97238 +1992 320 0.91826 +1992 321 0.76696 +1992 322 0.77600 +1992 323 0.76724 +1992 324 0.72668 +1992 325 0.77655 +1992 326 0.74541 +1992 327 0.68607 +1992 328 0.77295 +1992 329 0.79606 +1992 330 0.73172 +1992 331 0.80623 +1992 332 0.72604 +1992 333 0.84167 +1992 334 0.83659 +1992 335 0.98225 +1992 336 0.94474 +1992 337 0.99286 +1992 338 0.89630 +1992 339 0.97719 +1992 340 0.71498 +1992 341 0.64894 +1992 342 0.89134 +1992 343 0.92143 +1992 344 0.95621 +1992 345 0.87053 +1992 346 0.93545 +1992 347 0.72785 +1992 348 0.58827 +1992 349 0.70291 +1992 350 0.74251 +1992 351 0.82083 +1992 352 0.66390 +1992 353 0.77882 +1992 354 0.65285 +1992 355 0.55388 +1992 356 0.68862 +1992 357 0.71790 +1992 358 0.87288 +1992 359 0.77671 +1992 360 0.73582 +1992 361 0.85889 +1992 362 0.87979 +1992 363 0.84491 +1992 364 0.78235 +1992 365 0.72529 +1992 366 0.64881 +1993 1 0.69091 +1993 2 0.81327 +1993 3 0.71593 +1993 4 0.80594 +1993 5 0.75933 +1993 6 0.70259 +1993 7 0.77850 +1993 8 0.69417 +1993 9 0.68632 +1993 10 0.78139 +1993 11 0.64410 +1993 12 0.83347 +1993 13 0.76714 +1993 14 0.70705 +1993 15 0.74760 +1993 16 0.68035 +1993 17 0.63186 +1993 18 0.74992 +1993 19 0.56431 +1993 20 0.66258 +1993 21 0.79222 +1993 22 0.58595 +1993 23 0.71258 +1993 24 0.71063 +1993 25 0.75510 +1993 26 0.56068 +1993 27 0.56613 +1993 28 0.66689 +1993 29 0.82386 +1993 30 0.54494 +1993 31 0.61505 +1993 32 0.64900 +1993 33 0.56927 +1993 34 0.63129 +1993 35 0.70734 +1993 36 0.59622 +1993 37 0.60910 +1993 38 0.71120 +1993 39 0.78224 +1993 40 0.84272 +1993 41 0.82313 +1993 42 0.62972 +1993 43 0.62677 +1993 44 0.72731 +1993 45 0.58463 +1993 46 0.57942 +1993 47 0.65247 +1993 48 0.68501 +1993 49 0.86911 +1993 50 0.96968 +1993 51 0.72606 +1993 52 0.71474 +1993 53 0.80779 +1993 54 0.80727 +1993 55 0.86785 +1993 56 0.87190 +1993 57 0.74510 +1993 58 0.79098 +1993 59 0.78729 +1993 60 0.81052 +1993 61 0.88014 +1993 62 0.95311 +1993 63 0.93506 +1993 64 0.77264 +1993 65 0.74885 +1993 66 0.71042 +1993 67 0.66238 +1993 68 0.72806 +1993 69 0.80803 +1993 70 0.87959 +1993 71 0.92311 +1993 72 0.77278 +1993 73 0.72518 +1993 74 0.79375 +1993 75 0.83030 +1993 76 0.78373 +1993 77 0.59340 +1993 78 0.67102 +1993 79 0.77792 +1993 80 0.56461 +1993 81 0.60366 +1993 82 0.71841 +1993 83 0.74387 +1993 84 0.75020 +1993 85 0.66946 +1993 86 0.76104 +1993 87 0.95647 +1993 88 0.89993 +1993 89 0.97385 +1993 90 0.84836 +1993 91 0.73401 +1993 92 0.78518 +1993 93 0.93136 +1993 94 0.95162 +1993 95 0.84772 +1993 96 0.87361 +1993 97 0.88364 +1993 98 0.94265 +1993 99 0.83738 +1993 100 0.72361 +1993 101 0.76105 +1993 102 0.80341 +1993 103 0.80815 +1993 104 0.79161 +1993 105 0.80220 +1993 106 0.75588 +1993 107 0.82739 +1993 108 0.80024 +1993 109 0.79856 +1993 110 0.89488 +1993 111 0.67021 +1993 112 0.70166 +1993 113 0.74541 +1993 114 0.82753 +1993 115 0.86366 +1993 116 0.98261 +1993 117 0.89467 +1993 118 0.85155 +1993 119 0.81296 +1993 120 0.72827 +1993 121 0.81782 +1993 122 0.81502 +1993 123 0.82409 +1993 124 0.87111 +1993 125 0.94366 +1993 126 0.77467 +1993 127 0.79740 +1993 128 0.83006 +1993 129 0.84693 +1993 130 0.85964 +1993 131 0.94142 +1993 132 0.97360 +1993 133 0.88656 +1993 134 0.94154 +1993 135 0.98684 +1993 136 0.88166 +1993 137 0.88878 +1993 138 0.75851 +1993 139 0.79056 +1993 140 0.82219 +1993 141 0.86191 +1993 142 0.86798 +1993 143 0.88768 +1993 144 0.87806 +1993 145 0.97232 +1993 146 0.87427 +1993 147 0.61491 +1993 148 0.83115 +1993 149 0.80137 +1993 150 0.86941 +1993 151 0.83136 +1993 152 0.90406 +1993 153 0.91448 +1993 154 0.88679 +1993 155 0.97121 +1993 156 0.98087 +1993 157 0.94954 +1993 158 0.90145 +1993 159 0.88043 +1993 160 0.82062 +1993 161 0.89812 +1993 162 0.95796 +1993 163 0.95722 +1993 164 0.92720 +1993 165 0.87425 +1993 166 0.79805 +1993 167 0.81706 +1993 168 0.84899 +1993 169 0.87906 +1993 170 0.97819 +1993 171 0.90206 +1993 172 0.85066 +1993 173 0.85615 +1993 174 0.95839 +1993 175 0.93244 +1993 176 0.83139 +1993 177 0.85878 +1993 178 0.88473 +1993 179 0.80375 +1993 180 0.73012 +1993 181 0.78743 +1993 182 0.81961 +1993 183 0.88175 +1993 184 0.90837 +1993 185 0.94895 +1993 186 0.98865 +1993 187 0.85540 +1993 188 0.69012 +1993 189 0.71575 +1993 190 0.76603 +1993 191 0.84876 +1993 192 0.90628 +1993 193 0.90068 +1993 194 0.92721 +1993 195 0.90792 +1993 196 0.92827 +1993 197 0.91667 +1993 198 0.86301 +1993 199 0.87717 +1993 200 0.92409 +1993 201 0.96317 +1993 202 0.84148 +1993 203 0.79301 +1993 204 0.85819 +1993 205 0.70477 +1993 206 0.79953 +1993 207 0.86950 +1993 208 0.89272 +1993 209 0.94051 +1993 210 0.93367 +1993 211 0.90929 +1993 212 0.78389 +1993 213 0.89456 +1993 214 0.93884 +1993 215 0.88558 +1993 216 0.78183 +1993 217 0.79782 +1993 218 0.85088 +1993 219 0.83247 +1993 220 0.93905 +1993 221 0.81874 +1993 222 0.80962 +1993 223 0.84166 +1993 224 0.82815 +1993 225 0.87671 +1993 226 0.90702 +1993 227 0.73435 +1993 228 0.81099 +1993 229 0.85978 +1993 230 0.77791 +1993 231 0.81876 +1993 232 0.80993 +1993 233 0.91167 +1993 234 0.80592 +1993 235 0.75399 +1993 236 0.80285 +1993 237 0.85373 +1993 238 0.80636 +1993 239 0.90692 +1993 240 0.80729 +1993 241 0.69093 +1993 242 0.77541 +1993 243 0.81349 +1993 244 0.82802 +1993 245 0.81527 +1993 246 0.94066 +1993 247 0.87915 +1993 248 0.66924 +1993 249 0.69212 +1993 250 0.75498 +1993 251 0.79793 +1993 252 0.75742 +1993 253 0.80798 +1993 254 0.90602 +1993 255 0.76098 +1993 256 0.77752 +1993 257 0.73789 +1993 258 0.77229 +1993 259 0.94791 +1993 260 0.92838 +1993 261 0.92553 +1993 262 0.75400 +1993 263 0.76300 +1993 264 0.85543 +1993 265 0.85392 +1993 266 0.84219 +1993 267 0.81088 +1993 268 0.74983 +1993 269 0.76479 +1993 270 0.62263 +1993 271 0.72835 +1993 272 0.75935 +1993 273 0.68470 +1993 274 0.80398 +1993 275 0.76197 +1993 276 0.82734 +1993 277 0.80365 +1993 278 0.84047 +1993 279 0.77371 +1993 280 0.87400 +1993 281 0.80824 +1993 282 0.77683 +1993 283 0.95109 +1993 284 0.75611 +1993 285 0.71562 +1993 286 0.71936 +1993 287 0.73194 +1993 288 0.68124 +1993 289 0.75094 +1993 290 0.78947 +1993 291 0.92991 +1993 292 0.81609 +1993 293 0.77036 +1993 294 0.67595 +1993 295 0.67616 +1993 296 0.67797 +1993 297 0.75806 +1993 298 0.77344 +1993 299 0.82808 +1993 300 0.76377 +1993 301 0.74422 +1993 302 0.84596 +1993 303 0.95542 +1993 304 0.77897 +1993 305 0.69273 +1993 306 0.70783 +1993 307 0.70201 +1993 308 0.83279 +1993 309 0.96987 +1993 310 0.85831 +1993 311 0.79181 +1993 312 0.67441 +1993 313 0.83140 +1993 314 0.82803 +1993 315 0.88557 +1993 316 0.65088 +1993 317 0.58416 +1993 318 0.60763 +1993 319 0.69143 +1993 320 0.75782 +1993 321 0.79632 +1993 322 0.74719 +1993 323 0.82505 +1993 324 0.96767 +1993 325 0.66980 +1993 326 0.85873 +1993 327 0.90986 +1993 328 0.77595 +1993 329 0.70401 +1993 330 0.77166 +1993 331 0.80421 +1993 332 0.69828 +1993 333 0.63687 +1993 334 0.75133 +1993 335 0.79378 +1993 336 0.80920 +1993 337 0.63088 +1993 338 0.78983 +1993 339 0.87464 +1993 340 0.68961 +1993 341 0.73668 +1993 342 0.69412 +1993 343 0.64293 +1993 344 0.76515 +1993 345 0.76334 +1993 346 0.73373 +1993 347 0.69881 +1993 348 0.76764 +1993 349 0.70112 +1993 350 0.76933 +1993 351 0.74014 +1993 352 0.65616 +1993 353 0.66018 +1993 354 0.86761 +1993 355 0.73620 +1993 356 0.77027 +1993 357 0.67744 +1993 358 0.67401 +1993 359 0.87122 +1993 360 0.95338 +1993 361 0.82494 +1993 362 0.82348 +1993 363 0.84607 +1993 364 0.83839 +1993 365 0.76164 +1994 1 0.81115 +1994 2 0.68437 +1994 3 0.75601 +1994 4 0.84127 +1994 5 0.71849 +1994 6 0.79416 +1994 7 0.74759 +1994 8 0.74899 +1994 9 0.71858 +1994 10 0.82277 +1994 11 0.81798 +1994 12 0.93128 +1994 13 0.93470 +1994 14 0.76773 +1994 15 0.63353 +1994 16 0.74067 +1994 17 0.79259 +1994 18 0.75425 +1994 19 0.74280 +1994 20 0.80366 +1994 21 0.79626 +1994 22 0.82175 +1994 23 0.86735 +1994 24 0.88695 +1994 25 0.78346 +1994 26 0.56559 +1994 27 0.59102 +1994 28 0.64636 +1994 29 0.71055 +1994 30 0.67251 +1994 31 0.57446 +1994 32 0.64925 +1994 33 0.67891 +1994 34 0.87120 +1994 35 0.75968 +1994 36 0.71069 +1994 37 0.71150 +1994 38 0.68468 +1994 39 0.66719 +1994 40 0.68064 +1994 41 0.77866 +1994 42 0.78906 +1994 43 0.75014 +1994 44 0.65616 +1994 45 0.67289 +1994 46 0.85087 +1994 47 0.94142 +1994 48 0.94709 +1994 49 0.85135 +1994 50 0.94681 +1994 51 0.88286 +1994 52 0.80705 +1994 53 0.79833 +1994 54 0.85771 +1994 55 0.84212 +1994 56 0.86444 +1994 57 0.81911 +1994 58 0.81985 +1994 59 0.77981 +1994 60 0.72516 +1994 61 0.60790 +1994 62 0.66613 +1994 63 0.72288 +1994 64 0.75421 +1994 65 0.77870 +1994 66 0.56588 +1994 67 0.60596 +1994 68 0.52777 +1994 69 0.59370 +1994 70 0.69007 +1994 71 0.76895 +1994 72 0.85146 +1994 73 0.98035 +1994 74 0.88175 +1994 75 0.80817 +1994 76 0.92530 +1994 77 0.86225 +1994 78 0.72673 +1994 79 0.57798 +1994 80 0.65615 +1994 81 0.71754 +1994 82 0.73117 +1994 83 0.65300 +1994 84 0.63245 +1994 85 0.71270 +1994 86 0.81997 +1994 87 0.75476 +1994 88 0.66131 +1994 89 0.75408 +1994 90 0.87416 +1994 91 0.81551 +1994 92 0.83729 +1994 93 0.72740 +1994 94 0.72917 +1994 95 0.82521 +1994 96 0.84425 +1994 97 0.84439 +1994 98 0.89628 +1994 99 0.84005 +1994 100 0.93238 +1994 101 0.97558 +1994 102 0.95148 +1994 103 0.98691 +1994 104 0.99573 +1994 105 0.82752 +1994 106 0.84047 +1994 107 0.83068 +1994 108 0.84478 +1994 109 0.80651 +1994 110 0.84783 +1994 111 0.76549 +1994 112 0.76336 +1994 113 0.66907 +1994 114 0.82655 +1994 115 0.64474 +1994 116 0.76628 +1994 117 0.83182 +1994 118 0.87289 +1994 119 0.86620 +1994 120 0.84516 +1994 121 0.89434 +1994 122 0.92253 +1994 123 0.94828 +1994 124 0.83833 +1994 125 0.78742 +1994 126 0.83144 +1994 127 0.85951 +1994 128 0.80796 +1994 129 0.81477 +1994 130 0.88500 +1994 131 0.90163 +1994 132 0.69003 +1994 133 0.66034 +1994 134 0.82872 +1994 135 0.82554 +1994 136 0.74584 +1994 137 0.83824 +1994 138 0.90197 +1994 139 0.98072 +1994 140 0.90059 +1994 141 0.81062 +1994 142 0.92159 +1994 143 0.95542 +1994 144 0.85141 +1994 145 0.89042 +1994 146 0.87877 +1994 147 0.89573 +1994 148 0.82412 +1994 149 0.78221 +1994 150 0.64460 +1994 151 0.73489 +1994 152 0.81550 +1994 153 0.82581 +1994 154 0.73099 +1994 155 0.73883 +1994 156 0.72701 +1994 157 0.75801 +1994 158 0.81900 +1994 159 0.94230 +1994 160 0.97153 +1994 161 0.97652 +1994 162 0.96684 +1994 163 0.93168 +1994 164 0.79733 +1994 165 0.82035 +1994 166 0.96165 +1994 167 0.94682 +1994 168 0.91395 +1994 169 0.94155 +1994 170 0.92624 +1994 171 0.98226 +1994 172 0.93702 +1994 173 0.86006 +1994 174 0.82039 +1994 175 0.92100 +1994 176 0.95017 +1994 177 0.87240 +1994 178 0.84670 +1994 179 0.70915 +1994 180 0.76010 +1994 181 0.81112 +1994 182 0.84192 +1994 183 0.68244 +1994 184 0.80165 +1994 185 0.88862 +1994 186 0.89685 +1994 187 0.70769 +1994 188 0.84936 +1994 189 0.72365 +1994 190 0.82061 +1994 191 0.85982 +1994 192 0.84442 +1994 193 0.70093 +1994 194 0.83020 +1994 195 0.85475 +1994 196 0.90095 +1994 197 0.96703 +1994 198 0.97075 +1994 199 0.86554 +1994 200 0.82075 +1994 201 0.85432 +1994 202 0.90547 +1994 203 0.91717 +1994 204 0.91760 +1994 205 0.99478 +1994 206 0.98199 +1994 207 0.96184 +1994 208 0.91954 +1994 209 0.93355 +1994 210 0.87562 +1994 211 0.89102 +1994 212 0.95420 +1994 213 0.99296 +1994 214 0.97670 +1994 215 0.93840 +1994 216 0.92691 +1994 217 0.92125 +1994 218 0.81561 +1994 219 0.85073 +1994 220 0.97080 +1994 221 0.78199 +1994 222 0.75505 +1994 223 0.81437 +1994 224 0.81022 +1994 225 0.82132 +1994 226 0.92897 +1994 227 0.76177 +1994 228 0.77930 +1994 229 0.82180 +1994 230 0.79840 +1994 231 0.80754 +1994 232 0.81703 +1994 233 0.86397 +1994 234 0.87110 +1994 235 0.91993 +1994 236 0.95181 +1994 237 0.79822 +1994 238 0.81534 +1994 239 0.83138 +1994 240 0.87602 +1994 241 0.86542 +1994 242 0.79247 +1994 243 0.76904 +1994 244 0.90149 +1994 245 0.82053 +1994 246 0.82994 +1994 247 0.81644 +1994 248 0.85095 +1994 249 0.91327 +1994 250 0.90865 +1994 251 0.81889 +1994 252 0.78403 +1994 253 0.79362 +1994 254 0.85258 +1994 255 0.74718 +1994 256 0.80015 +1994 257 0.83266 +1994 258 0.97574 +1994 259 0.93502 +1994 260 0.85187 +1994 261 0.80046 +1994 262 0.89632 +1994 263 0.85027 +1994 264 0.92431 +1994 265 0.70979 +1994 266 0.80805 +1994 267 0.91182 +1994 268 0.89459 +1994 269 0.86731 +1994 270 0.94865 +1994 271 0.90341 +1994 272 0.90592 +1994 273 0.78804 +1994 274 0.82122 +1994 275 0.71564 +1994 276 0.92637 +1994 277 0.81878 +1994 278 0.86466 +1994 279 0.82843 +1994 280 0.74408 +1994 281 0.90770 +1994 282 0.83743 +1994 283 0.73918 +1994 284 0.91976 +1994 285 0.76196 +1994 286 0.88390 +1994 287 0.70980 +1994 288 0.64152 +1994 289 0.72271 +1994 290 0.82829 +1994 291 0.73888 +1994 292 0.67355 +1994 293 0.68041 +1994 294 0.74997 +1994 295 0.74434 +1994 296 0.95424 +1994 297 0.84040 +1994 298 0.73347 +1994 299 0.71068 +1994 300 0.76127 +1994 301 0.79009 +1994 302 0.79001 +1994 303 0.90899 +1994 304 0.86465 +1994 305 0.67250 +1994 306 0.71738 +1994 307 0.79074 +1994 308 0.79748 +1994 309 0.89725 +1994 310 0.96553 +1994 311 0.93965 +1994 312 0.76376 +1994 313 0.72069 +1994 314 0.72977 +1994 315 0.78023 +1994 316 0.72790 +1994 317 0.77316 +1994 318 0.84376 +1994 319 0.88967 +1994 320 0.68447 +1994 321 0.74529 +1994 322 0.59843 +1994 323 0.59968 +1994 324 0.69482 +1994 325 0.93253 +1994 326 0.69640 +1994 327 0.67834 +1994 328 0.81933 +1994 329 0.89006 +1994 330 0.75285 +1994 331 0.74200 +1994 332 0.75012 +1994 333 0.79611 +1994 334 0.78652 +1994 335 0.78690 +1994 336 0.75353 +1994 337 0.78590 +1994 338 0.60991 +1994 339 0.60062 +1994 340 0.65918 +1994 341 0.65678 +1994 342 0.67618 +1994 343 0.79830 +1994 344 0.74540 +1994 345 0.70818 +1994 346 0.69166 +1994 347 0.70123 +1994 348 0.65703 +1994 349 0.73389 +1994 350 0.65237 +1994 351 0.68409 +1994 352 0.69269 +1994 353 0.67049 +1994 354 0.59846 +1994 355 0.84721 +1994 356 0.55826 +1994 357 0.68272 +1994 358 0.74107 +1994 359 0.64381 +1994 360 0.79655 +1994 361 0.81626 +1994 362 0.78605 +1994 363 0.76112 +1994 364 0.78299 +1994 365 0.64488 +1995 1 0.63038 +1995 2 0.67530 +1995 3 0.48041 +1995 4 0.55776 +1995 5 0.60412 +1995 6 0.62705 +1995 7 0.67591 +1995 8 0.90446 +1995 9 0.93767 +1995 10 0.78094 +1995 11 0.67300 +1995 12 0.78285 +1995 13 0.75341 +1995 14 0.79187 +1995 15 0.78559 +1995 16 0.87257 +1995 17 0.89322 +1995 18 0.97509 +1995 19 0.71855 +1995 20 0.71018 +1995 21 0.80065 +1995 22 0.75853 +1995 23 0.80649 +1995 24 0.77691 +1995 25 0.82975 +1995 26 0.95724 +1995 27 0.77026 +1995 28 0.63733 +1995 29 0.76994 +1995 30 0.77606 +1995 31 0.85375 +1995 32 0.95360 +1995 33 0.77530 +1995 34 0.74845 +1995 35 0.91898 +1995 36 0.79474 +1995 37 0.84318 +1995 38 0.83526 +1995 39 0.81294 +1995 40 0.85350 +1995 41 0.83191 +1995 42 0.78450 +1995 43 0.70757 +1995 44 0.68168 +1995 45 0.70842 +1995 46 0.68808 +1995 47 0.76598 +1995 48 0.70685 +1995 49 0.69445 +1995 50 0.74201 +1995 51 0.88812 +1995 52 0.91919 +1995 53 0.94869 +1995 54 0.83613 +1995 55 0.75842 +1995 56 0.78339 +1995 57 0.82783 +1995 58 0.75728 +1995 59 0.80207 +1995 60 0.71148 +1995 61 0.76970 +1995 62 0.67418 +1995 63 0.70578 +1995 64 0.69907 +1995 65 0.77326 +1995 66 0.78418 +1995 67 0.76020 +1995 68 0.77020 +1995 69 0.82718 +1995 70 0.84575 +1995 71 0.91671 +1995 72 0.69633 +1995 73 0.73875 +1995 74 0.77687 +1995 75 0.71968 +1995 76 0.74564 +1995 77 0.77100 +1995 78 0.72804 +1995 79 0.84207 +1995 80 0.81406 +1995 81 0.79442 +1995 82 0.84251 +1995 83 0.85355 +1995 84 0.81173 +1995 85 0.88617 +1995 86 0.86753 +1995 87 0.98701 +1995 88 0.99456 +1995 89 0.97594 +1995 90 0.95347 +1995 91 0.94256 +1995 92 0.94361 +1995 93 0.98161 +1995 94 0.84308 +1995 95 0.88138 +1995 96 0.95292 +1995 97 0.97699 +1995 98 0.95022 +1995 99 0.85104 +1995 100 0.88752 +1995 101 0.93983 +1995 102 0.83941 +1995 103 0.78947 +1995 104 0.82914 +1995 105 0.86227 +1995 106 0.90554 +1995 107 0.82100 +1995 108 0.90528 +1995 109 0.95660 +1995 110 0.89355 +1995 111 0.94276 +1995 112 0.99373 +1995 113 0.91944 +1995 114 0.97316 +1995 115 0.99170 +1995 116 0.86034 +1995 117 0.74060 +1995 118 0.65696 +1995 119 0.72303 +1995 120 0.82839 +1995 121 0.78816 +1995 122 0.84509 +1995 123 0.88976 +1995 124 0.91463 +1995 125 0.96899 +1995 126 0.80701 +1995 127 0.74570 +1995 128 0.82730 +1995 129 0.64163 +1995 130 0.74020 +1995 131 0.83290 +1995 132 0.87388 +1995 133 0.86044 +1995 134 0.93986 +1995 135 0.94689 +1995 136 0.78317 +1995 137 0.75746 +1995 138 0.80577 +1995 139 0.78666 +1995 140 0.91503 +1995 141 0.99483 +1995 142 0.85047 +1995 143 0.81813 +1995 144 0.82455 +1995 145 0.84221 +1995 146 0.77700 +1995 147 0.92072 +1995 148 0.94630 +1995 149 0.92681 +1995 150 0.92288 +1995 151 0.86349 +1995 152 0.92634 +1995 153 0.81998 +1995 154 0.76702 +1995 155 0.72665 +1995 156 0.81439 +1995 157 0.79249 +1995 158 0.83917 +1995 159 0.89363 +1995 160 0.88224 +1995 161 0.89722 +1995 162 0.98955 +1995 163 0.95810 +1995 164 0.98106 +1995 165 0.96732 +1995 166 0.90440 +1995 167 0.91478 +1995 168 0.96546 +1995 169 0.90798 +1995 170 0.80993 +1995 171 0.84060 +1995 172 0.93319 +1995 173 0.83743 +1995 174 0.87067 +1995 175 0.81770 +1995 176 0.82897 +1995 177 0.91160 +1995 178 0.87393 +1995 179 0.98775 +1995 180 0.87824 +1995 181 0.76089 +1995 182 0.88489 +1995 183 0.87261 +1995 184 0.80373 +1995 185 0.97529 +1995 186 0.89579 +1995 187 0.86081 +1995 188 0.83147 +1995 189 0.91059 +1995 190 0.90204 +1995 191 0.87966 +1995 192 0.95788 +1995 193 0.95993 +1995 194 0.91614 +1995 195 0.85332 +1995 196 0.90140 +1995 197 0.81971 +1995 198 0.75282 +1995 199 0.91871 +1995 200 0.95114 +1995 201 0.78297 +1995 202 0.90786 +1995 203 0.80665 +1995 204 0.87995 +1995 205 0.76897 +1995 206 0.89650 +1995 207 0.83882 +1995 208 0.79223 +1995 209 0.82943 +1995 210 0.87441 +1995 211 0.82466 +1995 212 0.83130 +1995 213 0.88356 +1995 214 0.96713 +1995 215 0.92715 +1995 216 0.94722 +1995 217 0.85055 +1995 218 0.89995 +1995 219 0.94511 +1995 220 0.94765 +1995 221 0.91392 +1995 222 0.79552 +1995 223 0.79439 +1995 224 0.84440 +1995 225 0.79891 +1995 226 0.73478 +1995 227 0.82374 +1995 228 0.79959 +1995 229 0.91752 +1995 230 0.74780 +1995 231 0.74460 +1995 232 0.81790 +1995 233 0.88077 +1995 234 0.81044 +1995 235 0.90337 +1995 236 0.64033 +1995 237 0.58761 +1995 238 0.69627 +1995 239 0.92161 +1995 240 0.80458 +1995 241 0.72607 +1995 242 0.81710 +1995 243 0.90228 +1995 244 0.86326 +1995 245 0.69873 +1995 246 0.75004 +1995 247 0.93355 +1995 248 0.99531 +1995 249 0.88132 +1995 250 0.87135 +1995 251 0.88931 +1995 252 0.70332 +1995 253 0.81419 +1995 254 0.77574 +1995 255 0.78083 +1995 256 0.79004 +1995 257 0.80371 +1995 258 0.79262 +1995 259 0.86491 +1995 260 0.90746 +1995 261 0.86123 +1995 262 0.78548 +1995 263 0.82829 +1995 264 0.82805 +1995 265 0.79902 +1995 266 0.81412 +1995 267 0.81205 +1995 268 0.89495 +1995 269 0.90575 +1995 270 0.88676 +1995 271 0.96990 +1995 272 0.92756 +1995 273 0.95901 +1995 274 0.95071 +1995 275 0.92695 +1995 276 0.85054 +1995 277 0.93375 +1995 278 0.92154 +1995 279 0.78084 +1995 280 0.88266 +1995 281 0.97712 +1995 282 0.84804 +1995 283 0.71741 +1995 284 0.79709 +1995 285 0.70662 +1995 286 0.85263 +1995 287 0.87212 +1995 288 0.73822 +1995 289 0.77615 +1995 290 0.75446 +1995 291 0.72146 +1995 292 0.63861 +1995 293 0.78031 +1995 294 0.87635 +1995 295 0.77313 +1995 296 0.85588 +1995 297 0.82892 +1995 298 0.85211 +1995 299 0.84042 +1995 300 0.96074 +1995 301 0.81640 +1995 302 0.84853 +1995 303 0.86897 +1995 304 0.90999 +1995 305 0.74027 +1995 306 0.77297 +1995 307 0.88247 +1995 308 0.77304 +1995 309 0.69423 +1995 310 0.73947 +1995 311 0.79303 +1995 312 0.89291 +1995 313 0.83550 +1995 314 0.84056 +1995 315 0.71464 +1995 316 0.77058 +1995 317 0.80530 +1995 318 0.67163 +1995 319 0.71927 +1995 320 0.73960 +1995 321 0.72061 +1995 322 0.74899 +1995 323 0.90758 +1995 324 0.71298 +1995 325 0.59690 +1995 326 0.68241 +1995 327 0.85090 +1995 328 0.94011 +1995 329 0.80745 +1995 330 0.80766 +1995 331 0.68083 +1995 332 0.73617 +1995 333 0.74619 +1995 334 0.72788 +1995 335 0.81287 +1995 336 0.85812 +1995 337 0.82237 +1995 338 0.77891 +1995 339 0.78642 +1995 340 0.77170 +1995 341 0.78182 +1995 342 0.68906 +1995 343 0.72090 +1995 344 0.68989 +1995 345 0.78990 +1995 346 0.76640 +1995 347 0.89121 +1995 348 0.86756 +1995 349 0.82968 +1995 350 0.97081 +1995 351 0.72316 +1995 352 0.62256 +1995 353 0.76030 +1995 354 0.90765 +1995 355 0.93649 +1995 356 0.99477 +1995 357 0.80175 +1995 358 0.69290 +1995 359 0.82117 +1995 360 0.68804 +1995 361 0.72191 +1995 362 0.79323 +1995 363 0.78564 +1995 364 0.69093 +1995 365 0.71232 +1996 1 0.75933 +1996 2 0.81073 +1996 3 0.73936 +1996 4 0.78075 +1996 5 0.78113 +1996 6 0.76873 +1996 7 0.77203 +1996 8 0.78633 +1996 9 0.79073 +1996 10 0.75225 +1996 11 0.75701 +1996 12 0.93750 +1996 13 0.93335 +1996 14 0.88030 +1996 15 0.83390 +1996 16 0.77294 +1996 17 0.72831 +1996 18 0.76723 +1996 19 0.71128 +1996 20 0.71692 +1996 21 0.80247 +1996 22 0.78910 +1996 23 0.77965 +1996 24 0.65516 +1996 25 0.78725 +1996 26 0.75008 +1996 27 0.75003 +1996 28 0.73056 +1996 29 0.73082 +1996 30 0.75951 +1996 31 0.81349 +1996 32 0.79895 +1996 33 0.90400 +1996 34 0.75064 +1996 35 0.66393 +1996 36 0.66747 +1996 37 0.89437 +1996 38 0.98920 +1996 39 0.74866 +1996 40 0.73909 +1996 41 0.78151 +1996 42 0.77118 +1996 43 0.82784 +1996 44 0.82525 +1996 45 0.68269 +1996 46 0.67418 +1996 47 0.73867 +1996 48 0.81400 +1996 49 0.92983 +1996 50 0.85091 +1996 51 0.79375 +1996 52 0.79257 +1996 53 0.76211 +1996 54 0.65718 +1996 55 0.71254 +1996 56 0.68160 +1996 57 0.74479 +1996 58 0.70810 +1996 59 0.79354 +1996 60 0.80021 +1996 61 0.85961 +1996 62 0.80759 +1996 63 0.76013 +1996 64 0.70031 +1996 65 0.63536 +1996 66 0.69995 +1996 67 0.69541 +1996 68 0.72519 +1996 69 0.74331 +1996 70 0.52900 +1996 71 0.64595 +1996 72 0.74316 +1996 73 0.78313 +1996 74 0.84539 +1996 75 0.82862 +1996 76 0.71238 +1996 77 0.76741 +1996 78 0.82474 +1996 79 0.76863 +1996 80 0.71862 +1996 81 0.90551 +1996 82 0.81491 +1996 83 0.63465 +1996 84 0.71614 +1996 85 0.76981 +1996 86 0.79504 +1996 87 0.81920 +1996 88 0.78290 +1996 89 0.69323 +1996 90 0.79240 +1996 91 0.79458 +1996 92 0.82021 +1996 93 0.77282 +1996 94 0.90183 +1996 95 0.89693 +1996 96 0.83277 +1996 97 0.87947 +1996 98 0.70593 +1996 99 0.81203 +1996 100 0.96773 +1996 101 0.95001 +1996 102 0.92944 +1996 103 0.92933 +1996 104 0.91329 +1996 105 0.88195 +1996 106 0.88953 +1996 107 0.86876 +1996 108 0.89704 +1996 109 0.98727 +1996 110 0.99761 +1996 111 0.96373 +1996 112 0.78673 +1996 113 0.77359 +1996 114 0.82201 +1996 115 0.74279 +1996 116 0.80317 +1996 117 0.81331 +1996 118 0.87977 +1996 119 0.86738 +1996 120 0.95512 +1996 121 0.77096 +1996 122 0.69728 +1996 123 0.73931 +1996 124 0.75085 +1996 125 0.80883 +1996 126 0.79019 +1996 127 0.88843 +1996 128 0.85254 +1996 129 0.80728 +1996 130 0.76603 +1996 131 0.81796 +1996 132 0.84492 +1996 133 0.78567 +1996 134 0.91650 +1996 135 0.96863 +1996 136 0.80915 +1996 137 0.74547 +1996 138 0.81173 +1996 139 0.85799 +1996 140 0.87540 +1996 141 0.92488 +1996 142 0.97375 +1996 143 0.82844 +1996 144 0.80434 +1996 145 0.87667 +1996 146 0.75735 +1996 147 0.73857 +1996 148 0.81458 +1996 149 0.90310 +1996 150 0.93426 +1996 151 0.78897 +1996 152 0.73439 +1996 153 0.59995 +1996 154 0.78983 +1996 155 0.84237 +1996 156 0.88836 +1996 157 0.94804 +1996 158 0.94609 +1996 159 0.88845 +1996 160 0.93427 +1996 161 0.88529 +1996 162 0.88755 +1996 163 0.81025 +1996 164 0.76764 +1996 165 0.83022 +1996 166 0.85437 +1996 167 0.88648 +1996 168 0.80261 +1996 169 0.84073 +1996 170 0.88183 +1996 171 0.85079 +1996 172 0.84461 +1996 173 0.88259 +1996 174 0.95902 +1996 175 0.94720 +1996 176 0.93179 +1996 177 0.90916 +1996 178 0.93795 +1996 179 0.90642 +1996 180 0.83613 +1996 181 0.89937 +1996 182 0.78681 +1996 183 0.89081 +1996 184 0.78124 +1996 185 0.76585 +1996 186 0.77204 +1996 187 0.78634 +1996 188 0.82085 +1996 189 0.83821 +1996 190 0.86113 +1996 191 0.94279 +1996 192 0.99397 +1996 193 0.94640 +1996 194 0.89219 +1996 195 0.95086 +1996 196 0.99073 +1996 197 0.94706 +1996 198 0.98382 +1996 199 0.95975 +1996 200 0.97302 +1996 201 0.91071 +1996 202 0.97522 +1996 203 0.96244 +1996 204 0.90754 +1996 205 0.84717 +1996 206 0.93533 +1996 207 0.93260 +1996 208 0.75909 +1996 209 0.74704 +1996 210 0.80673 +1996 211 0.76163 +1996 212 0.74810 +1996 213 0.87505 +1996 214 0.98434 +1996 215 0.89353 +1996 216 0.81014 +1996 217 0.93249 +1996 218 0.94475 +1996 219 0.75715 +1996 220 0.83421 +1996 221 0.86603 +1996 222 0.81343 +1996 223 0.84317 +1996 224 0.77223 +1996 225 0.79688 +1996 226 0.80357 +1996 227 0.93563 +1996 228 0.79244 +1996 229 0.79362 +1996 230 0.95244 +1996 231 0.83505 +1996 232 0.96096 +1996 233 0.90230 +1996 234 0.82579 +1996 235 0.73731 +1996 236 0.79174 +1996 237 0.92219 +1996 238 0.96938 +1996 239 0.77248 +1996 240 0.83476 +1996 241 0.84089 +1996 242 0.73047 +1996 243 0.72801 +1996 244 0.78226 +1996 245 0.91478 +1996 246 0.88452 +1996 247 0.99554 +1996 248 0.96402 +1996 249 0.90764 +1996 250 0.90285 +1996 251 0.92496 +1996 252 0.94562 +1996 253 0.94126 +1996 254 0.98053 +1996 255 0.98630 +1996 256 0.85974 +1996 257 0.89839 +1996 258 0.83926 +1996 259 0.81016 +1996 260 0.78988 +1996 261 0.82954 +1996 262 0.68485 +1996 263 0.61117 +1996 264 0.73190 +1996 265 0.75653 +1996 266 0.80090 +1996 267 0.82202 +1996 268 0.82745 +1996 269 0.83049 +1996 270 0.86580 +1996 271 0.89864 +1996 272 0.86379 +1996 273 0.68206 +1996 274 0.80016 +1996 275 0.93531 +1996 276 0.80317 +1996 277 0.72609 +1996 278 0.79323 +1996 279 0.74697 +1996 280 0.78005 +1996 281 0.90146 +1996 282 0.75026 +1996 283 0.69292 +1996 284 0.88368 +1996 285 0.83968 +1996 286 0.89878 +1996 287 0.73936 +1996 288 0.70798 +1996 289 0.65289 +1996 290 0.70896 +1996 291 0.74339 +1996 292 0.77412 +1996 293 0.75235 +1996 294 0.75133 +1996 295 0.87471 +1996 296 0.65013 +1996 297 0.68484 +1996 298 0.74218 +1996 299 0.89369 +1996 300 0.94372 +1996 301 0.87042 +1996 302 0.93212 +1996 303 0.77239 +1996 304 0.73824 +1996 305 0.59977 +1996 306 0.59331 +1996 307 0.62736 +1996 308 0.74273 +1996 309 0.78079 +1996 310 0.67798 +1996 311 0.74105 +1996 312 0.69175 +1996 313 0.66742 +1996 314 0.71188 +1996 315 0.82613 +1996 316 0.83916 +1996 317 0.86482 +1996 318 0.72500 +1996 319 0.85336 +1996 320 0.67834 +1996 321 0.73117 +1996 322 0.84326 +1996 323 0.86701 +1996 324 0.66691 +1996 325 0.68038 +1996 326 0.79789 +1996 327 0.69101 +1996 328 0.70188 +1996 329 0.73019 +1996 330 0.69781 +1996 331 0.82206 +1996 332 0.71637 +1996 333 0.76437 +1996 334 0.73798 +1996 335 0.98344 +1996 336 0.66993 +1996 337 0.86124 +1996 338 0.72113 +1996 339 0.66296 +1996 340 0.66830 +1996 341 0.72521 +1996 342 0.60725 +1996 343 0.63660 +1996 344 0.64893 +1996 345 0.83300 +1996 346 0.65364 +1996 347 0.84515 +1996 348 0.98420 +1996 349 0.80004 +1996 350 0.69639 +1996 351 0.72877 +1996 352 0.67741 +1996 353 0.77269 +1996 354 0.95654 +1996 355 0.79214 +1996 356 0.64336 +1996 357 0.74921 +1996 358 0.72349 +1996 359 0.69257 +1996 360 0.74776 +1996 361 0.80541 +1996 362 0.78793 +1996 363 0.89532 +1996 364 0.98776 +1996 365 0.81665 +1996 366 0.83619 +1997 1 0.91657 +1997 2 0.82727 +1997 3 0.78972 +1997 4 0.62999 +1997 5 0.64890 +1997 6 0.73201 +1997 7 0.81719 +1997 8 0.85493 +1997 9 0.92552 +1997 10 0.94138 +1997 11 0.72358 +1997 12 0.67337 +1997 13 0.76632 +1997 14 0.70577 +1997 15 0.73675 +1997 16 0.70782 +1997 17 0.76431 +1997 18 0.70178 +1997 19 0.61255 +1997 20 0.73418 +1997 21 0.74133 +1997 22 0.79628 +1997 23 0.81131 +1997 24 0.82910 +1997 25 0.74681 +1997 26 0.61221 +1997 27 0.66208 +1997 28 0.66313 +1997 29 0.65621 +1997 30 0.61100 +1997 31 0.68029 +1997 32 0.63760 +1997 33 0.74383 +1997 34 0.90770 +1997 35 0.88158 +1997 36 0.79033 +1997 37 0.79758 +1997 38 0.80954 +1997 39 0.75460 +1997 40 0.73691 +1997 41 0.75551 +1997 42 0.81446 +1997 43 0.64015 +1997 44 0.66279 +1997 45 0.68233 +1997 46 0.75842 +1997 47 0.74839 +1997 48 0.82780 +1997 49 0.94281 +1997 50 0.89138 +1997 51 0.81580 +1997 52 0.70231 +1997 53 0.88374 +1997 54 0.87614 +1997 55 0.89269 +1997 56 0.72577 +1997 57 0.75891 +1997 58 0.74719 +1997 59 0.89941 +1997 60 0.95281 +1997 61 0.94001 +1997 62 0.86303 +1997 63 0.88735 +1997 64 0.96238 +1997 65 0.85478 +1997 66 0.86532 +1997 67 0.82594 +1997 68 0.71292 +1997 69 0.86521 +1997 70 0.80636 +1997 71 0.68436 +1997 72 0.75217 +1997 73 0.80337 +1997 74 0.77871 +1997 75 0.72500 +1997 76 0.73712 +1997 77 0.74007 +1997 78 0.72055 +1997 79 0.82647 +1997 80 0.90931 +1997 81 0.92830 +1997 82 0.84997 +1997 83 0.75846 +1997 84 0.75448 +1997 85 0.76516 +1997 86 0.72419 +1997 87 0.72935 +1997 88 0.77129 +1997 89 0.80485 +1997 90 0.75147 +1997 91 0.71916 +1997 92 0.75186 +1997 93 0.80600 +1997 94 0.80182 +1997 95 0.81736 +1997 96 0.89224 +1997 97 0.92964 +1997 98 0.94492 +1997 99 0.76121 +1997 100 0.78702 +1997 101 0.72183 +1997 102 0.78609 +1997 103 0.94275 +1997 104 0.78241 +1997 105 0.83929 +1997 106 0.79124 +1997 107 0.82686 +1997 108 0.90860 +1997 109 0.75128 +1997 110 0.69102 +1997 111 0.72326 +1997 112 0.86869 +1997 113 0.73839 +1997 114 0.80438 +1997 115 0.78356 +1997 116 0.84453 +1997 117 0.81965 +1997 118 0.80942 +1997 119 0.88914 +1997 120 0.86025 +1997 121 0.87472 +1997 122 0.86777 +1997 123 0.86763 +1997 124 0.82658 +1997 125 0.82632 +1997 126 0.86708 +1997 127 0.87721 +1997 128 0.87263 +1997 129 0.86080 +1997 130 0.87622 +1997 131 0.94575 +1997 132 0.83415 +1997 133 0.75439 +1997 134 0.78495 +1997 135 0.78233 +1997 136 0.84089 +1997 137 0.91380 +1997 138 0.89140 +1997 139 0.84452 +1997 140 0.89778 +1997 141 0.91525 +1997 142 0.92872 +1997 143 0.99850 +1997 144 0.93673 +1997 145 0.94326 +1997 146 0.92089 +1997 147 0.89121 +1997 148 0.84549 +1997 149 0.91790 +1997 150 0.97716 +1997 151 0.92778 +1997 152 0.97662 +1997 153 0.79567 +1997 154 0.79262 +1997 155 0.82836 +1997 156 0.87724 +1997 157 0.82807 +1997 158 0.90620 +1997 159 0.81149 +1997 160 0.95796 +1997 161 0.95764 +1997 162 0.87226 +1997 163 0.81326 +1997 164 0.84576 +1997 165 0.87350 +1997 166 0.90691 +1997 167 0.91284 +1997 168 0.96265 +1997 169 0.83679 +1997 170 0.81115 +1997 171 0.83594 +1997 172 0.84666 +1997 173 0.89223 +1997 174 0.86766 +1997 175 0.82378 +1997 176 0.83528 +1997 177 0.77691 +1997 178 0.83141 +1997 179 0.86378 +1997 180 0.93489 +1997 181 0.97678 +1997 182 0.83510 +1997 183 0.92052 +1997 184 0.95231 +1997 185 0.80038 +1997 186 0.83036 +1997 187 0.87695 +1997 188 0.89002 +1997 189 0.90447 +1997 190 0.97021 +1997 191 0.83013 +1997 192 0.73110 +1997 193 0.87470 +1997 194 0.89088 +1997 195 0.73153 +1997 196 0.80877 +1997 197 0.85629 +1997 198 0.92820 +1997 199 0.83753 +1997 200 0.82732 +1997 201 0.88264 +1997 202 0.89090 +1997 203 0.87033 +1997 204 0.81986 +1997 205 0.77991 +1997 206 0.81903 +1997 207 0.88182 +1997 208 0.84126 +1997 209 0.85797 +1997 210 0.94433 +1997 211 0.82585 +1997 212 0.86039 +1997 213 0.78319 +1997 214 0.73584 +1997 215 0.67536 +1997 216 0.75934 +1997 217 0.76311 +1997 218 0.76136 +1997 219 0.80407 +1997 220 0.87392 +1997 221 0.91251 +1997 222 0.90388 +1997 223 0.84926 +1997 224 0.90908 +1997 225 0.89145 +1997 226 0.73066 +1997 227 0.84838 +1997 228 0.81917 +1997 229 0.89989 +1997 230 0.95665 +1997 231 0.88883 +1997 232 0.80153 +1997 233 0.81610 +1997 234 0.78122 +1997 235 0.78166 +1997 236 0.82509 +1997 237 0.96574 +1997 238 0.83047 +1997 239 0.75236 +1997 240 0.76929 +1997 241 0.81703 +1997 242 0.80101 +1997 243 0.82844 +1997 244 0.79427 +1997 245 0.88727 +1997 246 0.94440 +1997 247 0.80572 +1997 248 0.62122 +1997 249 0.67523 +1997 250 0.79431 +1997 251 0.79022 +1997 252 0.82847 +1997 253 0.93781 +1997 254 0.93460 +1997 255 0.69514 +1997 256 0.70064 +1997 257 0.70402 +1997 258 0.86016 +1997 259 0.81943 +1997 260 0.90786 +1997 261 0.72234 +1997 262 0.73237 +1997 263 0.81171 +1997 264 0.84935 +1997 265 0.99395 +1997 266 0.95421 +1997 267 0.81854 +1997 268 0.76283 +1997 269 0.91871 +1997 270 0.90596 +1997 271 0.85752 +1997 272 0.93017 +1997 273 0.76691 +1997 274 0.76338 +1997 275 0.81659 +1997 276 0.84037 +1997 277 0.88035 +1997 278 0.76050 +1997 279 0.67266 +1997 280 0.70919 +1997 281 0.76087 +1997 282 0.85161 +1997 283 0.84307 +1997 284 0.85059 +1997 285 0.82218 +1997 286 0.86306 +1997 287 0.75703 +1997 288 0.77225 +1997 289 0.73737 +1997 290 0.87960 +1997 291 0.98415 +1997 292 0.73117 +1997 293 0.80765 +1997 294 0.72919 +1997 295 0.73267 +1997 296 0.74164 +1997 297 0.73792 +1997 298 0.75081 +1997 299 0.68920 +1997 300 0.78419 +1997 301 0.79385 +1997 302 0.79290 +1997 303 0.82116 +1997 304 0.73919 +1997 305 0.77621 +1997 306 0.83733 +1997 307 0.64899 +1997 308 0.63772 +1997 309 0.77967 +1997 310 0.78259 +1997 311 0.89806 +1997 312 0.76702 +1997 313 0.63625 +1997 314 0.67832 +1997 315 0.81225 +1997 316 0.87284 +1997 317 0.74056 +1997 318 0.78417 +1997 319 0.98306 +1997 320 0.88602 +1997 321 0.70042 +1997 322 0.67783 +1997 323 0.78235 +1997 324 0.68948 +1997 325 0.62782 +1997 326 0.67752 +1997 327 0.70538 +1997 328 0.77599 +1997 329 0.72043 +1997 330 0.66967 +1997 331 0.76599 +1997 332 0.86662 +1997 333 0.78308 +1997 334 0.83488 +1997 335 0.93155 +1997 336 0.92014 +1997 337 0.73890 +1997 338 0.67966 +1997 339 0.68201 +1997 340 0.60876 +1997 341 0.75117 +1997 342 0.88086 +1997 343 0.74870 +1997 344 0.62988 +1997 345 0.69845 +1997 346 0.67368 +1997 347 0.65803 +1997 348 0.79271 +1997 349 0.93042 +1997 350 0.66173 +1997 351 0.66729 +1997 352 0.77057 +1997 353 0.74622 +1997 354 0.78860 +1997 355 0.83997 +1997 356 0.82849 +1997 357 0.76801 +1997 358 0.93124 +1997 359 0.65774 +1997 360 0.68054 +1997 361 0.71323 +1997 362 0.65143 +1997 363 0.63521 +1997 364 0.66210 +1997 365 0.72880 +1998 1 0.65041 +1998 2 0.56783 +1998 3 0.65739 +1998 4 0.67976 +1998 5 0.70080 +1998 6 0.70244 +1998 7 0.62887 +1998 8 0.51529 +1998 9 0.41292 +1998 10 0.58486 +1998 11 0.75158 +1998 12 0.55697 +1998 13 0.63796 +1998 14 0.63859 +1998 15 0.77238 +1998 16 0.70754 +1998 17 0.66370 +1998 18 0.69924 +1998 19 0.76166 +1998 20 0.93605 +1998 21 0.80780 +1998 22 0.86036 +1998 23 0.85156 +1998 24 0.78688 +1998 25 0.74999 +1998 26 0.78515 +1998 27 0.82069 +1998 28 0.82818 +1998 29 0.83288 +1998 30 0.78239 +1998 31 0.63356 +1998 32 0.70397 +1998 33 0.73049 +1998 34 0.73607 +1998 35 0.63197 +1998 36 0.76284 +1998 37 0.69296 +1998 38 0.64023 +1998 39 0.76924 +1998 40 0.85615 +1998 41 0.77201 +1998 42 0.71594 +1998 43 0.84316 +1998 44 0.74821 +1998 45 0.75964 +1998 46 0.75752 +1998 47 0.76965 +1998 48 0.86113 +1998 49 0.83075 +1998 50 0.86416 +1998 51 0.92254 +1998 52 0.72789 +1998 53 0.89479 +1998 54 0.88029 +1998 55 0.70361 +1998 56 0.71406 +1998 57 0.73015 +1998 58 0.77769 +1998 59 0.74048 +1998 60 0.68029 +1998 61 0.71488 +1998 62 0.80224 +1998 63 0.84317 +1998 64 0.93821 +1998 65 0.95164 +1998 66 0.89772 +1998 67 0.83208 +1998 68 0.89009 +1998 69 0.96489 +1998 70 0.83086 +1998 71 0.91612 +1998 72 0.96975 +1998 73 0.82611 +1998 74 0.64435 +1998 75 0.72564 +1998 76 0.88925 +1998 77 0.77132 +1998 78 0.75307 +1998 79 0.77432 +1998 80 0.72886 +1998 81 0.81003 +1998 82 0.85209 +1998 83 0.81651 +1998 84 0.82816 +1998 85 0.86470 +1998 86 0.90942 +1998 87 0.95837 +1998 88 0.77079 +1998 89 0.76579 +1998 90 0.84615 +1998 91 0.87205 +1998 92 0.69411 +1998 93 0.85497 +1998 94 0.68114 +1998 95 0.78424 +1998 96 0.81143 +1998 97 0.82250 +1998 98 0.98606 +1998 99 0.85336 +1998 100 0.83274 +1998 101 0.85035 +1998 102 0.83460 +1998 103 0.86379 +1998 104 0.80610 +1998 105 0.69738 +1998 106 0.75123 +1998 107 0.81097 +1998 108 0.79735 +1998 109 0.80136 +1998 110 0.78291 +1998 111 0.81556 +1998 112 0.96345 +1998 113 0.91388 +1998 114 0.84581 +1998 115 0.91120 +1998 116 0.91697 +1998 117 0.94913 +1998 118 0.85171 +1998 119 0.85742 +1998 120 0.86772 +1998 121 0.88613 +1998 122 0.80473 +1998 123 0.75173 +1998 124 0.78519 +1998 125 0.77309 +1998 126 0.91291 +1998 127 0.85939 +1998 128 0.80704 +1998 129 0.95391 +1998 130 0.92725 +1998 131 0.81120 +1998 132 0.89787 +1998 133 0.76568 +1998 134 0.71375 +1998 135 0.82790 +1998 136 0.84378 +1998 137 0.86001 +1998 138 0.80810 +1998 139 0.90610 +1998 140 0.93318 +1998 141 0.93361 +1998 142 0.98429 +1998 143 0.92197 +1998 144 0.90627 +1998 145 0.94520 +1998 146 0.89161 +1998 147 0.79347 +1998 148 0.83653 +1998 149 0.83678 +1998 150 0.78083 +1998 151 0.77426 +1998 152 0.86577 +1998 153 0.80920 +1998 154 0.77093 +1998 155 0.79694 +1998 156 0.87265 +1998 157 0.93001 +1998 158 0.99136 +1998 159 0.99334 +1998 160 0.89269 +1998 161 0.74143 +1998 162 0.80507 +1998 163 0.95363 +1998 164 0.99498 +1998 165 0.76755 +1998 166 0.81155 +1998 167 0.93736 +1998 168 0.95311 +1998 169 0.86790 +1998 170 0.78394 +1998 171 0.89082 +1998 172 0.86936 +1998 173 0.84782 +1998 174 0.85136 +1998 175 0.92115 +1998 176 0.97108 +1998 177 0.90590 +1998 178 0.82643 +1998 179 0.85467 +1998 180 0.86912 +1998 181 0.92269 +1998 182 0.94774 +1998 183 0.77119 +1998 184 0.81889 +1998 185 0.81229 +1998 186 0.86742 +1998 187 0.87414 +1998 188 0.83386 +1998 189 0.99191 +1998 190 0.98390 +1998 191 0.98210 +1998 192 0.87626 +1998 193 0.88447 +1998 194 0.98570 +1998 195 0.89143 +1998 196 0.95782 +1998 197 0.88390 +1998 198 0.78282 +1998 199 0.85343 +1998 200 0.83647 +1998 201 0.95419 +1998 202 0.90998 +1998 203 0.93736 +1998 204 0.96695 +1998 205 0.92679 +1998 206 0.89917 +1998 207 0.84486 +1998 208 0.79673 +1998 209 0.92605 +1998 210 0.89652 +1998 211 0.94384 +1998 212 0.95938 +1998 213 0.83462 +1998 214 0.72056 +1998 215 0.80148 +1998 216 0.76456 +1998 217 0.79530 +1998 218 0.85543 +1998 219 0.77401 +1998 220 0.73299 +1998 221 0.89078 +1998 222 0.97380 +1998 223 0.91629 +1998 224 0.91474 +1998 225 0.84924 +1998 226 0.80349 +1998 227 0.76242 +1998 228 0.78525 +1998 229 0.69323 +1998 230 0.88763 +1998 231 0.76208 +1998 232 0.68993 +1998 233 0.72356 +1998 234 0.83595 +1998 235 0.79035 +1998 236 0.80656 +1998 237 0.84366 +1998 238 0.97702 +1998 239 0.82807 +1998 240 0.76292 +1998 241 0.83556 +1998 242 0.72067 +1998 243 0.80111 +1998 244 0.84928 +1998 245 0.81056 +1998 246 0.76541 +1998 247 0.72054 +1998 248 0.91173 +1998 249 0.75081 +1998 250 0.77555 +1998 251 0.70293 +1998 252 0.76526 +1998 253 0.74546 +1998 254 0.73558 +1998 255 0.77154 +1998 256 0.75503 +1998 257 0.87180 +1998 258 0.98155 +1998 259 0.85647 +1998 260 0.80109 +1998 261 0.78462 +1998 262 0.85600 +1998 263 0.78988 +1998 264 0.72046 +1998 265 0.78376 +1998 266 0.78963 +1998 267 0.77545 +1998 268 0.82062 +1998 269 0.96838 +1998 270 0.81597 +1998 271 0.81581 +1998 272 0.97419 +1998 273 0.76971 +1998 274 0.78394 +1998 275 0.79988 +1998 276 0.91751 +1998 277 0.75293 +1998 278 0.68741 +1998 279 0.78417 +1998 280 0.83100 +1998 281 0.86279 +1998 282 0.92464 +1998 283 0.94142 +1998 284 0.95464 +1998 285 0.88401 +1998 286 0.78554 +1998 287 0.89015 +1998 288 0.76675 +1998 289 0.67875 +1998 290 0.72808 +1998 291 0.76759 +1998 292 0.81797 +1998 293 0.72681 +1998 294 0.76572 +1998 295 0.67113 +1998 296 0.67558 +1998 297 0.76279 +1998 298 0.80904 +1998 299 0.83004 +1998 300 0.94972 +1998 301 0.86291 +1998 302 0.76787 +1998 303 0.71949 +1998 304 0.83186 +1998 305 0.80065 +1998 306 0.98711 +1998 307 0.84602 +1998 308 0.77412 +1998 309 0.80045 +1998 310 0.67335 +1998 311 0.69627 +1998 312 0.75427 +1998 313 0.72747 +1998 314 0.70528 +1998 315 0.76566 +1998 316 0.68509 +1998 317 0.60563 +1998 318 0.63135 +1998 319 0.69868 +1998 320 0.72912 +1998 321 0.69560 +1998 322 0.75672 +1998 323 0.74916 +1998 324 0.74121 +1998 325 0.69393 +1998 326 0.78379 +1998 327 0.71820 +1998 328 0.84126 +1998 329 0.60792 +1998 330 0.70065 +1998 331 0.70428 +1998 332 0.91964 +1998 333 0.93894 +1998 334 0.81956 +1998 335 0.83169 +1998 336 0.89884 +1998 337 0.95299 +1998 338 0.78342 +1998 339 0.76706 +1998 340 0.82365 +1998 341 0.79931 +1998 342 0.64743 +1998 343 0.69590 +1998 344 0.65201 +1998 345 0.71656 +1998 346 0.75769 +1998 347 0.82242 +1998 348 0.66167 +1998 349 0.75255 +1998 350 0.77360 +1998 351 0.95938 +1998 352 0.80638 +1998 353 0.78526 +1998 354 0.80950 +1998 355 0.76251 +1998 356 0.72209 +1998 357 0.60076 +1998 358 0.60397 +1998 359 0.63897 +1998 360 0.72309 +1998 361 0.77088 +1998 362 0.77277 +1998 363 0.76703 +1998 364 0.69045 +1998 365 0.66899 +1999 1 0.64850 +1999 2 0.63799 +1999 3 0.69187 +1999 4 0.74657 +1999 5 0.69842 +1999 6 0.68932 +1999 7 0.59400 +1999 8 0.64506 +1999 9 0.64683 +1999 10 0.65961 +1999 11 0.74257 +1999 12 0.84209 +1999 13 0.89329 +1999 14 0.96299 +1999 15 0.95718 +1999 16 0.91711 +1999 17 0.89774 +1999 18 0.82492 +1999 19 0.85481 +1999 20 0.87386 +1999 21 0.80915 +1999 22 0.73687 +1999 23 0.68334 +1999 24 0.63369 +1999 25 0.62832 +1999 26 0.71166 +1999 27 0.69405 +1999 28 0.72629 +1999 29 0.78284 +1999 30 0.95161 +1999 31 0.62710 +1999 32 0.62575 +1999 33 0.65195 +1999 34 0.66462 +1999 35 0.72356 +1999 36 0.75284 +1999 37 0.71370 +1999 38 0.65065 +1999 39 0.66480 +1999 40 0.65421 +1999 41 0.60913 +1999 42 0.66724 +1999 43 0.68956 +1999 44 0.73377 +1999 45 0.74469 +1999 46 0.73869 +1999 47 0.70731 +1999 48 0.76041 +1999 49 0.78426 +1999 50 0.74768 +1999 51 0.54348 +1999 52 0.57219 +1999 53 0.64583 +1999 54 0.62987 +1999 55 0.70679 +1999 56 0.93543 +1999 57 0.87399 +1999 58 0.63588 +1999 59 0.65757 +1999 60 0.60538 +1999 61 0.60718 +1999 62 0.67700 +1999 63 0.81054 +1999 64 0.95421 +1999 65 0.97196 +1999 66 0.91520 +1999 67 0.91392 +1999 68 0.89559 +1999 69 0.94472 +1999 70 0.85825 +1999 71 0.78992 +1999 72 0.72211 +1999 73 0.75682 +1999 74 0.77196 +1999 75 0.76555 +1999 76 0.80819 +1999 77 0.73842 +1999 78 0.73814 +1999 79 0.74241 +1999 80 0.82642 +1999 81 0.78457 +1999 82 0.79902 +1999 83 0.80074 +1999 84 0.81748 +1999 85 0.89054 +1999 86 0.90653 +1999 87 0.88212 +1999 88 0.79808 +1999 89 0.91249 +1999 90 0.75643 +1999 91 0.67898 +1999 92 0.68426 +1999 93 0.82091 +1999 94 0.76406 +1999 95 0.92461 +1999 96 0.95556 +1999 97 0.98198 +1999 98 0.89850 +1999 99 0.71159 +1999 100 0.69661 +1999 101 0.71894 +1999 102 0.75144 +1999 103 0.75997 +1999 104 0.85134 +1999 105 0.90424 +1999 106 0.84755 +1999 107 0.78873 +1999 108 0.80867 +1999 109 0.83257 +1999 110 0.85798 +1999 111 0.86160 +1999 112 0.86146 +1999 113 0.78481 +1999 114 0.78209 +1999 115 0.76397 +1999 116 0.78286 +1999 117 0.72847 +1999 118 0.74971 +1999 119 0.83982 +1999 120 0.98960 +1999 121 0.97538 +1999 122 0.75716 +1999 123 0.69054 +1999 124 0.75375 +1999 125 0.60901 +1999 126 0.70622 +1999 127 0.79314 +1999 128 0.86087 +1999 129 0.80062 +1999 130 0.85714 +1999 131 0.83396 +1999 132 0.87419 +1999 133 0.93846 +1999 134 0.98255 +1999 135 0.97932 +1999 136 0.80879 +1999 137 0.78457 +1999 138 0.80256 +1999 139 0.80736 +1999 140 0.81648 +1999 141 0.84777 +1999 142 0.85889 +1999 143 0.87235 +1999 144 0.88266 +1999 145 0.91108 +1999 146 0.95347 +1999 147 0.90075 +1999 148 0.96145 +1999 149 0.94863 +1999 150 0.95324 +1999 151 0.95698 +1999 152 0.96270 +1999 153 0.85437 +1999 154 0.87201 +1999 155 0.95239 +1999 156 0.86193 +1999 157 0.85971 +1999 158 0.87538 +1999 159 0.86875 +1999 160 0.83050 +1999 161 0.88275 +1999 162 0.85074 +1999 163 0.95650 +1999 164 0.95965 +1999 165 0.96783 +1999 166 0.94942 +1999 167 0.85117 +1999 168 0.81919 +1999 169 0.88545 +1999 170 0.87956 +1999 171 0.82746 +1999 172 0.75812 +1999 173 0.86305 +1999 174 0.85574 +1999 175 0.88860 +1999 176 0.89142 +1999 177 0.75780 +1999 178 0.77284 +1999 179 0.80997 +1999 180 0.89942 +1999 181 0.93036 +1999 182 0.83853 +1999 183 0.95588 +1999 184 0.91775 +1999 185 0.82540 +1999 186 0.84392 +1999 187 0.87590 +1999 188 0.87481 +1999 189 0.75036 +1999 190 0.81912 +1999 191 0.84227 +1999 192 0.87778 +1999 193 0.86050 +1999 194 0.88975 +1999 195 0.90376 +1999 196 0.96526 +1999 197 0.95586 +1999 198 0.94300 +1999 199 0.95129 +1999 200 0.89801 +1999 201 0.95677 +1999 202 0.92409 +1999 203 0.95731 +1999 204 0.79400 +1999 205 0.84951 +1999 206 0.88404 +1999 207 0.76830 +1999 208 0.76299 +1999 209 0.79496 +1999 210 0.75498 +1999 211 0.71624 +1999 212 0.77975 +1999 213 0.82470 +1999 214 0.98107 +1999 215 0.92925 +1999 216 0.89926 +1999 217 0.83777 +1999 218 0.74627 +1999 219 0.74114 +1999 220 0.82649 +1999 221 0.90981 +1999 222 0.87452 +1999 223 0.94332 +1999 224 0.91121 +1999 225 0.86116 +1999 226 0.89611 +1999 227 0.93671 +1999 228 0.92098 +1999 229 0.68003 +1999 230 0.78905 +1999 231 0.76029 +1999 232 0.92419 +1999 233 0.81878 +1999 234 0.69905 +1999 235 0.78029 +1999 236 0.75700 +1999 237 0.78144 +1999 238 0.82745 +1999 239 0.80013 +1999 240 0.80720 +1999 241 0.82434 +1999 242 0.82000 +1999 243 0.76688 +1999 244 0.81422 +1999 245 0.84838 +1999 246 0.88249 +1999 247 0.85006 +1999 248 0.87833 +1999 249 0.96074 +1999 250 0.83510 +1999 251 0.66894 +1999 252 0.67660 +1999 253 0.75412 +1999 254 0.78983 +1999 255 0.94121 +1999 256 0.84964 +1999 257 0.93838 +1999 258 0.95446 +1999 259 0.82341 +1999 260 0.79733 +1999 261 0.92815 +1999 262 0.84374 +1999 263 0.75586 +1999 264 0.64988 +1999 265 0.75134 +1999 266 0.79608 +1999 267 0.75473 +1999 268 0.80852 +1999 269 0.76250 +1999 270 0.65859 +1999 271 0.78567 +1999 272 0.76320 +1999 273 0.76359 +1999 274 0.81334 +1999 275 0.72093 +1999 276 0.76280 +1999 277 0.74067 +1999 278 0.84738 +1999 279 0.92608 +1999 280 0.97094 +1999 281 0.90889 +1999 282 0.82900 +1999 283 0.76592 +1999 284 0.82086 +1999 285 0.81892 +1999 286 0.70763 +1999 287 0.56723 +1999 288 0.62405 +1999 289 0.65431 +1999 290 0.80616 +1999 291 0.73835 +1999 292 0.76803 +1999 293 0.90713 +1999 294 0.74934 +1999 295 0.72508 +1999 296 0.75761 +1999 297 0.76773 +1999 298 0.79529 +1999 299 0.77489 +1999 300 0.95255 +1999 301 0.84995 +1999 302 0.81547 +1999 303 0.81342 +1999 304 0.80473 +1999 305 0.80855 +1999 306 0.86016 +1999 307 0.95988 +1999 308 0.99820 +1999 309 0.99831 +1999 310 0.94476 +1999 311 0.94236 +1999 312 0.94636 +1999 313 0.96907 +1999 314 0.89696 +1999 315 0.88758 +1999 316 0.70881 +1999 317 0.74934 +1999 318 0.73511 +1999 319 0.77496 +1999 320 0.81716 +1999 321 0.95519 +1999 322 0.70160 +1999 323 0.66123 +1999 324 0.74652 +1999 325 0.65782 +1999 326 0.65079 +1999 327 0.78824 +1999 328 0.81369 +1999 329 0.86146 +1999 330 0.89210 +1999 331 0.96609 +1999 332 0.85528 +1999 333 0.57574 +1999 334 0.71284 +1999 335 0.78562 +1999 336 0.74350 +1999 337 0.78246 +1999 338 0.70230 +1999 339 0.73970 +1999 340 0.66175 +1999 341 0.56492 +1999 342 0.69748 +1999 343 0.73796 +1999 344 0.76198 +1999 345 0.90412 +1999 346 0.87958 +1999 347 0.79194 +1999 348 0.65619 +1999 349 0.72039 +1999 350 0.77444 +1999 351 0.79043 +1999 352 0.94092 +1999 353 0.71406 +1999 354 0.90735 +1999 355 0.70727 +1999 356 0.85244 +1999 357 0.76737 +1999 358 0.75074 +1999 359 0.71429 +1999 360 0.65314 +1999 361 0.61301 +1999 362 0.71191 +1999 363 0.77330 +1999 364 0.77824 +1999 365 0.93770 +2000 1 0.87742 +2000 2 0.80567 +2000 3 0.78564 +2000 4 0.76221 +2000 5 0.77732 +2000 6 0.75853 +2000 7 0.80422 +2000 8 0.85743 +2000 9 0.75009 +2000 10 0.63795 +2000 11 0.64371 +2000 12 0.65074 +2000 13 0.69471 +2000 14 0.77980 +2000 15 0.83400 +2000 16 0.79100 +2000 17 0.72714 +2000 18 0.80445 +2000 19 0.88108 +2000 20 0.79142 +2000 21 0.74984 +2000 22 0.81283 +2000 23 0.84924 +2000 24 0.91599 +2000 25 0.71546 +2000 26 0.64342 +2000 27 0.69708 +2000 28 0.81137 +2000 29 0.92778 +2000 30 0.82245 +2000 31 0.71035 +2000 32 0.68507 +2000 33 0.63236 +2000 34 0.70127 +2000 35 0.72805 +2000 36 0.78679 +2000 37 0.65724 +2000 38 0.65698 +2000 39 0.72912 +2000 40 0.69965 +2000 41 0.89057 +2000 42 0.84911 +2000 43 0.86224 +2000 44 0.85123 +2000 45 0.83443 +2000 46 0.91767 +2000 47 0.73907 +2000 48 0.68594 +2000 49 0.71505 +2000 50 0.77408 +2000 51 0.73725 +2000 52 0.69957 +2000 53 0.61201 +2000 54 0.68346 +2000 55 0.71593 +2000 56 0.72032 +2000 57 0.74164 +2000 58 0.63621 +2000 59 0.75906 +2000 60 0.79952 +2000 61 0.93597 +2000 62 0.71199 +2000 63 0.70814 +2000 64 0.82797 +2000 65 0.83978 +2000 66 0.76819 +2000 67 0.82526 +2000 68 0.78895 +2000 69 0.74833 +2000 70 0.77783 +2000 71 0.81830 +2000 72 0.86979 +2000 73 0.77622 +2000 74 0.67310 +2000 75 0.67760 +2000 76 0.66077 +2000 77 0.71063 +2000 78 0.76853 +2000 79 0.76663 +2000 80 0.81924 +2000 81 0.88882 +2000 82 0.66356 +2000 83 0.69955 +2000 84 0.65163 +2000 85 0.67691 +2000 86 0.68917 +2000 87 0.85117 +2000 88 0.85059 +2000 89 0.96115 +2000 90 0.84299 +2000 91 0.79186 +2000 92 0.80626 +2000 93 0.76714 +2000 94 0.82105 +2000 95 0.91914 +2000 96 0.95597 +2000 97 0.92195 +2000 98 0.89690 +2000 99 0.87613 +2000 100 0.93132 +2000 101 0.84933 +2000 102 0.90574 +2000 103 0.80120 +2000 104 0.80093 +2000 105 0.82164 +2000 106 0.78940 +2000 107 0.85816 +2000 108 0.90817 +2000 109 0.97502 +2000 110 0.97050 +2000 111 0.93622 +2000 112 0.84986 +2000 113 0.91004 +2000 114 0.81357 +2000 115 0.85873 +2000 116 0.77798 +2000 117 0.82881 +2000 118 0.82403 +2000 119 0.82606 +2000 120 0.84228 +2000 121 0.84066 +2000 122 0.83374 +2000 123 0.85792 +2000 124 0.88086 +2000 125 0.84354 +2000 126 0.84296 +2000 127 0.94854 +2000 128 0.84292 +2000 129 0.77271 +2000 130 0.83016 +2000 131 0.86751 +2000 132 0.99148 +2000 133 0.98398 +2000 134 0.93134 +2000 135 0.84646 +2000 136 0.85672 +2000 137 0.76673 +2000 138 0.81550 +2000 139 0.83937 +2000 140 0.88991 +2000 141 0.86680 +2000 142 0.81991 +2000 143 0.82293 +2000 144 0.90896 +2000 145 0.88328 +2000 146 0.84990 +2000 147 0.85869 +2000 148 0.87200 +2000 149 0.86531 +2000 150 0.92988 +2000 151 0.93286 +2000 152 0.95670 +2000 153 0.91635 +2000 154 0.96503 +2000 155 0.93054 +2000 156 0.78124 +2000 157 0.80006 +2000 158 0.95198 +2000 159 0.81667 +2000 160 0.81956 +2000 161 0.86959 +2000 162 0.90983 +2000 163 0.82966 +2000 164 0.71245 +2000 165 0.76652 +2000 166 0.82258 +2000 167 0.88136 +2000 168 0.85345 +2000 169 0.85624 +2000 170 0.76096 +2000 171 0.85473 +2000 172 0.87599 +2000 173 0.89957 +2000 174 0.92338 +2000 175 0.89422 +2000 176 0.86335 +2000 177 0.89060 +2000 178 0.81972 +2000 179 0.92940 +2000 180 0.98036 +2000 181 0.91812 +2000 182 0.86457 +2000 183 0.89165 +2000 184 0.89013 +2000 185 0.72756 +2000 186 0.77084 +2000 187 0.82970 +2000 188 0.77332 +2000 189 0.77461 +2000 190 0.83350 +2000 191 0.83655 +2000 192 0.86061 +2000 193 0.83444 +2000 194 0.80750 +2000 195 0.82652 +2000 196 0.83705 +2000 197 0.76420 +2000 198 0.77038 +2000 199 0.81813 +2000 200 0.98427 +2000 201 0.98307 +2000 202 0.97827 +2000 203 0.94465 +2000 204 0.83505 +2000 205 0.79232 +2000 206 0.81619 +2000 207 0.92786 +2000 208 0.90603 +2000 209 0.97679 +2000 210 0.83895 +2000 211 0.80391 +2000 212 0.77953 +2000 213 0.80495 +2000 214 0.81213 +2000 215 0.86394 +2000 216 0.98557 +2000 217 0.79790 +2000 218 0.76270 +2000 219 0.77741 +2000 220 0.85053 +2000 221 0.79786 +2000 222 0.87921 +2000 223 0.93929 +2000 224 0.79418 +2000 225 0.74544 +2000 226 0.77484 +2000 227 0.77685 +2000 228 0.81985 +2000 229 0.81344 +2000 230 0.91346 +2000 231 0.88486 +2000 232 0.78511 +2000 233 0.82688 +2000 234 0.83432 +2000 235 0.77829 +2000 236 0.77991 +2000 237 0.81707 +2000 238 0.98269 +2000 239 0.85697 +2000 240 0.87014 +2000 241 0.78086 +2000 242 0.95281 +2000 243 0.92625 +2000 244 0.85730 +2000 245 0.79092 +2000 246 0.80343 +2000 247 0.78716 +2000 248 0.84569 +2000 249 0.80972 +2000 250 0.94515 +2000 251 0.94465 +2000 252 0.96152 +2000 253 0.80716 +2000 254 0.77849 +2000 255 0.75981 +2000 256 0.88061 +2000 257 0.77213 +2000 258 0.67354 +2000 259 0.78332 +2000 260 0.76749 +2000 261 0.79969 +2000 262 0.81780 +2000 263 0.89818 +2000 264 0.77197 +2000 265 0.79705 +2000 266 0.76646 +2000 267 0.75564 +2000 268 0.90237 +2000 269 0.63958 +2000 270 0.64072 +2000 271 0.68328 +2000 272 0.76467 +2000 273 0.95988 +2000 274 0.97420 +2000 275 0.98626 +2000 276 0.84061 +2000 277 0.85932 +2000 278 0.69264 +2000 279 0.76204 +2000 280 0.81178 +2000 281 0.86268 +2000 282 0.87796 +2000 283 0.68547 +2000 284 0.94957 +2000 285 0.87353 +2000 286 0.65030 +2000 287 0.70671 +2000 288 0.81417 +2000 289 0.76719 +2000 290 0.67321 +2000 291 0.61368 +2000 292 0.58050 +2000 293 0.66225 +2000 294 0.72425 +2000 295 0.75228 +2000 296 0.74314 +2000 297 0.76040 +2000 298 0.81820 +2000 299 0.75553 +2000 300 0.85663 +2000 301 0.82329 +2000 302 0.88700 +2000 303 0.85209 +2000 304 0.76358 +2000 305 0.75146 +2000 306 0.71936 +2000 307 0.61811 +2000 308 0.79967 +2000 309 0.97306 +2000 310 0.91506 +2000 311 0.75263 +2000 312 0.82969 +2000 313 0.60013 +2000 314 0.62088 +2000 315 0.65073 +2000 316 0.68513 +2000 317 0.70277 +2000 318 0.70499 +2000 319 0.71209 +2000 320 0.68865 +2000 321 0.70653 +2000 322 0.60844 +2000 323 0.65017 +2000 324 0.69284 +2000 325 0.75518 +2000 326 0.93870 +2000 327 0.65444 +2000 328 0.69037 +2000 329 0.79802 +2000 330 0.75018 +2000 331 0.70699 +2000 332 0.83251 +2000 333 0.83455 +2000 334 0.71356 +2000 335 0.74155 +2000 336 0.74971 +2000 337 0.82345 +2000 338 0.95362 +2000 339 0.80347 +2000 340 0.80902 +2000 341 0.87396 +2000 342 0.79363 +2000 343 0.89971 +2000 344 0.82180 +2000 345 0.94604 +2000 346 0.91149 +2000 347 0.75686 +2000 348 0.81926 +2000 349 0.83236 +2000 350 0.81295 +2000 351 0.82509 +2000 352 0.76600 +2000 353 0.77128 +2000 354 0.88914 +2000 355 0.74253 +2000 356 0.55876 +2000 357 0.67287 +2000 358 0.88054 +2000 359 0.86180 +2000 360 0.84864 +2000 361 0.86989 +2000 362 0.79943 +2000 363 0.97095 +2000 364 0.94018 +2000 365 0.85028 +2000 366 0.67906 +2001 1 0.76644 +2001 2 0.65726 +2001 3 0.70469 +2001 4 0.68729 +2001 5 0.68950 +2001 6 0.78039 +2001 7 0.77612 +2001 8 0.78784 +2001 9 0.86222 +2001 10 0.80364 +2001 11 0.84923 +2001 12 0.76721 +2001 13 0.65766 +2001 14 0.62522 +2001 15 0.80737 +2001 16 0.65635 +2001 17 0.70344 +2001 18 0.79414 +2001 19 0.68469 +2001 20 0.69624 +2001 21 0.67244 +2001 22 0.65863 +2001 23 0.76714 +2001 24 0.74416 +2001 25 0.89808 +2001 26 0.63634 +2001 27 0.65792 +2001 28 0.83179 +2001 29 0.80954 +2001 30 0.84133 +2001 31 0.68809 +2001 32 0.66475 +2001 33 0.76379 +2001 34 0.70027 +2001 35 0.72176 +2001 36 0.67209 +2001 37 0.74432 +2001 38 0.87405 +2001 39 0.79559 +2001 40 0.82445 +2001 41 0.95632 +2001 42 0.98647 +2001 43 0.85767 +2001 44 0.97586 +2001 45 0.93740 +2001 46 0.90375 +2001 47 0.99558 +2001 48 0.85237 +2001 49 0.89787 +2001 50 0.91238 +2001 51 0.76948 +2001 52 0.76687 +2001 53 0.94950 +2001 54 0.72336 +2001 55 0.81171 +2001 56 0.89611 +2001 57 0.86365 +2001 58 0.82886 +2001 59 0.85042 +2001 60 0.87312 +2001 61 0.84367 +2001 62 0.86678 +2001 63 0.72640 +2001 64 0.74671 +2001 65 0.74375 +2001 66 0.84338 +2001 67 0.94416 +2001 68 0.67452 +2001 69 0.73344 +2001 70 0.81741 +2001 71 0.81503 +2001 72 0.86149 +2001 73 0.70731 +2001 74 0.75007 +2001 75 0.80525 +2001 76 0.76655 +2001 77 0.74013 +2001 78 0.70000 +2001 79 0.72021 +2001 80 0.78671 +2001 81 0.76570 +2001 82 0.81005 +2001 83 0.81601 +2001 84 0.81120 +2001 85 0.80739 +2001 86 0.94525 +2001 87 0.83571 +2001 88 0.64217 +2001 89 0.70521 +2001 90 0.79235 +2001 91 0.96807 +2001 92 0.85430 +2001 93 0.71502 +2001 94 0.77981 +2001 95 0.75076 +2001 96 0.74128 +2001 97 0.65857 +2001 98 0.78901 +2001 99 0.82973 +2001 100 0.86855 +2001 101 0.90984 +2001 102 0.94971 +2001 103 0.73956 +2001 104 0.75435 +2001 105 0.82551 +2001 106 0.86091 +2001 107 0.79186 +2001 108 0.86680 +2001 109 0.88826 +2001 110 0.88952 +2001 111 0.86450 +2001 112 0.83569 +2001 113 0.77320 +2001 114 0.75361 +2001 115 0.78283 +2001 116 0.81533 +2001 117 0.83247 +2001 118 0.88515 +2001 119 0.92303 +2001 120 0.89880 +2001 121 0.96231 +2001 122 0.94832 +2001 123 0.96956 +2001 124 0.97682 +2001 125 0.91806 +2001 126 0.90398 +2001 127 0.84518 +2001 128 0.89104 +2001 129 0.93293 +2001 130 0.97842 +2001 131 0.98673 +2001 132 0.92563 +2001 133 0.85717 +2001 134 0.80324 +2001 135 0.70745 +2001 136 0.82039 +2001 137 0.90471 +2001 138 0.94512 +2001 139 0.84336 +2001 140 0.86753 +2001 141 0.90488 +2001 142 0.81197 +2001 143 0.89318 +2001 144 0.90472 +2001 145 0.79300 +2001 146 0.84865 +2001 147 0.72713 +2001 148 0.73240 +2001 149 0.94629 +2001 150 0.85327 +2001 151 0.82873 +2001 152 0.85315 +2001 153 0.81861 +2001 154 0.88829 +2001 155 0.88120 +2001 156 0.91071 +2001 157 0.91243 +2001 158 0.86812 +2001 159 0.92645 +2001 160 0.96521 +2001 161 0.70275 +2001 162 0.83722 +2001 163 0.87395 +2001 164 0.95608 +2001 165 0.97319 +2001 166 0.98962 +2001 167 0.98175 +2001 168 0.88011 +2001 169 0.77195 +2001 170 0.85846 +2001 171 0.89421 +2001 172 0.88943 +2001 173 0.93805 +2001 174 0.94356 +2001 175 0.84453 +2001 176 0.84798 +2001 177 0.86157 +2001 178 0.94321 +2001 179 0.89584 +2001 180 0.84526 +2001 181 0.75322 +2001 182 0.78344 +2001 183 0.83897 +2001 184 0.85335 +2001 185 0.79364 +2001 186 0.79778 +2001 187 0.78351 +2001 188 0.77579 +2001 189 0.78626 +2001 190 0.82802 +2001 191 0.82802 +2001 192 0.86628 +2001 193 0.82851 +2001 194 0.89231 +2001 195 0.94895 +2001 196 0.97345 +2001 197 0.96655 +2001 198 0.96464 +2001 199 0.88145 +2001 200 0.87444 +2001 201 0.83440 +2001 202 0.85857 +2001 203 0.79255 +2001 204 0.81824 +2001 205 0.75697 +2001 206 0.86755 +2001 207 0.81767 +2001 208 0.85332 +2001 209 0.90122 +2001 210 0.88747 +2001 211 0.76114 +2001 212 0.80084 +2001 213 0.82774 +2001 214 0.78170 +2001 215 0.76298 +2001 216 0.87952 +2001 217 0.87430 +2001 218 0.88853 +2001 219 0.95765 +2001 220 0.97283 +2001 221 0.93665 +2001 222 0.89906 +2001 223 0.71304 +2001 224 0.76155 +2001 225 0.80497 +2001 226 0.80204 +2001 227 0.74400 +2001 228 0.80806 +2001 229 0.88793 +2001 230 0.89053 +2001 231 0.88052 +2001 232 0.91133 +2001 233 0.95260 +2001 234 0.94752 +2001 235 0.94638 +2001 236 0.93248 +2001 237 0.89732 +2001 238 0.78559 +2001 239 0.78875 +2001 240 0.86513 +2001 241 0.91292 +2001 242 0.94465 +2001 243 0.93868 +2001 244 0.81848 +2001 245 0.79667 +2001 246 0.85214 +2001 247 0.96539 +2001 248 0.84250 +2001 249 0.93947 +2001 250 0.75199 +2001 251 0.72394 +2001 252 0.73405 +2001 253 0.75748 +2001 254 0.80484 +2001 255 0.87100 +2001 256 0.82950 +2001 257 0.92338 +2001 258 0.95848 +2001 259 0.82014 +2001 260 0.72225 +2001 261 0.77172 +2001 262 0.81231 +2001 263 0.76484 +2001 264 0.79959 +2001 265 0.70079 +2001 266 0.63446 +2001 267 0.66095 +2001 268 0.74327 +2001 269 0.70908 +2001 270 0.76659 +2001 271 0.79532 +2001 272 0.77150 +2001 273 0.79456 +2001 274 0.81483 +2001 275 0.84459 +2001 276 0.87542 +2001 277 0.92704 +2001 278 0.98380 +2001 279 0.87452 +2001 280 0.83660 +2001 281 0.99140 +2001 282 0.94337 +2001 283 0.75331 +2001 284 0.75156 +2001 285 0.77006 +2001 286 0.82981 +2001 287 0.79347 +2001 288 0.86186 +2001 289 0.72991 +2001 290 0.85675 +2001 291 0.87287 +2001 292 0.96621 +2001 293 0.86388 +2001 294 0.81574 +2001 295 0.66922 +2001 296 0.70188 +2001 297 0.64098 +2001 298 0.83418 +2001 299 0.82701 +2001 300 0.96444 +2001 301 0.85964 +2001 302 0.76941 +2001 303 0.89672 +2001 304 0.90640 +2001 305 0.84846 +2001 306 0.90527 +2001 307 0.81424 +2001 308 0.63658 +2001 309 0.70917 +2001 310 0.89085 +2001 311 0.91809 +2001 312 0.78970 +2001 313 0.82638 +2001 314 0.75844 +2001 315 0.75158 +2001 316 0.93736 +2001 317 0.86483 +2001 318 0.68890 +2001 319 0.73330 +2001 320 0.70112 +2001 321 0.73991 +2001 322 0.72535 +2001 323 0.73718 +2001 324 0.85216 +2001 325 0.99493 +2001 326 0.94701 +2001 327 0.81476 +2001 328 0.65966 +2001 329 0.64327 +2001 330 0.76330 +2001 331 0.78634 +2001 332 0.87804 +2001 333 0.94494 +2001 334 0.99535 +2001 335 0.95188 +2001 336 0.90121 +2001 337 0.86555 +2001 338 0.87759 +2001 339 0.79559 +2001 340 0.95294 +2001 341 0.96425 +2001 342 0.89420 +2001 343 0.89663 +2001 344 0.84826 +2001 345 0.88181 +2001 346 0.73925 +2001 347 0.72231 +2001 348 0.93813 +2001 349 0.95154 +2001 350 0.91995 +2001 351 0.99131 +2001 352 0.94564 +2001 353 0.76247 +2001 354 0.74184 +2001 355 0.76961 +2001 356 0.79430 +2001 357 0.93801 +2001 358 0.73441 +2001 359 0.75602 +2001 360 0.91466 +2001 361 0.87967 +2001 362 0.79108 +2001 363 0.72589 +2001 364 0.66619 +2001 365 0.74392 +2002 1 0.74775 +2002 2 0.79972 +2002 3 0.80875 +2002 4 0.69130 +2002 5 0.78770 +2002 6 0.66803 +2002 7 0.72435 +2002 8 0.85255 +2002 9 0.83032 +2002 10 0.88625 +2002 11 0.94317 +2002 12 0.79010 +2002 13 0.91821 +2002 14 0.89507 +2002 15 0.77052 +2002 16 0.78632 +2002 17 0.86863 +2002 18 0.75499 +2002 19 0.79238 +2002 20 0.66992 +2002 21 0.76714 +2002 22 0.83932 +2002 23 0.77865 +2002 24 0.72645 +2002 25 0.74968 +2002 26 0.79479 +2002 27 0.84685 +2002 28 0.78251 +2002 29 0.72724 +2002 30 0.77539 +2002 31 0.67646 +2002 32 0.54829 +2002 33 0.65762 +2002 34 0.70423 +2002 35 0.88058 +2002 36 0.64343 +2002 37 0.65317 +2002 38 0.77388 +2002 39 0.65063 +2002 40 0.80680 +2002 41 0.95915 +2002 42 0.98255 +2002 43 0.77851 +2002 44 0.62614 +2002 45 0.64633 +2002 46 0.66463 +2002 47 0.69109 +2002 48 0.66052 +2002 49 0.71889 +2002 50 0.77484 +2002 51 0.73232 +2002 52 0.80902 +2002 53 0.91395 +2002 54 0.78178 +2002 55 0.67342 +2002 56 0.75639 +2002 57 0.76976 +2002 58 0.77750 +2002 59 0.81462 +2002 60 0.97730 +2002 61 0.78358 +2002 62 0.74852 +2002 63 0.69586 +2002 64 0.63732 +2002 65 0.75298 +2002 66 0.81762 +2002 67 0.75264 +2002 68 0.82789 +2002 69 0.76245 +2002 70 0.72786 +2002 71 0.78770 +2002 72 0.86141 +2002 73 0.85600 +2002 74 0.72112 +2002 75 0.82251 +2002 76 0.82561 +2002 77 0.72414 +2002 78 0.77640 +2002 79 0.80881 +2002 80 0.81107 +2002 81 0.76917 +2002 82 0.82531 +2002 83 0.81283 +2002 84 0.69364 +2002 85 0.69651 +2002 86 0.76655 +2002 87 0.75971 +2002 88 0.81865 +2002 89 0.93887 +2002 90 0.75753 +2002 91 0.64481 +2002 92 0.66992 +2002 93 0.71800 +2002 94 0.78725 +2002 95 0.92660 +2002 96 0.83937 +2002 97 0.75770 +2002 98 0.65943 +2002 99 0.78026 +2002 100 0.81986 +2002 101 0.79883 +2002 102 0.79746 +2002 103 0.78626 +2002 104 0.75084 +2002 105 0.74347 +2002 106 0.76303 +2002 107 0.80932 +2002 108 0.73248 +2002 109 0.73735 +2002 110 0.80006 +2002 111 0.80074 +2002 112 0.79284 +2002 113 0.88759 +2002 114 0.97505 +2002 115 0.99769 +2002 116 0.97284 +2002 117 0.93352 +2002 118 0.85495 +2002 119 0.72857 +2002 120 0.80051 +2002 121 0.73980 +2002 122 0.78973 +2002 123 0.81508 +2002 124 0.78551 +2002 125 0.80979 +2002 126 0.82760 +2002 127 0.79668 +2002 128 0.84798 +2002 129 0.89295 +2002 130 0.86366 +2002 131 0.87342 +2002 132 0.80241 +2002 133 0.78221 +2002 134 0.77857 +2002 135 0.84689 +2002 136 0.78934 +2002 137 0.83219 +2002 138 0.81617 +2002 139 0.92638 +2002 140 0.94090 +2002 141 0.95466 +2002 142 0.95152 +2002 143 0.81872 +2002 144 0.80154 +2002 145 0.79241 +2002 146 0.88852 +2002 147 0.89527 +2002 148 0.84870 +2002 149 0.79616 +2002 150 0.82989 +2002 151 0.81052 +2002 152 0.88206 +2002 153 0.86066 +2002 154 0.78411 +2002 155 0.85656 +2002 156 0.74197 +2002 157 0.78250 +2002 158 0.86027 +2002 159 0.91254 +2002 160 0.94086 +2002 161 0.86573 +2002 162 0.88555 +2002 163 0.95362 +2002 164 0.96128 +2002 165 0.93711 +2002 166 0.83474 +2002 167 0.88017 +2002 168 0.96342 +2002 169 0.99140 +2002 170 0.93984 +2002 171 0.94571 +2002 172 0.84417 +2002 173 0.92561 +2002 174 0.77617 +2002 175 0.83679 +2002 176 0.86653 +2002 177 0.89911 +2002 178 0.89230 +2002 179 0.98299 +2002 180 0.97744 +2002 181 0.92355 +2002 182 0.84420 +2002 183 0.83929 +2002 184 0.93193 +2002 185 0.96049 +2002 186 0.91871 +2002 187 0.95438 +2002 188 0.89055 +2002 189 0.85224 +2002 190 0.88324 +2002 191 0.93048 +2002 192 0.95793 +2002 193 0.72345 +2002 194 0.69960 +2002 195 0.76978 +2002 196 0.84785 +2002 197 0.93822 +2002 198 0.90919 +2002 199 0.91752 +2002 200 0.85053 +2002 201 0.84755 +2002 202 0.95722 +2002 203 0.96143 +2002 204 0.88881 +2002 205 0.89127 +2002 206 0.86074 +2002 207 0.71540 +2002 208 0.74448 +2002 209 0.79451 +2002 210 0.83339 +2002 211 0.80728 +2002 212 0.83223 +2002 213 0.82263 +2002 214 0.87285 +2002 215 0.96212 +2002 216 0.92572 +2002 217 0.93109 +2002 218 0.89755 +2002 219 0.90965 +2002 220 0.83617 +2002 221 0.68624 +2002 222 0.78934 +2002 223 0.88547 +2002 224 0.87549 +2002 225 0.95129 +2002 226 0.89592 +2002 227 0.93491 +2002 228 0.84062 +2002 229 0.76481 +2002 230 0.59919 +2002 231 0.78284 +2002 232 0.84090 +2002 233 0.79381 +2002 234 0.81716 +2002 235 0.87786 +2002 236 0.87562 +2002 237 0.76587 +2002 238 0.70065 +2002 239 0.73459 +2002 240 0.71091 +2002 241 0.77320 +2002 242 0.80204 +2002 243 0.76055 +2002 244 0.74810 +2002 245 0.91390 +2002 246 0.86404 +2002 247 0.96565 +2002 248 0.83355 +2002 249 0.85551 +2002 250 0.91389 +2002 251 0.82247 +2002 252 0.89745 +2002 253 0.94341 +2002 254 0.87079 +2002 255 0.74903 +2002 256 0.61221 +2002 257 0.73428 +2002 258 0.80433 +2002 259 0.80524 +2002 260 0.80087 +2002 261 0.94431 +2002 262 0.89845 +2002 263 0.70654 +2002 264 0.75931 +2002 265 0.83671 +2002 266 0.88359 +2002 267 0.71928 +2002 268 0.69585 +2002 269 0.77674 +2002 270 0.75162 +2002 271 0.90562 +2002 272 0.89718 +2002 273 0.76810 +2002 274 0.74520 +2002 275 0.75959 +2002 276 0.60458 +2002 277 0.66747 +2002 278 0.60261 +2002 279 0.54610 +2002 280 0.64041 +2002 281 0.70713 +2002 282 0.72868 +2002 283 0.70685 +2002 284 0.85827 +2002 285 0.71048 +2002 286 0.77856 +2002 287 0.67796 +2002 288 0.91972 +2002 289 0.82157 +2002 290 0.82884 +2002 291 0.70504 +2002 292 0.79455 +2002 293 0.76820 +2002 294 0.73998 +2002 295 0.67731 +2002 296 0.71885 +2002 297 0.93290 +2002 298 0.78418 +2002 299 0.85853 +2002 300 0.83188 +2002 301 0.69111 +2002 302 0.81643 +2002 303 0.76231 +2002 304 0.79376 +2002 305 0.84307 +2002 306 0.64946 +2002 307 0.72212 +2002 308 0.88542 +2002 309 0.82527 +2002 310 0.85088 +2002 311 0.73729 +2002 312 0.78187 +2002 313 0.79986 +2002 314 0.69962 +2002 315 0.66063 +2002 316 0.58331 +2002 317 0.70911 +2002 318 0.74720 +2002 319 0.82889 +2002 320 0.89640 +2002 321 0.75045 +2002 322 0.82599 +2002 323 0.73116 +2002 324 0.70054 +2002 325 0.77411 +2002 326 0.73480 +2002 327 0.76541 +2002 328 0.70024 +2002 329 0.75007 +2002 330 0.81641 +2002 331 0.77998 +2002 332 0.71095 +2002 333 0.63686 +2002 334 0.74147 +2002 335 0.77582 +2002 336 0.86257 +2002 337 0.79874 +2002 338 0.77210 +2002 339 0.88537 +2002 340 0.96911 +2002 341 0.79528 +2002 342 0.68966 +2002 343 0.70310 +2002 344 0.75651 +2002 345 0.82904 +2002 346 0.75939 +2002 347 0.72654 +2002 348 0.63643 +2002 349 0.68275 +2002 350 0.80300 +2002 351 0.99031 +2002 352 0.85434 +2002 353 0.76783 +2002 354 0.74371 +2002 355 0.77029 +2002 356 0.75808 +2002 357 0.78623 +2002 358 0.76639 +2002 359 0.77039 +2002 360 0.60950 +2002 361 0.64996 +2002 362 0.57092 +2002 363 0.63956 +2002 364 0.72549 +2002 365 0.76437 +2003 1 0.76539 +2003 2 0.74473 +2003 3 0.75810 +2003 4 0.82168 +2003 5 0.91521 +2003 6 0.79018 +2003 7 0.68266 +2003 8 0.98503 +2003 9 0.94516 +2003 10 0.82051 +2003 11 0.81583 +2003 12 0.83908 +2003 13 0.59934 +2003 14 0.60747 +2003 15 0.68025 +2003 16 0.82731 +2003 17 0.76042 +2003 18 0.71465 +2003 19 0.75642 +2003 20 0.72112 +2003 21 0.79200 +2003 22 0.72576 +2003 23 0.71075 +2003 24 0.64244 +2003 25 0.55609 +2003 26 0.77327 +2003 27 0.60684 +2003 28 0.60614 +2003 29 0.72424 +2003 30 0.72602 +2003 31 0.68004 +2003 32 0.66289 +2003 33 0.67432 +2003 34 0.63748 +2003 35 0.57178 +2003 36 0.72277 +2003 37 0.74092 +2003 38 0.73023 +2003 39 0.67555 +2003 40 0.76747 +2003 41 0.74022 +2003 42 0.70491 +2003 43 0.76031 +2003 44 0.74053 +2003 45 0.58319 +2003 46 0.69671 +2003 47 0.73662 +2003 48 0.70995 +2003 49 0.91532 +2003 50 0.64314 +2003 51 0.67357 +2003 52 0.50365 +2003 53 0.74921 +2003 54 0.82490 +2003 55 0.82774 +2003 56 0.87773 +2003 57 0.95527 +2003 58 0.92992 +2003 59 0.91485 +2003 60 0.93524 +2003 61 0.91889 +2003 62 0.69827 +2003 63 0.75454 +2003 64 0.75389 +2003 65 0.76067 +2003 66 0.84253 +2003 67 0.82438 +2003 68 0.83169 +2003 69 0.96890 +2003 70 0.75536 +2003 71 0.65666 +2003 72 0.71387 +2003 73 0.85953 +2003 74 0.77782 +2003 75 0.81255 +2003 76 0.78253 +2003 77 0.74215 +2003 78 0.78050 +2003 79 0.81724 +2003 80 0.86512 +2003 81 0.87107 +2003 82 0.77743 +2003 83 0.84085 +2003 84 0.91787 +2003 85 0.96502 +2003 86 0.98955 +2003 87 0.90280 +2003 88 0.86121 +2003 89 0.92971 +2003 90 0.86445 +2003 91 0.83080 +2003 92 0.85752 +2003 93 0.77189 +2003 94 0.85491 +2003 95 0.97827 +2003 96 0.81998 +2003 97 0.77270 +2003 98 0.79723 +2003 99 0.72812 +2003 100 0.74375 +2003 101 0.76296 +2003 102 0.77051 +2003 103 0.78388 +2003 104 0.80083 +2003 105 0.83169 +2003 106 0.83017 +2003 107 0.82925 +2003 108 0.80608 +2003 109 0.82882 +2003 110 0.98917 +2003 111 0.93566 +2003 112 0.82410 +2003 113 0.77242 +2003 114 0.68391 +2003 115 0.72505 +2003 116 0.82941 +2003 117 0.74199 +2003 118 0.80633 +2003 119 0.87399 +2003 120 0.80640 +2003 121 0.90719 +2003 122 0.84586 +2003 123 0.83576 +2003 124 0.86103 +2003 125 0.81158 +2003 126 0.83087 +2003 127 0.88827 +2003 128 0.88757 +2003 129 0.88508 +2003 130 0.88270 +2003 131 0.91691 +2003 132 0.78364 +2003 133 0.78979 +2003 134 0.79731 +2003 135 0.82475 +2003 136 0.85347 +2003 137 0.92138 +2003 138 0.89354 +2003 139 0.99182 +2003 140 0.99820 +2003 141 0.95213 +2003 142 0.91941 +2003 143 0.95236 +2003 144 0.88897 +2003 145 0.80120 +2003 146 0.81155 +2003 147 0.86024 +2003 148 0.75278 +2003 149 0.81291 +2003 150 0.80738 +2003 151 0.84941 +2003 152 0.85452 +2003 153 0.89663 +2003 154 0.91471 +2003 155 0.97819 +2003 156 0.97035 +2003 157 0.87265 +2003 158 0.80047 +2003 159 0.91453 +2003 160 0.77306 +2003 161 0.69706 +2003 162 0.75143 +2003 163 0.86384 +2003 164 0.88654 +2003 165 0.90102 +2003 166 0.93483 +2003 167 0.93867 +2003 168 0.99673 +2003 169 0.87770 +2003 170 0.83909 +2003 171 0.86415 +2003 172 0.88264 +2003 173 0.95191 +2003 174 0.95952 +2003 175 0.81908 +2003 176 0.74001 +2003 177 0.81894 +2003 178 0.82585 +2003 179 0.94887 +2003 180 0.97216 +2003 181 0.87683 +2003 182 0.78520 +2003 183 0.85903 +2003 184 0.83246 +2003 185 0.83580 +2003 186 0.69133 +2003 187 0.81962 +2003 188 0.88683 +2003 189 0.85167 +2003 190 0.91557 +2003 191 0.90173 +2003 192 0.77019 +2003 193 0.83341 +2003 194 0.84234 +2003 195 0.91809 +2003 196 0.92872 +2003 197 0.91057 +2003 198 0.80314 +2003 199 0.79059 +2003 200 0.66995 +2003 201 0.77796 +2003 202 0.80071 +2003 203 0.82729 +2003 204 0.85669 +2003 205 0.84589 +2003 206 0.86667 +2003 207 0.86604 +2003 208 0.91642 +2003 209 0.87178 +2003 210 0.77017 +2003 211 0.85977 +2003 212 0.90401 +2003 213 0.89446 +2003 214 0.73560 +2003 215 0.80657 +2003 216 0.81962 +2003 217 0.82144 +2003 218 0.83567 +2003 219 0.83092 +2003 220 0.90032 +2003 221 0.81001 +2003 222 0.90298 +2003 223 0.81136 +2003 224 0.75339 +2003 225 0.80571 +2003 226 0.93612 +2003 227 0.82185 +2003 228 0.79165 +2003 229 0.76452 +2003 230 0.81016 +2003 231 0.81602 +2003 232 0.94062 +2003 233 0.91385 +2003 234 0.88857 +2003 235 0.78276 +2003 236 0.83229 +2003 237 0.84989 +2003 238 0.87933 +2003 239 0.85038 +2003 240 0.75745 +2003 241 0.81541 +2003 242 0.89290 +2003 243 0.87898 +2003 244 0.89283 +2003 245 0.73569 +2003 246 0.91085 +2003 247 0.96598 +2003 248 0.84721 +2003 249 0.80707 +2003 250 0.87714 +2003 251 0.79218 +2003 252 0.77100 +2003 253 0.85148 +2003 254 0.78070 +2003 255 0.83968 +2003 256 0.95990 +2003 257 0.93569 +2003 258 0.88742 +2003 259 0.87459 +2003 260 0.87511 +2003 261 0.75235 +2003 262 0.87172 +2003 263 0.93268 +2003 264 0.75188 +2003 265 0.71042 +2003 266 0.84630 +2003 267 0.84576 +2003 268 0.91991 +2003 269 0.88041 +2003 270 0.95518 +2003 271 0.85338 +2003 272 0.81461 +2003 273 0.87321 +2003 274 0.73036 +2003 275 0.93864 +2003 276 0.76802 +2003 277 0.70067 +2003 278 0.62043 +2003 279 0.68706 +2003 280 0.73169 +2003 281 0.91846 +2003 282 0.96851 +2003 283 0.87900 +2003 284 0.99392 +2003 285 0.91199 +2003 286 0.60125 +2003 287 0.64835 +2003 288 0.79296 +2003 289 0.76831 +2003 290 0.79921 +2003 291 0.77221 +2003 292 0.80313 +2003 293 0.83577 +2003 294 0.82922 +2003 295 0.81190 +2003 296 0.74735 +2003 297 0.67091 +2003 298 0.57438 +2003 299 0.71317 +2003 300 0.96816 +2003 301 0.83647 +2003 302 0.90986 +2003 303 0.74301 +2003 304 0.72959 +2003 305 0.86412 +2003 306 0.84709 +2003 307 0.73998 +2003 308 0.67163 +2003 309 0.73351 +2003 310 0.76074 +2003 311 0.84792 +2003 312 0.71736 +2003 313 0.76482 +2003 314 0.76733 +2003 315 0.80473 +2003 316 0.89979 +2003 317 0.71964 +2003 318 0.76779 +2003 319 0.70620 +2003 320 0.77039 +2003 321 0.56900 +2003 322 0.65143 +2003 323 0.71405 +2003 324 0.71986 +2003 325 0.86333 +2003 326 0.91018 +2003 327 0.84955 +2003 328 0.84628 +2003 329 0.98124 +2003 330 0.89272 +2003 331 0.79630 +2003 332 0.68737 +2003 333 0.71271 +2003 334 0.76020 +2003 335 0.74968 +2003 336 0.80094 +2003 337 0.77575 +2003 338 0.79570 +2003 339 0.78881 +2003 340 0.77028 +2003 341 0.74314 +2003 342 0.94833 +2003 343 0.99863 +2003 344 0.87979 +2003 345 0.88552 +2003 346 0.95303 +2003 347 0.89073 +2003 348 0.70119 +2003 349 0.64042 +2003 350 0.59082 +2003 351 0.67005 +2003 352 0.68722 +2003 353 0.75787 +2003 354 0.87066 +2003 355 0.81532 +2003 356 0.92292 +2003 357 0.86220 +2003 358 0.77225 +2003 359 0.75113 +2003 360 0.75881 +2003 361 0.81222 +2003 362 0.96795 +2003 363 0.82344 +2003 364 0.62641 +2003 365 0.76478 +2004 1 0.80507 +2004 2 0.83366 +2004 3 0.74581 +2004 4 0.72937 +2004 5 0.72508 +2004 6 0.85706 +2004 7 0.86891 +2004 8 0.82020 +2004 9 0.66041 +2004 10 0.70327 +2004 11 0.68456 +2004 12 0.80645 +2004 13 0.81737 +2004 14 0.78520 +2004 15 0.72276 +2004 16 0.62561 +2004 17 0.71269 +2004 18 0.80753 +2004 19 0.89813 +2004 20 0.73088 +2004 21 0.72380 +2004 22 0.70676 +2004 23 0.69940 +2004 24 0.74800 +2004 25 0.70206 +2004 26 0.77585 +2004 27 0.88356 +2004 28 0.86848 +2004 29 0.96268 +2004 30 0.94999 +2004 31 0.94975 +2004 32 0.98006 +2004 33 0.85173 +2004 34 0.95522 +2004 35 0.80399 +2004 36 0.85974 +2004 37 0.77968 +2004 38 0.84436 +2004 39 0.82710 +2004 40 0.81910 +2004 41 0.83955 +2004 42 0.94193 +2004 43 0.81643 +2004 44 0.80384 +2004 45 0.75790 +2004 46 0.79614 +2004 47 0.79821 +2004 48 0.79018 +2004 49 0.82264 +2004 50 0.76905 +2004 51 0.75568 +2004 52 0.75074 +2004 53 0.79587 +2004 54 0.76397 +2004 55 0.65023 +2004 56 0.81063 +2004 57 0.84250 +2004 58 0.99536 +2004 59 0.91808 +2004 60 0.76600 +2004 61 0.83342 +2004 62 0.71927 +2004 63 0.64730 +2004 64 0.73370 +2004 65 0.80482 +2004 66 0.77619 +2004 67 0.86181 +2004 68 0.82668 +2004 69 0.81431 +2004 70 0.71540 +2004 71 0.73898 +2004 72 0.80106 +2004 73 0.78559 +2004 74 0.83338 +2004 75 0.83957 +2004 76 0.95848 +2004 77 0.78563 +2004 78 0.74101 +2004 79 0.79452 +2004 80 0.76595 +2004 81 0.76561 +2004 82 0.72509 +2004 83 0.70885 +2004 84 0.71279 +2004 85 0.84390 +2004 86 0.80157 +2004 87 0.68886 +2004 88 0.62392 +2004 89 0.70880 +2004 90 0.69583 +2004 91 0.78270 +2004 92 0.84274 +2004 93 0.73804 +2004 94 0.72419 +2004 95 0.71174 +2004 96 0.74330 +2004 97 0.73813 +2004 98 0.76406 +2004 99 0.80702 +2004 100 0.74380 +2004 101 0.71990 +2004 102 0.70545 +2004 103 0.71148 +2004 104 0.76022 +2004 105 0.77952 +2004 106 0.80004 +2004 107 0.77751 +2004 108 0.81485 +2004 109 0.73942 +2004 110 0.70694 +2004 111 0.75876 +2004 112 0.74653 +2004 113 0.75944 +2004 114 0.77617 +2004 115 0.95915 +2004 116 0.90657 +2004 117 0.89069 +2004 118 0.97444 +2004 119 0.97279 +2004 120 0.93594 +2004 121 0.98849 +2004 122 0.94617 +2004 123 0.94284 +2004 124 0.75520 +2004 125 0.82174 +2004 126 0.84900 +2004 127 0.84529 +2004 128 0.86914 +2004 129 0.87818 +2004 130 0.88676 +2004 131 0.93550 +2004 132 0.98789 +2004 133 0.88531 +2004 134 0.97391 +2004 135 0.81110 +2004 136 0.75788 +2004 137 0.78906 +2004 138 0.81330 +2004 139 0.81259 +2004 140 0.84974 +2004 141 0.86866 +2004 142 0.98375 +2004 143 0.87837 +2004 144 0.79179 +2004 145 0.81167 +2004 146 0.86802 +2004 147 0.90429 +2004 148 0.95332 +2004 149 0.90937 +2004 150 0.93649 +2004 151 0.80665 +2004 152 0.82638 +2004 153 0.85954 +2004 154 0.90582 +2004 155 0.97019 +2004 156 0.92425 +2004 157 0.76595 +2004 158 0.74111 +2004 159 0.79545 +2004 160 0.87310 +2004 161 0.90120 +2004 162 0.86623 +2004 163 0.85557 +2004 164 0.85464 +2004 165 0.90770 +2004 166 0.91462 +2004 167 0.92334 +2004 168 0.98359 +2004 169 0.99728 +2004 170 0.92463 +2004 171 0.96946 +2004 172 0.88663 +2004 173 0.89476 +2004 174 0.75155 +2004 175 0.83049 +2004 176 0.89152 +2004 177 0.89320 +2004 178 0.96668 +2004 179 0.93792 +2004 180 0.91619 +2004 181 0.88456 +2004 182 0.74630 +2004 183 0.87826 +2004 184 0.81386 +2004 185 0.76213 +2004 186 0.83665 +2004 187 0.91939 +2004 188 0.93392 +2004 189 0.83703 +2004 190 0.77402 +2004 191 0.75797 +2004 192 0.78747 +2004 193 0.82064 +2004 194 0.82125 +2004 195 0.82399 +2004 196 0.94269 +2004 197 0.99560 +2004 198 0.99370 +2004 199 0.82573 +2004 200 0.75927 +2004 201 0.86891 +2004 202 0.86383 +2004 203 0.87698 +2004 204 0.78781 +2004 205 0.74975 +2004 206 0.82251 +2004 207 0.84849 +2004 208 0.96814 +2004 209 0.96920 +2004 210 0.92070 +2004 211 0.83433 +2004 212 0.91085 +2004 213 0.82990 +2004 214 0.76849 +2004 215 0.76553 +2004 216 0.86558 +2004 217 0.98946 +2004 218 0.95030 +2004 219 0.92630 +2004 220 0.86561 +2004 221 0.84655 +2004 222 0.86498 +2004 223 0.84969 +2004 224 0.82950 +2004 225 0.91271 +2004 226 0.87611 +2004 227 0.95056 +2004 228 0.82089 +2004 229 0.63096 +2004 230 0.86186 +2004 231 0.78465 +2004 232 0.79426 +2004 233 0.84890 +2004 234 0.85716 +2004 235 0.82192 +2004 236 0.70749 +2004 237 0.75431 +2004 238 0.71439 +2004 239 0.78598 +2004 240 0.71067 +2004 241 0.68990 +2004 242 0.72442 +2004 243 0.75178 +2004 244 0.89824 +2004 245 0.94307 +2004 246 0.85161 +2004 247 0.80795 +2004 248 0.79102 +2004 249 0.68742 +2004 250 0.74770 +2004 251 0.82842 +2004 252 0.82053 +2004 253 0.84857 +2004 254 0.82004 +2004 255 0.88792 +2004 256 0.95850 +2004 257 0.86933 +2004 258 0.75670 +2004 259 0.89330 +2004 260 0.74944 +2004 261 0.88180 +2004 262 0.69789 +2004 263 0.71446 +2004 264 0.73896 +2004 265 0.73709 +2004 266 0.78279 +2004 267 0.91824 +2004 268 0.97845 +2004 269 0.74089 +2004 270 0.80556 +2004 271 0.93351 +2004 272 0.63646 +2004 273 0.76335 +2004 274 0.78911 +2004 275 0.72696 +2004 276 0.68627 +2004 277 0.89462 +2004 278 0.84601 +2004 279 0.70744 +2004 280 0.91784 +2004 281 0.96921 +2004 282 0.91537 +2004 283 0.85560 +2004 284 0.75210 +2004 285 0.79312 +2004 286 0.84464 +2004 287 0.85742 +2004 288 0.81938 +2004 289 0.90452 +2004 290 0.78850 +2004 291 0.89689 +2004 292 0.72262 +2004 293 0.75023 +2004 294 0.74169 +2004 295 0.77628 +2004 296 0.85616 +2004 297 0.97562 +2004 298 0.90560 +2004 299 0.93237 +2004 300 0.79381 +2004 301 0.76530 +2004 302 0.96543 +2004 303 0.76884 +2004 304 0.77280 +2004 305 0.87324 +2004 306 0.79464 +2004 307 0.81708 +2004 308 0.78858 +2004 309 0.75575 +2004 310 0.82796 +2004 311 0.76045 +2004 312 0.91363 +2004 313 0.85261 +2004 314 0.76291 +2004 315 0.79480 +2004 316 0.91025 +2004 317 0.83777 +2004 318 0.98157 +2004 319 0.86691 +2004 320 0.74143 +2004 321 0.70044 +2004 322 0.78748 +2004 323 0.75527 +2004 324 0.78591 +2004 325 0.75323 +2004 326 0.75703 +2004 327 0.81021 +2004 328 0.73890 +2004 329 0.77753 +2004 330 0.71726 +2004 331 0.63987 +2004 332 0.69221 +2004 333 0.79649 +2004 334 0.65394 +2004 335 0.91386 +2004 336 0.89036 +2004 337 0.68882 +2004 338 0.79982 +2004 339 0.83497 +2004 340 0.67178 +2004 341 0.69807 +2004 342 0.74812 +2004 343 0.74397 +2004 344 0.72828 +2004 345 0.62852 +2004 346 0.70347 +2004 347 0.68839 +2004 348 0.72539 +2004 349 0.92272 +2004 350 0.90634 +2004 351 0.71878 +2004 352 0.83167 +2004 353 0.69785 +2004 354 0.68064 +2004 355 0.89451 +2004 356 0.88763 +2004 357 0.89743 +2004 358 0.85149 +2004 359 0.74109 +2004 360 0.77254 +2004 361 0.67883 +2004 362 0.79209 +2004 363 0.91036 +2004 364 0.99623 +2004 365 0.80138 +2004 366 0.89082 +2005 1 0.73678 +2005 2 0.81375 +2005 3 0.79261 +2005 4 0.90502 +2005 5 0.96108 +2005 6 0.92623 +2005 7 0.85436 +2005 8 0.79438 +2005 9 0.88175 +2005 10 0.70036 +2005 11 0.78810 +2005 12 0.72554 +2005 13 0.73850 +2005 14 0.75233 +2005 15 0.75836 +2005 16 0.77979 +2005 17 0.68753 +2005 18 0.63166 +2005 19 0.76120 +2005 20 0.75340 +2005 21 0.75350 +2005 22 0.75482 +2005 23 0.78600 +2005 24 0.78143 +2005 25 0.71112 +2005 26 0.69800 +2005 27 0.76457 +2005 28 0.70197 +2005 29 0.61380 +2005 30 0.72291 +2005 31 0.75013 +2005 32 0.87126 +2005 33 0.90856 +2005 34 0.93400 +2005 35 0.88849 +2005 36 0.83107 +2005 37 0.93698 +2005 38 0.81684 +2005 39 0.81224 +2005 40 0.77356 +2005 41 0.77957 +2005 42 0.76792 +2005 43 0.69534 +2005 44 0.80959 +2005 45 0.66582 +2005 46 0.74141 +2005 47 0.71503 +2005 48 0.63548 +2005 49 0.61892 +2005 50 0.69790 +2005 51 0.64497 +2005 52 0.74771 +2005 53 0.84853 +2005 54 0.81574 +2005 55 0.72698 +2005 56 0.75308 +2005 57 0.73964 +2005 58 0.69353 +2005 59 0.59864 +2005 60 0.63730 +2005 61 0.68868 +2005 62 0.70831 +2005 63 0.69159 +2005 64 0.77341 +2005 65 0.74567 +2005 66 0.64089 +2005 67 0.64509 +2005 68 0.74476 +2005 69 0.67719 +2005 70 0.61664 +2005 71 0.63141 +2005 72 0.64964 +2005 73 0.66459 +2005 74 0.76500 +2005 75 0.90742 +2005 76 0.88905 +2005 77 0.76971 +2005 78 0.76241 +2005 79 0.85788 +2005 80 0.92832 +2005 81 0.93385 +2005 82 0.97231 +2005 83 0.94278 +2005 84 0.81017 +2005 85 0.88623 +2005 86 0.87810 +2005 87 0.80912 +2005 88 0.93474 +2005 89 0.87158 +2005 90 0.86303 +2005 91 0.83680 +2005 92 0.77675 +2005 93 0.84574 +2005 94 0.80890 +2005 95 0.82865 +2005 96 0.75304 +2005 97 0.84797 +2005 98 0.87941 +2005 99 0.79269 +2005 100 0.79730 +2005 101 0.88887 +2005 102 0.71838 +2005 103 0.70647 +2005 104 0.78133 +2005 105 0.84787 +2005 106 0.81508 +2005 107 0.77079 +2005 108 0.80944 +2005 109 0.79465 +2005 110 0.76729 +2005 111 0.71494 +2005 112 0.80798 +2005 113 0.65327 +2005 114 0.62412 +2005 115 0.71945 +2005 116 0.75818 +2005 117 0.78400 +2005 118 0.78279 +2005 119 0.82307 +2005 120 0.86712 +2005 121 0.92006 +2005 122 0.99078 +2005 123 0.89981 +2005 124 0.76118 +2005 125 0.79662 +2005 126 0.83392 +2005 127 0.87155 +2005 128 0.71985 +2005 129 0.81346 +2005 130 0.84173 +2005 131 0.87266 +2005 132 0.81162 +2005 133 0.79804 +2005 134 0.87177 +2005 135 0.89034 +2005 136 0.96044 +2005 137 0.98661 +2005 138 0.98163 +2005 139 0.98582 +2005 140 0.95098 +2005 141 0.99299 +2005 142 0.90047 +2005 143 0.84315 +2005 144 0.88107 +2005 145 0.87232 +2005 146 0.96024 +2005 147 0.91789 +2005 148 0.95036 +2005 149 0.86714 +2005 150 0.79867 +2005 151 0.82109 +2005 152 0.77657 +2005 153 0.80765 +2005 154 0.83821 +2005 155 0.80602 +2005 156 0.82039 +2005 157 0.68373 +2005 158 0.79098 +2005 159 0.88458 +2005 160 0.91189 +2005 161 0.92973 +2005 162 0.89143 +2005 163 0.83313 +2005 164 0.80542 +2005 165 0.76370 +2005 166 0.77456 +2005 167 0.87429 +2005 168 0.93975 +2005 169 0.91533 +2005 170 0.88551 +2005 171 0.95475 +2005 172 0.94333 +2005 173 0.84164 +2005 174 0.97120 +2005 175 0.93788 +2005 176 0.68857 +2005 177 0.76991 +2005 178 0.80230 +2005 179 0.80662 +2005 180 0.68759 +2005 181 0.81361 +2005 182 0.80619 +2005 183 0.87439 +2005 184 0.89392 +2005 185 0.88086 +2005 186 0.93402 +2005 187 0.95332 +2005 188 0.94446 +2005 189 0.82326 +2005 190 0.81799 +2005 191 0.93773 +2005 192 0.85390 +2005 193 0.81525 +2005 194 0.85437 +2005 195 0.94246 +2005 196 0.88057 +2005 197 0.94616 +2005 198 0.96761 +2005 199 0.95521 +2005 200 0.91222 +2005 201 0.79150 +2005 202 0.77309 +2005 203 0.82105 +2005 204 0.85939 +2005 205 0.88773 +2005 206 0.89398 +2005 207 0.93318 +2005 208 0.95322 +2005 209 0.85696 +2005 210 0.81430 +2005 211 0.93038 +2005 212 0.94619 +2005 213 0.87629 +2005 214 0.76782 +2005 215 0.82771 +2005 216 0.85711 +2005 217 0.83383 +2005 218 0.95273 +2005 219 0.96155 +2005 220 0.87867 +2005 221 0.81441 +2005 222 0.81745 +2005 223 0.86899 +2005 224 0.78895 +2005 225 0.81229 +2005 226 0.75869 +2005 227 0.80129 +2005 228 0.86098 +2005 229 0.85447 +2005 230 0.85233 +2005 231 0.85512 +2005 232 0.84726 +2005 233 0.88888 +2005 234 0.92688 +2005 235 0.96894 +2005 236 0.85318 +2005 237 0.79522 +2005 238 0.76917 +2005 239 0.77303 +2005 240 0.79320 +2005 241 0.83996 +2005 242 0.86370 +2005 243 0.83326 +2005 244 0.73035 +2005 245 0.82517 +2005 246 0.87375 +2005 247 0.84597 +2005 248 0.87914 +2005 249 0.82346 +2005 250 0.78349 +2005 251 0.86108 +2005 252 0.83391 +2005 253 0.87074 +2005 254 0.86373 +2005 255 0.90212 +2005 256 0.92595 +2005 257 0.93531 +2005 258 0.89662 +2005 259 0.86130 +2005 260 0.94964 +2005 261 0.88721 +2005 262 0.61027 +2005 263 0.65727 +2005 264 0.79428 +2005 265 0.78767 +2005 266 0.76529 +2005 267 0.82780 +2005 268 0.89549 +2005 269 0.84438 +2005 270 0.92418 +2005 271 0.80487 +2005 272 0.83227 +2005 273 0.93338 +2005 274 0.97413 +2005 275 0.90547 +2005 276 0.76981 +2005 277 0.88568 +2005 278 0.79898 +2005 279 0.80287 +2005 280 0.86838 +2005 281 0.76883 +2005 282 0.88190 +2005 283 0.92252 +2005 284 0.85362 +2005 285 0.92848 +2005 286 0.92942 +2005 287 0.88588 +2005 288 0.83373 +2005 289 0.79985 +2005 290 0.80069 +2005 291 0.83456 +2005 292 0.95829 +2005 293 0.98402 +2005 294 0.74676 +2005 295 0.73394 +2005 296 0.70815 +2005 297 0.72636 +2005 298 0.78281 +2005 299 0.79533 +2005 300 0.80088 +2005 301 0.75640 +2005 302 0.77764 +2005 303 0.88322 +2005 304 0.76883 +2005 305 0.74494 +2005 306 0.79508 +2005 307 0.83182 +2005 308 0.78354 +2005 309 0.75118 +2005 310 0.91935 +2005 311 0.78604 +2005 312 0.74843 +2005 313 0.78499 +2005 314 0.79498 +2005 315 0.80592 +2005 316 0.74592 +2005 317 0.76547 +2005 318 0.67420 +2005 319 0.68436 +2005 320 0.79306 +2005 321 0.65005 +2005 322 0.71085 +2005 323 0.68853 +2005 324 0.79612 +2005 325 0.75438 +2005 326 0.63913 +2005 327 0.73641 +2005 328 0.64871 +2005 329 0.89488 +2005 330 0.73416 +2005 331 0.72790 +2005 332 0.63461 +2005 333 0.67938 +2005 334 0.73736 +2005 335 0.70805 +2005 336 0.70082 +2005 337 0.69578 +2005 338 0.90721 +2005 339 0.82967 +2005 340 0.86049 +2005 341 0.79276 +2005 342 0.75875 +2005 343 0.90306 +2005 344 0.96123 +2005 345 0.93261 +2005 346 0.92091 +2005 347 0.85734 +2005 348 0.85778 +2005 349 0.94064 +2005 350 0.98821 +2005 351 0.80079 +2005 352 0.87306 +2005 353 0.89516 +2005 354 0.90657 +2005 355 0.89715 +2005 356 0.76208 +2005 357 0.62423 +2005 358 0.71699 +2005 359 0.81967 +2005 360 0.68915 +2005 361 0.74883 +2005 362 0.77090 +2005 363 0.75044 +2005 364 0.73685 +2005 365 0.68611 +2006 1 0.83314 +2006 2 0.67201 +2006 3 0.80185 +2006 4 0.77186 +2006 5 0.69069 +2006 6 0.67342 +2006 7 0.68369 +2006 8 0.66059 +2006 9 0.75497 +2006 10 0.70181 +2006 11 0.67948 +2006 12 0.81861 +2006 13 0.74676 +2006 14 0.74871 +2006 15 0.54055 +2006 16 0.71620 +2006 17 0.69746 +2006 18 0.90684 +2006 19 0.63873 +2006 20 0.69566 +2006 21 0.71364 +2006 22 0.73919 +2006 23 0.93586 +2006 24 0.96943 +2006 25 0.79373 +2006 26 0.79589 +2006 27 0.85916 +2006 28 0.88304 +2006 29 0.91419 +2006 30 0.87882 +2006 31 0.92671 +2006 32 0.78791 +2006 33 0.80588 +2006 34 0.85676 +2006 35 0.74170 +2006 36 0.70406 +2006 37 0.71789 +2006 38 0.89066 +2006 39 0.77781 +2006 40 0.94987 +2006 41 0.88803 +2006 42 0.83338 +2006 43 0.76510 +2006 44 0.77994 +2006 45 0.73526 +2006 46 0.73384 +2006 47 0.79041 +2006 48 0.73533 +2006 49 0.79524 +2006 50 0.74567 +2006 51 0.78257 +2006 52 0.77396 +2006 53 0.67956 +2006 54 0.56848 +2006 55 0.72108 +2006 56 0.77484 +2006 57 0.73826 +2006 58 0.63781 +2006 59 0.69020 +2006 60 0.61287 +2006 61 0.66352 +2006 62 0.48523 +2006 63 0.70241 +2006 64 0.69150 +2006 65 0.84414 +2006 66 0.85780 +2006 67 0.68494 +2006 68 0.68205 +2006 69 0.80898 +2006 70 0.80666 +2006 71 0.62534 +2006 72 0.72062 +2006 73 0.70788 +2006 74 0.75200 +2006 75 0.77813 +2006 76 0.82122 +2006 77 0.85346 +2006 78 0.86698 +2006 79 0.93107 +2006 80 0.95684 +2006 81 0.92809 +2006 82 0.88693 +2006 83 0.70096 +2006 84 0.82875 +2006 85 0.97950 +2006 86 0.95442 +2006 87 0.75116 +2006 88 0.73068 +2006 89 0.87348 +2006 90 0.86611 +2006 91 0.98448 +2006 92 0.88733 +2006 93 0.88544 +2006 94 0.81776 +2006 95 0.83107 +2006 96 0.87619 +2006 97 0.90046 +2006 98 0.92887 +2006 99 0.88563 +2006 100 0.75645 +2006 101 0.74897 +2006 102 0.78132 +2006 103 0.79852 +2006 104 0.82138 +2006 105 0.78847 +2006 106 0.85263 +2006 107 0.95665 +2006 108 0.86690 +2006 109 0.82873 +2006 110 0.86219 +2006 111 0.88051 +2006 112 0.94445 +2006 113 0.93973 +2006 114 0.96943 +2006 115 0.84831 +2006 116 0.88882 +2006 117 0.92404 +2006 118 0.93711 +2006 119 0.93161 +2006 120 0.84121 +2006 121 0.95726 +2006 122 0.94389 +2006 123 0.83876 +2006 124 0.94154 +2006 125 0.83887 +2006 126 0.80630 +2006 127 0.83771 +2006 128 0.95127 +2006 129 0.92841 +2006 130 0.94068 +2006 131 0.90972 +2006 132 0.86542 +2006 133 0.90390 +2006 134 0.74926 +2006 135 0.71236 +2006 136 0.81650 +2006 137 0.83340 +2006 138 0.82757 +2006 139 0.79506 +2006 140 0.86446 +2006 141 0.84021 +2006 142 0.94441 +2006 143 0.99030 +2006 144 0.98026 +2006 145 0.94441 +2006 146 0.98611 +2006 147 0.92602 +2006 148 0.89988 +2006 149 0.83068 +2006 150 0.78511 +2006 151 0.83810 +2006 152 0.84200 +2006 153 0.86319 +2006 154 0.90398 +2006 155 0.76472 +2006 156 0.76719 +2006 157 0.88979 +2006 158 0.87476 +2006 159 0.87081 +2006 160 0.84284 +2006 161 0.84958 +2006 162 0.91924 +2006 163 0.81161 +2006 164 0.80617 +2006 165 0.86757 +2006 166 0.89397 +2006 167 0.90269 +2006 168 0.91845 +2006 169 0.93315 +2006 170 0.81722 +2006 171 0.81277 +2006 172 0.87830 +2006 173 0.81584 +2006 174 0.74959 +2006 175 0.77961 +2006 176 0.79869 +2006 177 0.80452 +2006 178 0.87659 +2006 179 0.90649 +2006 180 0.84868 +2006 181 0.83095 +2006 182 0.83157 +2006 183 0.88226 +2006 184 0.96615 +2006 185 0.95926 +2006 186 0.97060 +2006 187 0.88272 +2006 188 0.86746 +2006 189 0.83631 +2006 190 0.86199 +2006 191 0.88613 +2006 192 0.95471 +2006 193 0.93759 +2006 194 0.85656 +2006 195 0.86907 +2006 196 0.75418 +2006 197 0.81026 +2006 198 0.83391 +2006 199 0.96353 +2006 200 0.92116 +2006 201 0.71117 +2006 202 0.69369 +2006 203 0.81233 +2006 204 0.81706 +2006 205 0.79791 +2006 206 0.79504 +2006 207 0.80216 +2006 208 0.79957 +2006 209 0.82552 +2006 210 0.85682 +2006 211 0.94181 +2006 212 0.94400 +2006 213 0.97344 +2006 214 0.93012 +2006 215 0.93201 +2006 216 0.93042 +2006 217 0.99655 +2006 218 0.96790 +2006 219 0.89327 +2006 220 0.81647 +2006 221 0.77959 +2006 222 0.87889 +2006 223 0.86900 +2006 224 0.83847 +2006 225 0.80234 +2006 226 0.74503 +2006 227 0.79123 +2006 228 0.81198 +2006 229 0.81733 +2006 230 0.82290 +2006 231 0.89722 +2006 232 0.89882 +2006 233 0.82321 +2006 234 0.70396 +2006 235 0.78403 +2006 236 0.81241 +2006 237 0.86387 +2006 238 0.79455 +2006 239 0.80389 +2006 240 0.81577 +2006 241 0.82813 +2006 242 0.85898 +2006 243 0.76204 +2006 244 0.85577 +2006 245 0.84171 +2006 246 0.87365 +2006 247 0.89617 +2006 248 0.93691 +2006 249 0.81121 +2006 250 0.81886 +2006 251 0.94834 +2006 252 0.87838 +2006 253 0.69585 +2006 254 0.74439 +2006 255 0.74011 +2006 256 0.76855 +2006 257 0.81145 +2006 258 0.78993 +2006 259 0.72633 +2006 260 0.69827 +2006 261 0.72727 +2006 262 0.76217 +2006 263 0.80441 +2006 264 0.83998 +2006 265 0.75871 +2006 266 0.74894 +2006 267 0.76722 +2006 268 0.74791 +2006 269 0.77814 +2006 270 0.86792 +2006 271 0.86419 +2006 272 0.84640 +2006 273 0.87037 +2006 274 0.97445 +2006 275 0.92961 +2006 276 0.79433 +2006 277 0.54784 +2006 278 0.58146 +2006 279 0.69925 +2006 280 0.71642 +2006 281 0.81174 +2006 282 0.69292 +2006 283 0.67539 +2006 284 0.72691 +2006 285 0.70438 +2006 286 0.79116 +2006 287 0.80596 +2006 288 0.90833 +2006 289 0.56515 +2006 290 0.63263 +2006 291 0.74072 +2006 292 0.78201 +2006 293 0.83672 +2006 294 0.87039 +2006 295 0.96421 +2006 296 0.83068 +2006 297 0.72140 +2006 298 0.70832 +2006 299 0.76180 +2006 300 0.83239 +2006 301 0.92362 +2006 302 0.79891 +2006 303 0.68173 +2006 304 0.63966 +2006 305 0.80983 +2006 306 0.73607 +2006 307 0.74256 +2006 308 0.78563 +2006 309 0.82826 +2006 310 0.84669 +2006 311 0.84727 +2006 312 0.87839 +2006 313 0.69302 +2006 314 0.72295 +2006 315 0.78300 +2006 316 0.72390 +2006 317 0.77196 +2006 318 0.77190 +2006 319 0.91097 +2006 320 0.91062 +2006 321 0.95111 +2006 322 0.77901 +2006 323 0.74065 +2006 324 0.67036 +2006 325 0.77361 +2006 326 0.75190 +2006 327 0.78531 +2006 328 0.71263 +2006 329 0.71924 +2006 330 0.65434 +2006 331 0.67648 +2006 332 0.72505 +2006 333 0.92079 +2006 334 0.72165 +2006 335 0.55215 +2006 336 0.69777 +2006 337 0.79171 +2006 338 0.65155 +2006 339 0.59993 +2006 340 0.68690 +2006 341 0.76661 +2006 342 0.69976 +2006 343 0.54310 +2006 344 0.60998 +2006 345 0.72057 +2006 346 0.66063 +2006 347 0.61397 +2006 348 0.70467 +2006 349 0.68554 +2006 350 0.70607 +2006 351 0.96245 +2006 352 0.97056 +2006 353 0.83960 +2006 354 0.72911 +2006 355 0.64448 +2006 356 0.78483 +2006 357 0.74293 +2006 358 0.86422 +2006 359 0.74632 +2006 360 0.80582 +2006 361 0.74442 +2006 362 0.69038 +2006 363 0.68472 +2006 364 0.68952 +2006 365 0.85863 +2007 1 0.77127 +2007 2 0.64790 +2007 3 0.64817 +2007 4 0.73876 +2007 5 0.73636 +2007 6 0.66103 +2007 7 0.77344 +2007 8 0.92277 +2007 9 0.95306 +2007 10 0.88960 +2007 11 0.99305 +2007 12 0.97537 +2007 13 0.93581 +2007 14 0.82776 +2007 15 0.88006 +2007 16 0.77419 +2007 17 0.65381 +2007 18 0.74395 +2007 19 0.78355 +2007 20 0.74778 +2007 21 0.75991 +2007 22 0.80262 +2007 23 0.91899 +2007 24 0.84190 +2007 25 0.87617 +2007 26 0.76514 +2007 27 0.85954 +2007 28 0.84952 +2007 29 0.70442 +2007 30 0.68245 +2007 31 0.70192 +2007 32 0.67222 +2007 33 0.71263 +2007 34 0.82179 +2007 35 0.73063 +2007 36 0.66673 +2007 37 0.88616 +2007 38 0.80793 +2007 39 0.79936 +2007 40 0.81122 +2007 41 0.73017 +2007 42 0.72570 +2007 43 0.68549 +2007 44 0.73926 +2007 45 0.80734 +2007 46 0.66963 +2007 47 0.60584 +2007 48 0.71492 +2007 49 0.75784 +2007 50 0.86275 +2007 51 0.81269 +2007 52 0.75617 +2007 53 0.71702 +2007 54 0.71882 +2007 55 0.69631 +2007 56 0.79052 +2007 57 0.67028 +2007 58 0.67557 +2007 59 0.70674 +2007 60 0.72621 +2007 61 0.77968 +2007 62 0.85857 +2007 63 0.78689 +2007 64 0.74871 +2007 65 0.81077 +2007 66 0.78461 +2007 67 0.63989 +2007 68 0.72673 +2007 69 0.81244 +2007 70 0.84924 +2007 71 0.90173 +2007 72 0.82929 +2007 73 0.74684 +2007 74 0.75947 +2007 75 0.82241 +2007 76 0.84027 +2007 77 0.70745 +2007 78 0.75546 +2007 79 0.78388 +2007 80 0.73302 +2007 81 0.67890 +2007 82 0.82010 +2007 83 0.82448 +2007 84 0.87009 +2007 85 0.82437 +2007 86 0.90793 +2007 87 0.98963 +2007 88 0.99728 +2007 89 0.88009 +2007 90 0.80318 +2007 91 0.81183 +2007 92 0.80211 +2007 93 0.83982 +2007 94 0.87199 +2007 95 0.75838 +2007 96 0.79988 +2007 97 0.78946 +2007 98 0.83433 +2007 99 0.84511 +2007 100 0.84082 +2007 101 0.88857 +2007 102 0.76696 +2007 103 0.78496 +2007 104 0.79888 +2007 105 0.90686 +2007 106 0.81162 +2007 107 0.71773 +2007 108 0.67724 +2007 109 0.77524 +2007 110 0.81673 +2007 111 0.82950 +2007 112 0.92362 +2007 113 0.83900 +2007 114 0.80524 +2007 115 0.84017 +2007 116 0.87038 +2007 117 0.96198 +2007 118 0.83265 +2007 119 0.96777 +2007 120 0.96400 +2007 121 0.97464 +2007 122 0.83423 +2007 123 0.80778 +2007 124 0.86021 +2007 125 0.86875 +2007 126 0.86503 +2007 127 0.77146 +2007 128 0.81599 +2007 129 0.81594 +2007 130 0.85434 +2007 131 0.79071 +2007 132 0.85097 +2007 133 0.88650 +2007 134 0.82743 +2007 135 0.87072 +2007 136 0.83353 +2007 137 0.80686 +2007 138 0.82158 +2007 139 0.91053 +2007 140 0.93404 +2007 141 0.93942 +2007 142 0.98424 +2007 143 0.91661 +2007 144 0.85005 +2007 145 0.83992 +2007 146 0.82688 +2007 147 0.75333 +2007 148 0.79877 +2007 149 0.85708 +2007 150 0.90802 +2007 151 0.87999 +2007 152 0.97319 +2007 153 0.89952 +2007 154 0.87582 +2007 155 0.83670 +2007 156 0.87277 +2007 157 0.87767 +2007 158 0.77333 +2007 159 0.74683 +2007 160 0.93394 +2007 161 0.96495 +2007 162 0.89402 +2007 163 0.91303 +2007 164 0.85133 +2007 165 0.75663 +2007 166 0.72450 +2007 167 0.77214 +2007 168 0.81953 +2007 169 0.84654 +2007 170 0.92815 +2007 171 0.94163 +2007 172 0.87682 +2007 173 0.79900 +2007 174 0.79204 +2007 175 0.79351 +2007 176 0.68583 +2007 177 0.78617 +2007 178 0.88493 +2007 179 0.93785 +2007 180 0.99251 +2007 181 0.98712 +2007 182 0.96059 +2007 183 0.90652 +2007 184 0.93003 +2007 185 0.91511 +2007 186 0.94271 +2007 187 0.80398 +2007 188 0.78477 +2007 189 0.85966 +2007 190 0.81632 +2007 191 0.91534 +2007 192 0.73819 +2007 193 0.77028 +2007 194 0.84551 +2007 195 0.81237 +2007 196 0.86631 +2007 197 0.95954 +2007 198 0.89746 +2007 199 0.93275 +2007 200 0.98427 +2007 201 0.97368 +2007 202 0.77007 +2007 203 0.76938 +2007 204 0.81309 +2007 205 0.87820 +2007 206 0.89548 +2007 207 0.91148 +2007 208 0.88677 +2007 209 0.96669 +2007 210 0.96181 +2007 211 0.95888 +2007 212 0.92960 +2007 213 0.85734 +2007 214 0.83850 +2007 215 0.98173 +2007 216 0.92193 +2007 217 0.90112 +2007 218 0.90501 +2007 219 0.80193 +2007 220 0.81306 +2007 221 0.87352 +2007 222 0.90845 +2007 223 0.90140 +2007 224 0.76179 +2007 225 0.77461 +2007 226 0.74406 +2007 227 0.83154 +2007 228 0.91326 +2007 229 0.92546 +2007 230 0.84069 +2007 231 0.82659 +2007 232 0.77730 +2007 233 0.77595 +2007 234 0.76110 +2007 235 0.81204 +2007 236 0.77957 +2007 237 0.78287 +2007 238 0.96662 +2007 239 0.88400 +2007 240 0.78380 +2007 241 0.79588 +2007 242 0.77612 +2007 243 0.80613 +2007 244 0.83924 +2007 245 0.83143 +2007 246 0.85155 +2007 247 0.94390 +2007 248 0.71602 +2007 249 0.73779 +2007 250 0.83787 +2007 251 0.91855 +2007 252 0.79006 +2007 253 0.78897 +2007 254 0.79203 +2007 255 0.75266 +2007 256 0.84906 +2007 257 0.86523 +2007 258 0.97057 +2007 259 0.85355 +2007 260 0.91069 +2007 261 0.96598 +2007 262 0.85531 +2007 263 0.76554 +2007 264 0.95653 +2007 265 0.93227 +2007 266 0.89055 +2007 267 0.90381 +2007 268 0.65578 +2007 269 0.60489 +2007 270 0.72687 +2007 271 0.72875 +2007 272 0.81824 +2007 273 0.84299 +2007 274 0.86928 +2007 275 0.75900 +2007 276 0.68070 +2007 277 0.74296 +2007 278 0.79405 +2007 279 0.81270 +2007 280 0.87187 +2007 281 0.85844 +2007 282 0.97730 +2007 283 0.89164 +2007 284 0.83516 +2007 285 0.78258 +2007 286 0.78057 +2007 287 0.79894 +2007 288 0.78803 +2007 289 0.86353 +2007 290 0.89099 +2007 291 0.64570 +2007 292 0.73777 +2007 293 0.70177 +2007 294 0.76179 +2007 295 0.80791 +2007 296 0.75371 +2007 297 0.68749 +2007 298 0.72682 +2007 299 0.65924 +2007 300 0.58852 +2007 301 0.69689 +2007 302 0.70893 +2007 303 0.69381 +2007 304 0.82192 +2007 305 0.71180 +2007 306 0.73332 +2007 307 0.91429 +2007 308 0.82089 +2007 309 0.72746 +2007 310 0.79048 +2007 311 0.74529 +2007 312 0.62655 +2007 313 0.70394 +2007 314 0.69061 +2007 315 0.78364 +2007 316 0.70935 +2007 317 0.66838 +2007 318 0.64718 +2007 319 0.85047 +2007 320 0.66545 +2007 321 0.67229 +2007 322 0.71070 +2007 323 0.72718 +2007 324 0.72586 +2007 325 0.70445 +2007 326 0.71181 +2007 327 0.86070 +2007 328 0.67786 +2007 329 0.61590 +2007 330 0.62770 +2007 331 0.56880 +2007 332 0.62928 +2007 333 0.62605 +2007 334 0.74815 +2007 335 0.73318 +2007 336 0.81022 +2007 337 0.69492 +2007 338 0.86468 +2007 339 0.96907 +2007 340 0.71621 +2007 341 0.80543 +2007 342 0.95925 +2007 343 0.94673 +2007 344 0.87750 +2007 345 0.85529 +2007 346 0.83929 +2007 347 0.84494 +2007 348 0.77545 +2007 349 0.83616 +2007 350 0.81794 +2007 351 0.94448 +2007 352 0.95049 +2007 353 0.81113 +2007 354 0.67918 +2007 355 0.64884 +2007 356 0.72424 +2007 357 0.81552 +2007 358 0.87938 +2007 359 0.73541 +2007 360 0.64078 +2007 361 0.72481 +2007 362 0.71168 +2007 363 0.68352 +2007 364 0.66945 +2007 365 0.63028 +2008 1 0.72552 +2008 2 0.68941 +2008 3 0.73578 +2008 4 0.74259 +2008 5 0.78833 +2008 6 0.81300 +2008 7 0.88958 +2008 8 0.80500 +2008 9 0.62039 +2008 10 0.56112 +2008 11 0.69696 +2008 12 0.66300 +2008 13 0.65680 +2008 14 0.62641 +2008 15 0.74801 +2008 16 0.66079 +2008 17 0.64796 +2008 18 0.58599 +2008 19 0.69100 +2008 20 0.93945 +2008 21 0.93304 +2008 22 0.75375 +2008 23 0.66723 +2008 24 0.61936 +2008 25 0.58875 +2008 26 0.63808 +2008 27 0.62211 +2008 28 0.59342 +2008 29 0.72576 +2008 30 0.80230 +2008 31 0.78761 +2008 32 0.71619 +2008 33 0.72805 +2008 34 0.75159 +2008 35 0.64231 +2008 36 0.54706 +2008 37 0.56178 +2008 38 0.57478 +2008 39 0.64228 +2008 40 0.90983 +2008 41 0.80718 +2008 42 0.83876 +2008 43 0.72542 +2008 44 0.85958 +2008 45 0.72332 +2008 46 0.70800 +2008 47 0.67755 +2008 48 0.66327 +2008 49 0.76194 +2008 50 0.80446 +2008 51 0.68640 +2008 52 0.82974 +2008 53 0.89373 +2008 54 0.93558 +2008 55 0.79081 +2008 56 0.64047 +2008 57 0.78088 +2008 58 0.80191 +2008 59 0.81727 +2008 60 0.96286 +2008 61 0.87097 +2008 62 0.77725 +2008 63 0.82330 +2008 64 0.74815 +2008 65 0.72422 +2008 66 0.89762 +2008 67 0.74470 +2008 68 0.71105 +2008 69 0.74537 +2008 70 0.80224 +2008 71 0.73333 +2008 72 0.79236 +2008 73 0.86155 +2008 74 0.70891 +2008 75 0.61131 +2008 76 0.64329 +2008 77 0.80070 +2008 78 0.80739 +2008 79 0.77190 +2008 80 0.78559 +2008 81 0.69991 +2008 82 0.80556 +2008 83 0.85597 +2008 84 0.84656 +2008 85 0.75876 +2008 86 0.87897 +2008 87 0.85537 +2008 88 0.78297 +2008 89 0.81412 +2008 90 0.87419 +2008 91 0.93095 +2008 92 0.69873 +2008 93 0.72204 +2008 94 0.75124 +2008 95 0.75447 +2008 96 0.78754 +2008 97 0.80794 +2008 98 0.67416 +2008 99 0.64016 +2008 100 0.65860 +2008 101 0.70170 +2008 102 0.73985 +2008 103 0.75322 +2008 104 0.97834 +2008 105 0.99742 +2008 106 0.95718 +2008 107 0.95648 +2008 108 0.80976 +2008 109 0.65250 +2008 110 0.68184 +2008 111 0.77065 +2008 112 0.79736 +2008 113 0.75991 +2008 114 0.78861 +2008 115 0.82835 +2008 116 0.95101 +2008 117 0.96388 +2008 118 0.91532 +2008 119 0.99380 +2008 120 0.87893 +2008 121 0.85976 +2008 122 0.82235 +2008 123 0.68432 +2008 124 0.82196 +2008 125 0.93222 +2008 126 0.83823 +2008 127 0.79236 +2008 128 0.93006 +2008 129 0.99547 +2008 130 0.89916 +2008 131 0.84881 +2008 132 0.70756 +2008 133 0.72282 +2008 134 0.85625 +2008 135 0.79318 +2008 136 0.84143 +2008 137 0.84041 +2008 138 0.84138 +2008 139 0.86060 +2008 140 0.85750 +2008 141 0.79934 +2008 142 0.84423 +2008 143 0.86078 +2008 144 0.80647 +2008 145 0.79128 +2008 146 0.77493 +2008 147 0.80327 +2008 148 0.82869 +2008 149 0.82596 +2008 150 0.84333 +2008 151 0.88240 +2008 152 0.89714 +2008 153 0.91429 +2008 154 0.78108 +2008 155 0.70864 +2008 156 0.82806 +2008 157 0.85642 +2008 158 0.91664 +2008 159 0.75899 +2008 160 0.80428 +2008 161 0.79468 +2008 162 0.82205 +2008 163 0.87577 +2008 164 0.93263 +2008 165 0.95298 +2008 166 0.96676 +2008 167 0.94661 +2008 168 0.96486 +2008 169 0.74665 +2008 170 0.86962 +2008 171 0.88453 +2008 172 0.94492 +2008 173 0.99300 +2008 174 0.92268 +2008 175 0.86199 +2008 176 0.82489 +2008 177 0.86775 +2008 178 0.91544 +2008 179 0.90316 +2008 180 0.89348 +2008 181 0.77988 +2008 182 0.83356 +2008 183 0.94961 +2008 184 0.94301 +2008 185 0.85487 +2008 186 0.90818 +2008 187 0.69135 +2008 188 0.73650 +2008 189 0.75239 +2008 190 0.80254 +2008 191 0.88124 +2008 192 0.81801 +2008 193 0.95934 +2008 194 0.88505 +2008 195 0.90349 +2008 196 0.88280 +2008 197 0.91454 +2008 198 0.96494 +2008 199 0.98023 +2008 200 0.99322 +2008 201 0.94437 +2008 202 0.84005 +2008 203 0.96152 +2008 204 0.94287 +2008 205 0.80230 +2008 206 0.76361 +2008 207 0.91889 +2008 208 0.89041 +2008 209 0.86091 +2008 210 0.96776 +2008 211 0.98541 +2008 212 0.90060 +2008 213 0.94200 +2008 214 0.95566 +2008 215 0.90867 +2008 216 0.91869 +2008 217 0.86833 +2008 218 0.82157 +2008 219 0.84831 +2008 220 0.93918 +2008 221 0.85378 +2008 222 0.71223 +2008 223 0.75210 +2008 224 0.93789 +2008 225 0.93850 +2008 226 0.87646 +2008 227 0.92609 +2008 228 0.91745 +2008 229 0.94969 +2008 230 0.80470 +2008 231 0.75913 +2008 232 0.70931 +2008 233 0.78652 +2008 234 0.87497 +2008 235 0.85292 +2008 236 0.99329 +2008 237 0.94458 +2008 238 0.88045 +2008 239 0.85047 +2008 240 0.78505 +2008 241 0.78300 +2008 242 0.73148 +2008 243 0.75273 +2008 244 0.84148 +2008 245 0.83598 +2008 246 0.88230 +2008 247 0.90494 +2008 248 0.83922 +2008 249 0.77492 +2008 250 0.82454 +2008 251 0.95084 +2008 252 0.97580 +2008 253 0.93266 +2008 254 0.91455 +2008 255 0.89840 +2008 256 0.80822 +2008 257 0.76466 +2008 258 0.80020 +2008 259 0.82416 +2008 260 0.84767 +2008 261 0.86308 +2008 262 0.77568 +2008 263 0.75609 +2008 264 0.79630 +2008 265 0.73584 +2008 266 0.85986 +2008 267 0.79846 +2008 268 0.79114 +2008 269 0.73663 +2008 270 0.83046 +2008 271 0.66561 +2008 272 0.76250 +2008 273 0.74163 +2008 274 0.70213 +2008 275 0.64951 +2008 276 0.72062 +2008 277 0.83384 +2008 278 0.92154 +2008 279 0.97286 +2008 280 0.96059 +2008 281 0.78204 +2008 282 0.74036 +2008 283 0.66202 +2008 284 0.75497 +2008 285 0.72994 +2008 286 0.77053 +2008 287 0.90519 +2008 288 0.86401 +2008 289 0.92556 +2008 290 0.86976 +2008 291 0.72140 +2008 292 0.79500 +2008 293 0.75968 +2008 294 0.77893 +2008 295 0.74465 +2008 296 0.87466 +2008 297 0.89399 +2008 298 0.90235 +2008 299 0.69077 +2008 300 0.72841 +2008 301 0.84541 +2008 302 0.81996 +2008 303 0.62741 +2008 304 0.69332 +2008 305 0.81494 +2008 306 0.80696 +2008 307 0.82037 +2008 308 0.82118 +2008 309 0.86472 +2008 310 0.70310 +2008 311 0.70901 +2008 312 0.69215 +2008 313 0.71709 +2008 314 0.79989 +2008 315 0.75984 +2008 316 0.76131 +2008 317 0.78953 +2008 318 0.79233 +2008 319 0.78039 +2008 320 0.78757 +2008 321 0.86111 +2008 322 0.70166 +2008 323 0.65597 +2008 324 0.65127 +2008 325 0.73703 +2008 326 0.74662 +2008 327 0.81355 +2008 328 0.92772 +2008 329 0.84195 +2008 330 0.73487 +2008 331 0.72245 +2008 332 0.68170 +2008 333 0.68357 +2008 334 0.74591 +2008 335 0.89040 +2008 336 0.77068 +2008 337 0.71786 +2008 338 0.76372 +2008 339 0.71338 +2008 340 0.61694 +2008 341 0.76793 +2008 342 0.75675 +2008 343 0.87851 +2008 344 0.79333 +2008 345 0.71246 +2008 346 0.72227 +2008 347 0.68906 +2008 348 0.66060 +2008 349 0.86406 +2008 350 0.83339 +2008 351 0.74637 +2008 352 0.65324 +2008 353 0.69426 +2008 354 0.85891 +2008 355 0.74682 +2008 356 0.69959 +2008 357 0.65290 +2008 358 0.87658 +2008 359 0.69786 +2008 360 0.83932 +2008 361 0.81899 +2008 362 0.77322 +2008 363 0.93864 +2008 364 0.89678 +2008 365 0.75202 +2008 366 0.69777 +2009 1 0.81264 +2009 2 0.87108 +2009 3 0.64137 +2009 4 0.68954 +2009 5 0.70187 +2009 6 0.65284 +2009 7 0.74947 +2009 8 0.81007 +2009 9 0.79359 +2009 10 0.70866 +2009 11 0.70613 +2009 12 0.65467 +2009 13 0.64742 +2009 14 0.61131 +2009 15 0.66126 +2009 16 0.66629 +2009 17 0.76769 +2009 18 0.66110 +2009 19 0.63388 +2009 20 0.60504 +2009 21 0.68621 +2009 22 0.65463 +2009 23 0.65399 +2009 24 0.71047 +2009 25 0.72794 +2009 26 0.67222 +2009 27 0.50480 +2009 28 0.60661 +2009 29 0.60462 +2009 30 0.70069 +2009 31 0.67076 +2009 32 0.67642 +2009 33 0.71511 +2009 34 0.66666 +2009 35 0.72620 +2009 36 0.76583 +2009 37 0.64559 +2009 38 0.64369 +2009 39 0.64020 +2009 40 0.92426 +2009 41 0.87141 +2009 42 0.93596 +2009 43 0.73220 +2009 44 0.59399 +2009 45 0.64901 +2009 46 0.69989 +2009 47 0.76746 +2009 48 0.81451 +2009 49 0.83603 +2009 50 0.99055 +2009 51 0.88489 +2009 52 0.79384 +2009 53 0.74135 +2009 54 0.79622 +2009 55 0.76090 +2009 56 0.78455 +2009 57 0.79772 +2009 58 0.98842 +2009 59 0.85654 +2009 60 0.78757 +2009 61 0.75350 +2009 62 0.70331 +2009 63 0.83134 +2009 64 0.97939 +2009 65 0.91633 +2009 66 0.79311 +2009 67 0.71104 +2009 68 0.71473 +2009 69 0.73330 +2009 70 0.72498 +2009 71 0.79418 +2009 72 0.70985 +2009 73 0.72710 +2009 74 0.74968 +2009 75 0.92721 +2009 76 0.96074 +2009 77 0.84811 +2009 78 0.73525 +2009 79 0.75511 +2009 80 0.73563 +2009 81 0.65035 +2009 82 0.66430 +2009 83 0.70553 +2009 84 0.79528 +2009 85 0.78923 +2009 86 0.81401 +2009 87 0.75999 +2009 88 0.77278 +2009 89 0.80503 +2009 90 0.62881 +2009 91 0.68989 +2009 92 0.73521 +2009 93 0.72469 +2009 94 0.76877 +2009 95 0.77667 +2009 96 0.82667 +2009 97 0.77254 +2009 98 0.78479 +2009 99 0.71024 +2009 100 0.74403 +2009 101 0.78148 +2009 102 0.80777 +2009 103 0.77464 +2009 104 0.84975 +2009 105 0.76297 +2009 106 0.75235 +2009 107 0.76588 +2009 108 0.83920 +2009 109 0.98034 +2009 110 0.76961 +2009 111 0.76142 +2009 112 0.75817 +2009 113 0.79594 +2009 114 0.92158 +2009 115 0.95872 +2009 116 0.95510 +2009 117 0.94156 +2009 118 0.97052 +2009 119 0.85602 +2009 120 0.76688 +2009 121 0.83204 +2009 122 0.75410 +2009 123 0.71051 +2009 124 0.81291 +2009 125 0.87892 +2009 126 0.80276 +2009 127 0.94071 +2009 128 0.76610 +2009 129 0.88654 +2009 130 0.95580 +2009 131 0.93978 +2009 132 0.84337 +2009 133 0.83974 +2009 134 0.91545 +2009 135 0.93533 +2009 136 0.93294 +2009 137 0.93902 +2009 138 0.84878 +2009 139 0.78075 +2009 140 0.71279 +2009 141 0.82031 +2009 142 0.76512 +2009 143 0.93085 +2009 144 0.78760 +2009 145 0.76456 +2009 146 0.80370 +2009 147 0.83085 +2009 148 0.87000 +2009 149 0.94561 +2009 150 0.72563 +2009 151 0.67963 +2009 152 0.80893 +2009 153 0.82260 +2009 154 0.85024 +2009 155 0.86467 +2009 156 0.83100 +2009 157 0.72581 +2009 158 0.79049 +2009 159 0.87812 +2009 160 0.99197 +2009 161 0.95388 +2009 162 0.99212 +2009 163 0.97350 +2009 164 0.88473 +2009 165 0.80360 +2009 166 0.79980 +2009 167 0.68231 +2009 168 0.74725 +2009 169 0.78258 +2009 170 0.74744 +2009 171 0.79406 +2009 172 0.80668 +2009 173 0.81731 +2009 174 0.84037 +2009 175 0.89107 +2009 176 0.97834 +2009 177 0.98423 +2009 178 0.98088 +2009 179 0.93809 +2009 180 0.91179 +2009 181 0.84919 +2009 182 0.80589 +2009 183 0.92169 +2009 184 0.96292 +2009 185 0.96469 +2009 186 0.93940 +2009 187 0.91067 +2009 188 0.88855 +2009 189 0.78679 +2009 190 0.85571 +2009 191 0.88527 +2009 192 0.86373 +2009 193 0.76595 +2009 194 0.88367 +2009 195 0.92488 +2009 196 0.96405 +2009 197 0.97474 +2009 198 0.93534 +2009 199 0.78856 +2009 200 0.80814 +2009 201 0.89085 +2009 202 0.83983 +2009 203 0.90775 +2009 204 0.91146 +2009 205 0.72359 +2009 206 0.76760 +2009 207 0.80148 +2009 208 0.84036 +2009 209 0.96912 +2009 210 0.86576 +2009 211 0.85296 +2009 212 0.94640 +2009 213 0.85009 +2009 214 0.78726 +2009 215 0.81209 +2009 216 0.81064 +2009 217 0.79726 +2009 218 0.85646 +2009 219 0.83688 +2009 220 0.81473 +2009 221 0.79825 +2009 222 0.81505 +2009 223 0.88907 +2009 224 0.91960 +2009 225 0.98181 +2009 226 0.99631 +2009 227 0.99413 +2009 228 0.85668 +2009 229 0.82582 +2009 230 0.93842 +2009 231 0.84090 +2009 232 0.75812 +2009 233 0.82247 +2009 234 0.92978 +2009 235 0.88302 +2009 236 0.89025 +2009 237 0.87418 +2009 238 0.86026 +2009 239 0.81774 +2009 240 0.83830 +2009 241 0.96606 +2009 242 0.88551 +2009 243 0.88386 +2009 244 0.76460 +2009 245 0.68371 +2009 246 0.68462 +2009 247 0.64424 +2009 248 0.62927 +2009 249 0.79607 +2009 250 0.81159 +2009 251 0.81248 +2009 252 0.84739 +2009 253 0.88019 +2009 254 0.92579 +2009 255 0.95007 +2009 256 0.87707 +2009 257 0.83341 +2009 258 0.80673 +2009 259 0.83105 +2009 260 0.85560 +2009 261 0.87457 +2009 262 0.73197 +2009 263 0.78571 +2009 264 0.83634 +2009 265 0.93529 +2009 266 0.98722 +2009 267 0.94394 +2009 268 0.92088 +2009 269 0.78509 +2009 270 0.93294 +2009 271 0.89160 +2009 272 0.92781 +2009 273 0.77619 +2009 274 0.78089 +2009 275 0.80924 +2009 276 0.98249 +2009 277 0.90465 +2009 278 0.68162 +2009 279 0.65019 +2009 280 0.75991 +2009 281 0.92687 +2009 282 0.75424 +2009 283 0.68491 +2009 284 0.77635 +2009 285 0.77876 +2009 286 0.87422 +2009 287 0.99682 +2009 288 0.85640 +2009 289 0.87075 +2009 290 0.85234 +2009 291 0.69998 +2009 292 0.78810 +2009 293 0.63343 +2009 294 0.81703 +2009 295 0.82855 +2009 296 0.71140 +2009 297 0.72999 +2009 298 0.78292 +2009 299 0.88351 +2009 300 0.74171 +2009 301 0.63748 +2009 302 0.62102 +2009 303 0.65406 +2009 304 0.71556 +2009 305 0.76383 +2009 306 0.79622 +2009 307 0.77939 +2009 308 0.94270 +2009 309 0.66417 +2009 310 0.70022 +2009 311 0.72804 +2009 312 0.77965 +2009 313 0.63306 +2009 314 0.81233 +2009 315 0.54384 +2009 316 0.69278 +2009 317 0.70241 +2009 318 0.78702 +2009 319 0.69618 +2009 320 0.70290 +2009 321 0.94009 +2009 322 0.71087 +2009 323 0.77263 +2009 324 0.84605 +2009 325 0.85553 +2009 326 0.80447 +2009 327 0.71146 +2009 328 0.65971 +2009 329 0.66929 +2009 330 0.65193 +2009 331 0.77493 +2009 332 0.74728 +2009 333 0.88529 +2009 334 0.93144 +2009 335 0.99116 +2009 336 0.80697 +2009 337 0.79262 +2009 338 0.83927 +2009 339 0.76967 +2009 340 0.72938 +2009 341 0.73793 +2009 342 0.70891 +2009 343 0.74939 +2009 344 0.77737 +2009 345 0.86487 +2009 346 0.66968 +2009 347 0.79574 +2009 348 0.62790 +2009 349 0.64755 +2009 350 0.65286 +2009 351 0.73383 +2009 352 0.71238 +2009 353 0.73347 +2009 354 0.64366 +2009 355 0.79130 +2009 356 0.80698 +2009 357 0.78262 +2009 358 0.63052 +2009 359 0.62522 +2009 360 0.67375 +2009 361 0.82145 +2009 362 0.87933 +2009 363 0.68419 +2009 364 0.57774 +2009 365 0.65044 +2010 1 0.66772 +2010 2 0.71172 +2010 3 0.74054 +2010 4 0.60736 +2010 5 0.70561 +2010 6 0.72992 +2010 7 0.65910 +2010 8 0.55228 +2010 9 0.61981 +2010 10 0.71346 +2010 11 0.67321 +2010 12 0.62638 +2010 13 0.65947 +2010 14 0.71180 +2010 15 0.80003 +2010 16 0.81379 +2010 17 0.81727 +2010 18 0.83672 +2010 19 0.85950 +2010 20 0.94864 +2010 21 0.89731 +2010 22 0.86984 +2010 23 0.78733 +2010 24 0.82550 +2010 25 0.92593 +2010 26 0.89874 +2010 27 0.89248 +2010 28 0.77262 +2010 29 0.85386 +2010 30 0.95014 +2010 31 0.90143 +2010 32 0.84949 +2010 33 0.81308 +2010 34 0.79407 +2010 35 0.84754 +2010 36 0.83335 +2010 37 0.75306 +2010 38 0.81095 +2010 39 0.77887 +2010 40 0.75093 +2010 41 0.83531 +2010 42 0.79344 +2010 43 0.82281 +2010 44 0.82741 +2010 45 0.85293 +2010 46 0.86227 +2010 47 0.95499 +2010 48 0.92339 +2010 49 0.76924 +2010 50 0.76196 +2010 51 0.79283 +2010 52 0.80359 +2010 53 0.82503 +2010 54 0.85855 +2010 55 0.91699 +2010 56 0.70263 +2010 57 0.73048 +2010 58 0.76822 +2010 59 0.75480 +2010 60 0.80833 +2010 61 0.73764 +2010 62 0.67961 +2010 63 0.67867 +2010 64 0.64864 +2010 65 0.63825 +2010 66 0.67838 +2010 67 0.70584 +2010 68 0.77090 +2010 69 0.75388 +2010 70 0.68664 +2010 71 0.60171 +2010 72 0.69745 +2010 73 0.70583 +2010 74 0.72269 +2010 75 0.66889 +2010 76 0.56146 +2010 77 0.74952 +2010 78 0.77889 +2010 79 0.71470 +2010 80 0.80149 +2010 81 0.87540 +2010 82 0.93742 +2010 83 0.79199 +2010 84 0.77795 +2010 85 0.78829 +2010 86 0.74170 +2010 87 0.61182 +2010 88 0.71323 +2010 89 0.74368 +2010 90 0.74833 +2010 91 0.72384 +2010 92 0.73157 +2010 93 0.82779 +2010 94 0.68592 +2010 95 0.86457 +2010 96 0.74479 +2010 97 0.71464 +2010 98 0.72797 +2010 99 0.76195 +2010 100 0.78991 +2010 101 0.78892 +2010 102 0.75818 +2010 103 0.81084 +2010 104 0.76397 +2010 105 0.68686 +2010 106 0.74368 +2010 107 0.80306 +2010 108 0.80293 +2010 109 0.73406 +2010 110 0.81106 +2010 111 0.80061 +2010 112 0.78038 +2010 113 0.77224 +2010 114 0.86443 +2010 115 0.89112 +2010 116 0.96111 +2010 117 0.83453 +2010 118 0.83320 +2010 119 0.86141 +2010 120 0.84792 +2010 121 0.67959 +2010 122 0.77616 +2010 123 0.73697 +2010 124 0.69774 +2010 125 0.81478 +2010 126 0.78913 +2010 127 0.84662 +2010 128 0.79076 +2010 129 0.84774 +2010 130 0.85454 +2010 131 0.93983 +2010 132 0.94615 +2010 133 0.96511 +2010 134 0.97699 +2010 135 0.96122 +2010 136 0.92386 +2010 137 0.92515 +2010 138 0.90621 +2010 139 0.91543 +2010 140 0.94806 +2010 141 0.86009 +2010 142 0.94281 +2010 143 0.99704 +2010 144 0.93234 +2010 145 0.93845 +2010 146 0.91821 +2010 147 0.88513 +2010 148 0.92236 +2010 149 0.82053 +2010 150 0.77728 +2010 151 0.98361 +2010 152 0.95297 +2010 153 0.85224 +2010 154 0.79675 +2010 155 0.87154 +2010 156 0.98102 +2010 157 0.93361 +2010 158 0.84095 +2010 159 0.75840 +2010 160 0.79924 +2010 161 0.93156 +2010 162 0.88420 +2010 163 0.89518 +2010 164 0.81718 +2010 165 0.68636 +2010 166 0.83519 +2010 167 0.91209 +2010 168 0.91732 +2010 169 0.87184 +2010 170 0.97682 +2010 171 0.87509 +2010 172 0.82511 +2010 173 0.88891 +2010 174 0.95987 +2010 175 0.89556 +2010 176 0.96929 +2010 177 0.90045 +2010 178 0.88986 +2010 179 0.94841 +2010 180 0.88236 +2010 181 0.83680 +2010 182 0.84370 +2010 183 0.86362 +2010 184 0.85672 +2010 185 0.90829 +2010 186 0.85148 +2010 187 0.76535 +2010 188 0.72619 +2010 189 0.72055 +2010 190 0.74527 +2010 191 0.81612 +2010 192 0.81450 +2010 193 0.83530 +2010 194 0.81470 +2010 195 0.83815 +2010 196 0.92164 +2010 197 0.95363 +2010 198 0.86953 +2010 199 0.89612 +2010 200 0.84034 +2010 201 0.88722 +2010 202 0.97569 +2010 203 0.95102 +2010 204 0.84024 +2010 205 0.79132 +2010 206 0.83676 +2010 207 0.89142 +2010 208 0.83721 +2010 209 0.86189 +2010 210 0.83683 +2010 211 0.88443 +2010 212 0.89702 +2010 213 0.96827 +2010 214 0.97346 +2010 215 0.99448 +2010 216 0.83959 +2010 217 0.87474 +2010 218 0.96679 +2010 219 0.87227 +2010 220 0.78715 +2010 221 0.73726 +2010 222 0.78379 +2010 223 0.78239 +2010 224 0.85882 +2010 225 0.99827 +2010 226 0.98317 +2010 227 0.93261 +2010 228 0.89443 +2010 229 0.90699 +2010 230 0.87732 +2010 231 0.89977 +2010 232 0.96403 +2010 233 0.84276 +2010 234 0.78183 +2010 235 0.75807 +2010 236 0.88815 +2010 237 0.92816 +2010 238 0.92560 +2010 239 0.95257 +2010 240 0.94771 +2010 241 0.83778 +2010 242 0.87380 +2010 243 0.79050 +2010 244 0.90513 +2010 245 0.85502 +2010 246 0.65685 +2010 247 0.76662 +2010 248 0.89905 +2010 249 0.93412 +2010 250 0.83943 +2010 251 0.96774 +2010 252 0.85965 +2010 253 0.91128 +2010 254 0.96954 +2010 255 0.89466 +2010 256 0.78184 +2010 257 0.77471 +2010 258 0.95270 +2010 259 0.91190 +2010 260 0.83908 +2010 261 0.84505 +2010 262 0.77858 +2010 263 0.79965 +2010 264 0.73080 +2010 265 0.75016 +2010 266 0.77055 +2010 267 0.89369 +2010 268 0.85270 +2010 269 0.83674 +2010 270 0.80555 +2010 271 0.87424 +2010 272 0.93987 +2010 273 0.83374 +2010 274 0.69507 +2010 275 0.76194 +2010 276 0.71090 +2010 277 0.75304 +2010 278 0.77364 +2010 279 0.76465 +2010 280 0.79692 +2010 281 0.80438 +2010 282 0.70682 +2010 283 0.70171 +2010 284 0.60451 +2010 285 0.88273 +2010 286 0.95089 +2010 287 0.85569 +2010 288 0.83195 +2010 289 0.90288 +2010 290 0.73735 +2010 291 0.69549 +2010 292 0.74173 +2010 293 0.72013 +2010 294 0.59860 +2010 295 0.69987 +2010 296 0.80343 +2010 297 0.72589 +2010 298 0.77690 +2010 299 0.84907 +2010 300 0.86138 +2010 301 0.77025 +2010 302 0.66888 +2010 303 0.60772 +2010 304 0.61981 +2010 305 0.68409 +2010 306 0.78850 +2010 307 0.75701 +2010 308 0.87269 +2010 309 0.61187 +2010 310 0.61736 +2010 311 0.69406 +2010 312 0.66493 +2010 313 0.72316 +2010 314 0.73262 +2010 315 0.73925 +2010 316 0.71893 +2010 317 0.74633 +2010 318 0.80356 +2010 319 0.78869 +2010 320 0.68745 +2010 321 0.76460 +2010 322 0.77068 +2010 323 0.93172 +2010 324 0.75623 +2010 325 0.68620 +2010 326 0.71137 +2010 327 0.69591 +2010 328 0.62824 +2010 329 0.65251 +2010 330 0.60493 +2010 331 0.73310 +2010 332 0.81657 +2010 333 0.80724 +2010 334 0.78833 +2010 335 0.75681 +2010 336 0.69887 +2010 337 0.68807 +2010 338 0.66560 +2010 339 0.65040 +2010 340 0.62945 +2010 341 0.75327 +2010 342 0.78667 +2010 343 0.64695 +2010 344 0.76970 +2010 345 0.64445 +2010 346 0.81203 +2010 347 0.92017 +2010 348 0.84854 +2010 349 0.88808 +2010 350 0.96070 +2010 351 0.98121 +2010 352 0.98431 +2010 353 0.95083 +2010 354 0.89834 +2010 355 0.87471 +2010 356 0.66650 +2010 357 0.77110 +2010 358 0.64974 +2010 359 0.69900 +2010 360 0.81783 +2010 361 0.93114 +2010 362 0.74019 +2010 363 0.81202 +2010 364 0.77757 +2010 365 0.68087 +2011 1 0.73838 +2011 2 0.79615 +2011 3 0.84966 +2011 4 0.78189 +2011 5 0.88494 +2011 6 0.80991 +2011 7 0.66842 +2011 8 0.57346 +2011 9 0.63576 +2011 10 0.60647 +2011 11 0.65584 +2011 12 0.62605 +2011 13 0.78817 +2011 14 0.76122 +2011 15 0.65453 +2011 16 0.70031 +2011 17 0.98850 +2011 18 0.75405 +2011 19 0.65509 +2011 20 0.72830 +2011 21 0.87486 +2011 22 0.99487 +2011 23 0.90120 +2011 24 0.87921 +2011 25 0.82276 +2011 26 0.76594 +2011 27 0.85165 +2011 28 0.76832 +2011 29 0.71755 +2011 30 0.79441 +2011 31 0.68978 +2011 32 0.76705 +2011 33 0.84790 +2011 34 0.86206 +2011 35 0.83702 +2011 36 0.80170 +2011 37 0.82272 +2011 38 0.81032 +2011 39 0.68500 +2011 40 0.82644 +2011 41 0.88211 +2011 42 0.81676 +2011 43 0.82985 +2011 44 0.78028 +2011 45 0.70812 +2011 46 0.67410 +2011 47 0.66287 +2011 48 0.71183 +2011 49 0.75071 +2011 50 0.75031 +2011 51 0.81536 +2011 52 0.86330 +2011 53 0.77477 +2011 54 0.82337 +2011 55 0.73037 +2011 56 0.78732 +2011 57 0.73730 +2011 58 0.80023 +2011 59 0.83279 +2011 60 0.86197 +2011 61 0.82642 +2011 62 0.95871 +2011 63 0.99551 +2011 64 0.82063 +2011 65 0.64274 +2011 66 0.66808 +2011 67 0.67387 +2011 68 0.73625 +2011 69 0.77012 +2011 70 0.82148 +2011 71 0.82008 +2011 72 0.82344 +2011 73 0.82182 +2011 74 0.84074 +2011 75 0.80612 +2011 76 0.88207 +2011 77 0.74693 +2011 78 0.77904 +2011 79 0.94816 +2011 80 0.90072 +2011 81 0.76376 +2011 82 0.73024 +2011 83 0.80605 +2011 84 0.93918 +2011 85 0.97064 +2011 86 0.76005 +2011 87 0.68550 +2011 88 0.68556 +2011 89 0.74317 +2011 90 0.81335 +2011 91 0.91756 +2011 92 0.93737 +2011 93 0.95919 +2011 94 0.88526 +2011 95 0.76777 +2011 96 0.78719 +2011 97 0.69364 +2011 98 0.79613 +2011 99 0.87261 +2011 100 0.85193 +2011 101 0.84829 +2011 102 0.83372 +2011 103 0.83264 +2011 104 0.84847 +2011 105 0.96148 +2011 106 0.88001 +2011 107 0.75977 +2011 108 0.70198 +2011 109 0.79648 +2011 110 0.87692 +2011 111 0.93818 +2011 112 0.89847 +2011 113 0.90914 +2011 114 0.97888 +2011 115 0.93865 +2011 116 0.83714 +2011 117 0.74471 +2011 118 0.73528 +2011 119 0.74242 +2011 120 0.80818 +2011 121 0.96386 +2011 122 0.95269 +2011 123 0.92323 +2011 124 0.89500 +2011 125 0.99260 +2011 126 0.97232 +2011 127 0.87913 +2011 128 0.89210 +2011 129 0.91827 +2011 130 0.97348 +2011 131 0.92857 +2011 132 0.91918 +2011 133 0.89343 +2011 134 0.93028 +2011 135 0.89140 +2011 136 0.83604 +2011 137 0.76475 +2011 138 0.78720 +2011 139 0.87430 +2011 140 0.86587 +2011 141 0.89954 +2011 142 0.90101 +2011 143 0.89923 +2011 144 0.91905 +2011 145 0.98557 +2011 146 0.95019 +2011 147 0.83824 +2011 148 0.78499 +2011 149 0.81338 +2011 150 0.82549 +2011 151 0.79567 +2011 152 0.78283 +2011 153 0.79464 +2011 154 0.93565 +2011 155 0.98331 +2011 156 0.96940 +2011 157 0.95864 +2011 158 0.92574 +2011 159 0.92373 +2011 160 0.99545 +2011 161 0.96187 +2011 162 0.90527 +2011 163 0.82178 +2011 164 0.87873 +2011 165 0.80235 +2011 166 0.81494 +2011 167 0.87928 +2011 168 0.98510 +2011 169 0.96431 +2011 170 0.93952 +2011 171 0.85903 +2011 172 0.87600 +2011 173 0.94073 +2011 174 0.96939 +2011 175 0.86242 +2011 176 0.78860 +2011 177 0.82739 +2011 178 0.92944 +2011 179 0.83868 +2011 180 0.75024 +2011 181 0.83050 +2011 182 0.80851 +2011 183 0.85431 +2011 184 0.83666 +2011 185 0.91211 +2011 186 0.92680 +2011 187 0.88964 +2011 188 0.85731 +2011 189 0.88480 +2011 190 0.93402 +2011 191 0.93635 +2011 192 0.87964 +2011 193 0.93134 +2011 194 0.94649 +2011 195 0.84234 +2011 196 0.79289 +2011 197 0.79393 +2011 198 0.86173 +2011 199 0.89048 +2011 200 0.86526 +2011 201 0.87569 +2011 202 0.87957 +2011 203 0.89823 +2011 204 0.95553 +2011 205 0.80415 +2011 206 0.67431 +2011 207 0.80124 +2011 208 0.85760 +2011 209 0.79553 +2011 210 0.84049 +2011 211 0.76168 +2011 212 0.84825 +2011 213 0.82733 +2011 214 0.80345 +2011 215 0.77636 +2011 216 0.81053 +2011 217 0.87437 +2011 218 0.91730 +2011 219 0.77253 +2011 220 0.78944 +2011 221 0.83043 +2011 222 0.95221 +2011 223 0.96770 +2011 224 0.87282 +2011 225 0.78456 +2011 226 0.69351 +2011 227 0.68084 +2011 228 0.68733 +2011 229 0.69571 +2011 230 0.72228 +2011 231 0.73497 +2011 232 0.75754 +2011 233 0.79424 +2011 234 0.79091 +2011 235 0.86098 +2011 236 0.80825 +2011 237 0.82875 +2011 238 0.88417 +2011 239 0.85486 +2011 240 0.88929 +2011 241 0.95231 +2011 242 0.85265 +2011 243 0.74355 +2011 244 0.72695 +2011 245 0.72433 +2011 246 0.71860 +2011 247 0.79588 +2011 248 0.80243 +2011 249 0.77482 +2011 250 0.81140 +2011 251 0.76970 +2011 252 0.78457 +2011 253 0.96278 +2011 254 0.89441 +2011 255 0.79978 +2011 256 0.76890 +2011 257 0.83531 +2011 258 0.78335 +2011 259 0.80079 +2011 260 0.90726 +2011 261 0.88625 +2011 262 0.67537 +2011 263 0.72443 +2011 264 0.77316 +2011 265 0.76764 +2011 266 0.77535 +2011 267 0.92677 +2011 268 0.70569 +2011 269 0.73930 +2011 270 0.72095 +2011 271 0.72281 +2011 272 0.72593 +2011 273 0.83852 +2011 274 0.88009 +2011 275 0.99816 +2011 276 0.90647 +2011 277 0.94771 +2011 278 0.78224 +2011 279 0.75905 +2011 280 0.76029 +2011 281 0.73346 +2011 282 0.89521 +2011 283 0.93784 +2011 284 0.98931 +2011 285 0.92394 +2011 286 0.83212 +2011 287 0.88155 +2011 288 0.77037 +2011 289 0.86857 +2011 290 0.84185 +2011 291 0.88435 +2011 292 0.73952 +2011 293 0.75100 +2011 294 0.85207 +2011 295 0.88798 +2011 296 0.81967 +2011 297 0.75709 +2011 298 0.82407 +2011 299 0.85137 +2011 300 0.78496 +2011 301 0.90680 +2011 302 0.85022 +2011 303 0.83702 +2011 304 0.93676 +2011 305 0.88875 +2011 306 0.76660 +2011 307 0.71722 +2011 308 0.65715 +2011 309 0.78154 +2011 310 0.75396 +2011 311 0.81338 +2011 312 0.79327 +2011 313 0.70152 +2011 314 0.68171 +2011 315 0.76079 +2011 316 0.74473 +2011 317 0.84667 +2011 318 0.79711 +2011 319 0.72644 +2011 320 0.74215 +2011 321 0.63254 +2011 322 0.61662 +2011 323 0.73082 +2011 324 0.81017 +2011 325 0.69698 +2011 326 0.77329 +2011 327 0.77978 +2011 328 0.72307 +2011 329 0.70301 +2011 330 0.73066 +2011 331 0.76485 +2011 332 0.73543 +2011 333 0.63040 +2011 334 0.70440 +2011 335 0.88840 +2011 336 0.93052 +2011 337 0.96865 +2011 338 0.91688 +2011 339 0.90559 +2011 340 0.83097 +2011 341 0.73766 +2011 342 0.81366 +2011 343 0.79275 +2011 344 0.73287 +2011 345 0.93790 +2011 346 0.93168 +2011 347 0.91548 +2011 348 0.99519 +2011 349 0.83994 +2011 350 0.91712 +2011 351 0.84908 +2011 352 0.68422 +2011 353 0.67141 +2011 354 0.74195 +2011 355 0.86096 +2011 356 0.72277 +2011 357 0.71884 +2011 358 0.80359 +2011 359 0.82225 +2011 360 0.79898 +2011 361 0.79243 +2011 362 0.87309 +2011 363 0.99346 +2011 364 0.99900 +2011 365 0.96203 +2012 1 0.81034 +2012 2 0.81329 +2012 3 0.85982 +2012 4 0.79180 +2012 5 0.81104 +2012 6 0.95839 +2012 7 0.94706 +2012 8 0.92313 +2012 9 0.93478 +2012 10 0.78635 +2012 11 0.82247 +2012 12 0.82214 +2012 13 0.72987 +2012 14 0.78646 +2012 15 0.68015 +2012 16 0.70770 +2012 17 0.74640 +2012 18 0.76901 +2012 19 0.77913 +2012 20 0.73549 +2012 21 0.82473 +2012 22 0.56272 +2012 23 0.62978 +2012 24 0.71833 +2012 25 0.74953 +2012 26 0.81696 +2012 27 0.64902 +2012 28 0.72088 +2012 29 0.79870 +2012 30 0.77839 +2012 31 0.74941 +2012 32 0.73181 +2012 33 0.73049 +2012 34 0.63773 +2012 35 0.63131 +2012 36 0.63979 +2012 37 0.65759 +2012 38 0.71800 +2012 39 0.73248 +2012 40 0.71617 +2012 41 0.80056 +2012 42 0.77447 +2012 43 0.95148 +2012 44 0.90399 +2012 45 0.96352 +2012 46 0.87528 +2012 47 0.93189 +2012 48 0.82179 +2012 49 0.75305 +2012 50 0.84126 +2012 51 0.91508 +2012 52 0.96409 +2012 53 0.98812 +2012 54 0.79445 +2012 55 0.68713 +2012 56 0.70333 +2012 57 0.64571 +2012 58 0.84335 +2012 59 0.81598 +2012 60 0.72797 +2012 61 0.76729 +2012 62 0.78777 +2012 63 0.65612 +2012 64 0.72628 +2012 65 0.76460 +2012 66 0.78248 +2012 67 0.70188 +2012 68 0.69433 +2012 69 0.79566 +2012 70 0.94581 +2012 71 0.94166 +2012 72 0.73899 +2012 73 0.73628 +2012 74 0.83935 +2012 75 0.78709 +2012 76 0.79691 +2012 77 0.85885 +2012 78 0.95913 +2012 79 0.80455 +2012 80 0.92855 +2012 81 0.88724 +2012 82 0.88224 +2012 83 0.90584 +2012 84 0.84760 +2012 85 0.70449 +2012 86 0.77298 +2012 87 0.77824 +2012 88 0.72071 +2012 89 0.80465 +2012 90 0.81604 +2012 91 0.81471 +2012 92 0.84872 +2012 93 0.76812 +2012 94 0.73410 +2012 95 0.71617 +2012 96 0.73748 +2012 97 0.75256 +2012 98 0.77752 +2012 99 0.81655 +2012 100 0.82697 +2012 101 0.87330 +2012 102 0.94739 +2012 103 0.81295 +2012 104 0.75704 +2012 105 0.80527 +2012 106 0.84262 +2012 107 0.86169 +2012 108 0.69889 +2012 109 0.72401 +2012 110 0.78345 +2012 111 0.79326 +2012 112 0.79978 +2012 113 0.85563 +2012 114 0.79750 +2012 115 0.85250 +2012 116 0.90019 +2012 117 0.96400 +2012 118 0.86669 +2012 119 0.85080 +2012 120 0.74831 +2012 121 0.72716 +2012 122 0.63865 +2012 123 0.74236 +2012 124 0.80104 +2012 125 0.79958 +2012 126 0.81910 +2012 127 0.85653 +2012 128 0.87647 +2012 129 0.98582 +2012 130 0.87797 +2012 131 0.78865 +2012 132 0.80164 +2012 133 0.93589 +2012 134 0.97448 +2012 135 0.92739 +2012 136 0.88000 +2012 137 0.80163 +2012 138 0.79019 +2012 139 0.72784 +2012 140 0.75337 +2012 141 0.78957 +2012 142 0.85562 +2012 143 0.88082 +2012 144 0.89893 +2012 145 0.86060 +2012 146 0.89900 +2012 147 0.93321 +2012 148 0.96563 +2012 149 0.78185 +2012 150 0.76568 +2012 151 0.82471 +2012 152 0.77681 +2012 153 0.88319 +2012 154 0.90858 +2012 155 0.89550 +2012 156 0.95940 +2012 157 0.97368 +2012 158 0.91406 +2012 159 0.88611 +2012 160 0.86908 +2012 161 0.84782 +2012 162 0.80775 +2012 163 0.73747 +2012 164 0.76160 +2012 165 0.85098 +2012 166 0.79055 +2012 167 0.73440 +2012 168 0.81228 +2012 169 0.87307 +2012 170 0.97397 +2012 171 0.91238 +2012 172 0.95956 +2012 173 0.90837 +2012 174 0.88794 +2012 175 0.89558 +2012 176 0.88112 +2012 177 0.85696 +2012 178 0.78946 +2012 179 0.79303 +2012 180 0.71181 +2012 181 0.76432 +2012 182 0.81645 +2012 183 0.80762 +2012 184 0.95220 +2012 185 0.92428 +2012 186 0.91540 +2012 187 0.84656 +2012 188 0.78045 +2012 189 0.79346 +2012 190 0.85272 +2012 191 0.86365 +2012 192 0.88507 +2012 193 0.88338 +2012 194 0.81014 +2012 195 0.82462 +2012 196 0.97392 +2012 197 0.99070 +2012 198 0.81781 +2012 199 0.77604 +2012 200 0.86294 +2012 201 0.87472 +2012 202 0.89763 +2012 203 0.93932 +2012 204 0.99643 +2012 205 0.96314 +2012 206 0.93321 +2012 207 0.79789 +2012 208 0.77892 +2012 209 0.82642 +2012 210 0.86346 +2012 211 0.99207 +2012 212 0.82982 +2012 213 0.88902 +2012 214 0.89932 +2012 215 0.96075 +2012 216 0.93651 +2012 217 0.90525 +2012 218 0.89025 +2012 219 0.88782 +2012 220 0.92118 +2012 221 0.86285 +2012 222 0.81482 +2012 223 0.87365 +2012 224 0.96228 +2012 225 0.93725 +2012 226 0.91243 +2012 227 0.94218 +2012 228 0.90965 +2012 229 0.81993 +2012 230 0.84472 +2012 231 0.94368 +2012 232 0.95689 +2012 233 0.83481 +2012 234 0.78133 +2012 235 0.86757 +2012 236 0.88533 +2012 237 0.85999 +2012 238 0.81904 +2012 239 0.92260 +2012 240 0.81267 +2012 241 0.78422 +2012 242 0.76531 +2012 243 0.74387 +2012 244 0.80331 +2012 245 0.80937 +2012 246 0.92404 +2012 247 0.90551 +2012 248 0.74890 +2012 249 0.82714 +2012 250 0.88450 +2012 251 0.86115 +2012 252 0.91714 +2012 253 0.81875 +2012 254 0.80732 +2012 255 0.64520 +2012 256 0.66534 +2012 257 0.73528 +2012 258 0.81675 +2012 259 0.99489 +2012 260 0.91912 +2012 261 0.70602 +2012 262 0.74688 +2012 263 0.74510 +2012 264 0.73827 +2012 265 0.70701 +2012 266 0.78181 +2012 267 0.83862 +2012 268 0.76372 +2012 269 0.78529 +2012 270 0.83673 +2012 271 0.84278 +2012 272 0.83696 +2012 273 0.80730 +2012 274 0.85172 +2012 275 0.84129 +2012 276 0.78892 +2012 277 0.81792 +2012 278 0.79614 +2012 279 0.83682 +2012 280 0.63896 +2012 281 0.90936 +2012 282 0.82251 +2012 283 0.78941 +2012 284 0.73302 +2012 285 0.77456 +2012 286 0.92491 +2012 287 0.73532 +2012 288 0.74603 +2012 289 0.69120 +2012 290 0.78405 +2012 291 0.89085 +2012 292 0.64662 +2012 293 0.67288 +2012 294 0.91398 +2012 295 0.78735 +2012 296 0.79827 +2012 297 0.61814 +2012 298 0.71306 +2012 299 0.76266 +2012 300 0.75178 +2012 301 0.81651 +2012 302 0.73214 +2012 303 0.67561 +2012 304 0.75059 +2012 305 0.81151 +2012 306 0.82272 +2012 307 0.85132 +2012 308 0.66620 +2012 309 0.68183 +2012 310 0.63801 +2012 311 0.54491 +2012 312 0.61988 +2012 313 0.63049 +2012 314 0.67238 +2012 315 0.73792 +2012 316 0.78606 +2012 317 0.81822 +2012 318 0.70018 +2012 319 0.88546 +2012 320 0.72101 +2012 321 0.92514 +2012 322 0.81044 +2012 323 0.66501 +2012 324 0.67375 +2012 325 0.75042 +2012 326 0.79530 +2012 327 0.76881 +2012 328 0.69097 +2012 329 0.69826 +2012 330 0.69985 +2012 331 0.64235 +2012 332 0.68050 +2012 333 0.65260 +2012 334 0.57267 +2012 335 0.59819 +2012 336 0.77499 +2012 337 0.68063 +2012 338 0.71426 +2012 339 0.95489 +2012 340 0.94131 +2012 341 0.82319 +2012 342 0.66723 +2012 343 0.65471 +2012 344 0.70893 +2012 345 0.70972 +2012 346 0.71651 +2012 347 0.84672 +2012 348 0.79434 +2012 349 0.67719 +2012 350 0.74407 +2012 351 0.84161 +2012 352 0.86749 +2012 353 0.79402 +2012 354 0.65241 +2012 355 0.87540 +2012 356 0.82380 +2012 357 0.80184 +2012 358 0.90187 +2012 359 0.93942 +2012 360 0.96508 +2012 361 0.90447 +2012 362 0.87412 +2012 363 0.81243 +2012 364 0.97103 +2012 365 0.68396 +2012 366 0.66482 +2013 1 0.73943 +2013 2 0.79271 +2013 3 0.58348 +2013 4 0.55865 +2013 5 0.69658 +2013 6 0.67807 +2013 7 0.67582 +2013 8 0.77135 +2013 9 0.78347 +2013 10 0.73226 +2013 11 0.63894 +2013 12 0.73092 +2013 13 0.83574 +2013 14 0.86165 +2013 15 0.69610 +2013 16 0.73291 +2013 17 0.57088 +2013 18 0.61385 +2013 19 0.61324 +2013 20 0.71845 +2013 21 0.72543 +2013 22 0.72264 +2013 23 0.67225 +2013 24 0.58917 +2013 25 0.59000 +2013 26 0.61391 +2013 27 0.60742 +2013 28 0.59161 +2013 29 0.69760 +2013 30 0.69749 +2013 31 0.72220 +2013 32 0.77553 +2013 33 0.77855 +2013 34 0.95723 +2013 35 0.81255 +2013 36 0.58558 +2013 37 0.61977 +2013 38 0.72426 +2013 39 0.66693 +2013 40 0.70933 +2013 41 0.72437 +2013 42 0.63357 +2013 43 0.74360 +2013 44 0.58990 +2013 45 0.61739 +2013 46 0.63601 +2013 47 0.61463 +2013 48 0.70330 +2013 49 0.73557 +2013 50 0.70964 +2013 51 0.70993 +2013 52 0.62830 +2013 53 0.56780 +2013 54 0.54639 +2013 55 0.57903 +2013 56 0.65723 +2013 57 0.67339 +2013 58 0.63791 +2013 59 0.63632 +2013 60 0.67948 +2013 61 0.63321 +2013 62 0.66649 +2013 63 0.69954 +2013 64 0.69298 +2013 65 0.65835 +2013 66 0.65375 +2013 67 0.60077 +2013 68 0.60209 +2013 69 0.57910 +2013 70 0.58399 +2013 71 0.68506 +2013 72 0.84398 +2013 73 0.77387 +2013 74 0.76254 +2013 75 0.95825 +2013 76 0.85742 +2013 77 0.74740 +2013 78 0.71133 +2013 79 0.67322 +2013 80 0.77551 +2013 81 0.71893 +2013 82 0.75486 +2013 83 0.79670 +2013 84 0.71125 +2013 85 0.77606 +2013 86 0.76941 +2013 87 0.78695 +2013 88 0.82904 +2013 89 0.90743 +2013 90 0.78639 +2013 91 0.80454 +2013 92 0.82915 +2013 93 0.91870 +2013 94 0.68582 +2013 95 0.70067 +2013 96 0.65958 +2013 97 0.65865 +2013 98 0.72985 +2013 99 0.67029 +2013 100 0.72190 +2013 101 0.77086 +2013 102 0.80108 +2013 103 0.83335 +2013 104 0.90092 +2013 105 0.99756 +2013 106 0.95705 +2013 107 0.79593 +2013 108 0.82765 +2013 109 0.97329 +2013 110 0.98386 +2013 111 0.95354 +2013 112 0.87684 +2013 113 0.91953 +2013 114 0.85309 +2013 115 0.77259 +2013 116 0.83459 +2013 117 0.83458 +2013 118 0.83846 +2013 119 0.85289 +2013 120 0.78336 +2013 121 0.86467 +2013 122 0.88598 +2013 123 0.92204 +2013 124 0.95754 +2013 125 0.94926 +2013 126 0.76463 +2013 127 0.83672 +2013 128 0.95310 +2013 129 0.94588 +2013 130 0.75120 +2013 131 0.81410 +2013 132 0.86871 +2013 133 0.86613 +2013 134 0.78140 +2013 135 0.85796 +2013 136 0.93841 +2013 137 0.97516 +2013 138 0.95201 +2013 139 0.90251 +2013 140 0.96607 +2013 141 0.93803 +2013 142 0.91050 +2013 143 0.74643 +2013 144 0.87794 +2013 145 0.87005 +2013 146 0.82504 +2013 147 0.78576 +2013 148 0.65129 +2013 149 0.81021 +2013 150 0.86627 +2013 151 0.87137 +2013 152 0.90845 +2013 153 0.88028 +2013 154 0.96252 +2013 155 0.88232 +2013 156 0.71969 +2013 157 0.83322 +2013 158 0.85050 +2013 159 0.93815 +2013 160 0.90444 +2013 161 0.90695 +2013 162 0.85788 +2013 163 0.88077 +2013 164 0.89940 +2013 165 0.92468 +2013 166 0.98974 +2013 167 0.97020 +2013 168 0.97318 +2013 169 0.93641 +2013 170 0.91157 +2013 171 0.76726 +2013 172 0.73887 +2013 173 0.87103 +2013 174 0.84783 +2013 175 0.85647 +2013 176 0.87076 +2013 177 0.79589 +2013 178 0.75456 +2013 179 0.80071 +2013 180 0.86651 +2013 181 0.87423 +2013 182 0.80640 +2013 183 0.89770 +2013 184 0.92025 +2013 185 0.94764 +2013 186 0.87724 +2013 187 0.86094 +2013 188 0.80512 +2013 189 0.80777 +2013 190 0.94285 +2013 191 0.89705 +2013 192 0.92139 +2013 193 0.95195 +2013 194 0.83153 +2013 195 0.65213 +2013 196 0.79158 +2013 197 0.86381 +2013 198 0.85283 +2013 199 0.83571 +2013 200 0.94671 +2013 201 0.89654 +2013 202 0.91760 +2013 203 0.89138 +2013 204 0.96559 +2013 205 0.89246 +2013 206 0.79256 +2013 207 0.82228 +2013 208 0.85630 +2013 209 0.85289 +2013 210 0.86545 +2013 211 0.89799 +2013 212 0.87691 +2013 213 0.87763 +2013 214 0.78504 +2013 215 0.86933 +2013 216 0.90250 +2013 217 0.84420 +2013 218 0.87576 +2013 219 0.88776 +2013 220 0.87882 +2013 221 0.91696 +2013 222 0.92786 +2013 223 0.87202 +2013 224 0.82017 +2013 225 0.78767 +2013 226 0.73172 +2013 227 0.88327 +2013 228 0.95980 +2013 229 0.82073 +2013 230 0.86130 +2013 231 0.82065 +2013 232 0.86869 +2013 233 0.96218 +2013 234 0.92654 +2013 235 0.85696 +2013 236 0.95673 +2013 237 0.89260 +2013 238 0.78330 +2013 239 0.84879 +2013 240 0.95604 +2013 241 0.78416 +2013 242 0.69998 +2013 243 0.75350 +2013 244 0.75485 +2013 245 0.77372 +2013 246 0.89781 +2013 247 0.77760 +2013 248 0.70864 +2013 249 0.86746 +2013 250 0.82914 +2013 251 0.76963 +2013 252 0.74010 +2013 253 0.89507 +2013 254 0.98820 +2013 255 0.81329 +2013 256 0.81201 +2013 257 0.72415 +2013 258 0.83581 +2013 259 0.74302 +2013 260 0.71571 +2013 261 0.80765 +2013 262 0.99532 +2013 263 0.97687 +2013 264 0.89907 +2013 265 0.87197 +2013 266 0.93394 +2013 267 0.96207 +2013 268 0.82243 +2013 269 0.77621 +2013 270 0.85597 +2013 271 0.74150 +2013 272 0.91798 +2013 273 0.73827 +2013 274 0.79897 +2013 275 0.78377 +2013 276 0.84368 +2013 277 0.86105 +2013 278 0.84391 +2013 279 0.77948 +2013 280 0.85887 +2013 281 0.85757 +2013 282 0.72280 +2013 283 0.94391 +2013 284 0.85493 +2013 285 0.77135 +2013 286 0.82311 +2013 287 0.82567 +2013 288 0.72450 +2013 289 0.76804 +2013 290 0.79736 +2013 291 0.71657 +2013 292 0.76840 +2013 293 0.78240 +2013 294 0.77581 +2013 295 0.89728 +2013 296 0.78045 +2013 297 0.83782 +2013 298 0.69595 +2013 299 0.78410 +2013 300 0.68417 +2013 301 0.67814 +2013 302 0.66652 +2013 303 0.80141 +2013 304 0.75460 +2013 305 0.62512 +2013 306 0.67450 +2013 307 0.80053 +2013 308 0.84724 +2013 309 0.94848 +2013 310 0.95019 +2013 311 0.90763 +2013 312 0.77628 +2013 313 0.75426 +2013 314 0.69640 +2013 315 0.65749 +2013 316 0.62255 +2013 317 0.65798 +2013 318 0.71355 +2013 319 0.76835 +2013 320 0.75936 +2013 321 0.73975 +2013 322 0.87529 +2013 323 0.83538 +2013 324 0.87964 +2013 325 0.82535 +2013 326 0.69783 +2013 327 0.69701 +2013 328 0.66887 +2013 329 0.93644 +2013 330 0.90304 +2013 331 0.93256 +2013 332 0.78085 +2013 333 0.80364 +2013 334 0.66744 +2013 335 0.70637 +2013 336 0.79606 +2013 337 0.96674 +2013 338 0.99532 +2013 339 0.86860 +2013 340 0.86067 +2013 341 0.80445 +2013 342 0.74400 +2013 343 0.74259 +2013 344 0.71841 +2013 345 0.76208 +2013 346 0.81100 +2013 347 0.81363 +2013 348 0.78924 +2013 349 0.71906 +2013 350 0.71431 +2013 351 0.65468 +2013 352 0.59869 +2013 353 0.56358 +2013 354 0.69789 +2013 355 0.59331 +2013 356 0.70522 +2013 357 0.73148 +2013 358 0.81439 +2013 359 0.75452 +2013 360 0.76174 +2013 361 0.84952 +2013 362 0.97387 +2013 363 0.87797 +2013 364 0.67756 +2013 365 0.78989 +2014 1 0.69672 +2014 2 0.75254 +2014 3 0.81860 +2014 4 0.86374 +2014 5 0.68943 +2014 6 0.75051 +2014 7 0.74152 +2014 8 0.76261 +2014 9 0.68833 +2014 10 0.73118 +2014 11 0.77964 +2014 12 0.76840 +2014 13 0.65514 +2014 14 0.77087 +2014 15 0.77615 +2014 16 0.66777 +2014 17 0.59270 +2014 18 0.67347 +2014 19 0.89376 +2014 20 0.94186 +2014 21 0.79636 +2014 22 0.68225 +2014 23 0.63420 +2014 24 0.77011 +2014 25 0.94959 +2014 26 0.71697 +2014 27 0.56853 +2014 28 0.65718 +2014 29 0.77624 +2014 30 0.66243 +2014 31 0.61589 +2014 32 0.61418 +2014 33 0.69428 +2014 34 0.72797 +2014 35 0.69238 +2014 36 0.65498 +2014 37 0.80816 +2014 38 0.94311 +2014 39 0.74979 +2014 40 0.72986 +2014 41 0.84136 +2014 42 0.78318 +2014 43 0.74552 +2014 44 0.75191 +2014 45 0.67960 +2014 46 0.78181 +2014 47 0.80217 +2014 48 0.84240 +2014 49 0.86935 +2014 50 0.79436 +2014 51 0.81417 +2014 52 0.93141 +2014 53 0.63989 +2014 54 0.61034 +2014 55 0.64583 +2014 56 0.68444 +2014 57 0.65576 +2014 58 0.68767 +2014 59 0.54517 +2014 60 0.59137 +2014 61 0.70158 +2014 62 0.53408 +2014 63 0.58057 +2014 64 0.60940 +2014 65 0.70411 +2014 66 0.66510 +2014 67 0.70823 +2014 68 0.71610 +2014 69 0.76078 +2014 70 0.76383 +2014 71 0.74784 +2014 72 0.78430 +2014 73 0.94484 +2014 74 0.95328 +2014 75 0.80666 +2014 76 0.78858 +2014 77 0.80904 +2014 78 0.74265 +2014 79 0.70821 +2014 80 0.71614 +2014 81 0.85953 +2014 82 0.83743 +2014 83 0.78068 +2014 84 0.60847 +2014 85 0.65068 +2014 86 0.70685 +2014 87 0.77730 +2014 88 0.72035 +2014 89 0.76313 +2014 90 0.83695 +2014 91 0.84914 +2014 92 0.89327 +2014 93 0.77663 +2014 94 0.73235 +2014 95 0.72993 +2014 96 0.76112 +2014 97 0.84159 +2014 98 0.90119 +2014 99 0.97229 +2014 100 0.98254 +2014 101 0.85538 +2014 102 0.81528 +2014 103 0.84491 +2014 104 0.87141 +2014 105 0.91026 +2014 106 0.98795 +2014 107 0.97373 +2014 108 0.95774 +2014 109 0.93497 +2014 110 0.84864 +2014 111 0.76444 +2014 112 0.79093 +2014 113 0.90032 +2014 114 0.88605 +2014 115 0.78988 +2014 116 0.79929 +2014 117 0.83436 +2014 118 0.78948 +2014 119 0.79185 +2014 120 0.79836 +2014 121 0.83294 +2014 122 0.86916 +2014 123 0.90200 +2014 124 0.95027 +2014 125 0.89312 +2014 126 0.95176 +2014 127 0.95368 +2014 128 0.89050 +2014 129 0.83503 +2014 130 0.80485 +2014 131 0.84291 +2014 132 0.86804 +2014 133 0.93461 +2014 134 0.82634 +2014 135 0.73194 +2014 136 0.78886 +2014 137 0.88991 +2014 138 0.86804 +2014 139 0.90287 +2014 140 0.90894 +2014 141 0.80571 +2014 142 0.83084 +2014 143 0.91531 +2014 144 0.88062 +2014 145 0.72556 +2014 146 0.66553 +2014 147 0.76311 +2014 148 0.88608 +2014 149 0.90740 +2014 150 0.78068 +2014 151 0.80320 +2014 152 0.87929 +2014 153 0.86634 +2014 154 0.83440 +2014 155 0.91479 +2014 156 0.91745 +2014 157 0.92386 +2014 158 0.96636 +2014 159 0.98656 +2014 160 0.97377 +2014 161 0.99023 +2014 162 0.96811 +2014 163 0.80839 +2014 164 0.85394 +2014 165 0.88987 +2014 166 0.94732 +2014 167 0.96285 +2014 168 0.88608 +2014 169 0.82987 +2014 170 0.75639 +2014 171 0.83866 +2014 172 0.85710 +2014 173 0.86174 +2014 174 0.92323 +2014 175 0.90251 +2014 176 0.96070 +2014 177 0.94239 +2014 178 0.80527 +2014 179 0.85216 +2014 180 0.93610 +2014 181 0.96695 +2014 182 0.89357 +2014 183 0.81534 +2014 184 0.78664 +2014 185 0.86769 +2014 186 0.83539 +2014 187 0.77059 +2014 188 0.80647 +2014 189 0.80493 +2014 190 0.78582 +2014 191 0.80754 +2014 192 0.91231 +2014 193 0.95936 +2014 194 0.86045 +2014 195 0.74087 +2014 196 0.73705 +2014 197 0.69942 +2014 198 0.81485 +2014 199 0.84715 +2014 200 0.83896 +2014 201 0.84281 +2014 202 0.70937 +2014 203 0.72029 +2014 204 0.82927 +2014 205 0.81728 +2014 206 0.76925 +2014 207 0.78439 +2014 208 0.78813 +2014 209 0.83386 +2014 210 0.94368 +2014 211 0.91459 +2014 212 0.91791 +2014 213 0.97156 +2014 214 0.98010 +2014 215 0.92405 +2014 216 0.80043 +2014 217 0.83593 +2014 218 0.80942 +2014 219 0.80072 +2014 220 0.66504 +2014 221 0.77145 +2014 222 0.86280 +2014 223 0.92310 +2014 224 0.84101 +2014 225 0.87091 +2014 226 0.63911 +2014 227 0.72459 +2014 228 0.78424 +2014 229 0.81040 +2014 230 0.92248 +2014 231 0.96319 +2014 232 0.75413 +2014 233 0.63171 +2014 234 0.73261 +2014 235 0.75307 +2014 236 0.75562 +2014 237 0.78581 +2014 238 0.76733 +2014 239 0.76798 +2014 240 0.78303 +2014 241 0.72075 +2014 242 0.75337 +2014 243 0.91634 +2014 244 0.83602 +2014 245 0.86824 +2014 246 0.92447 +2014 247 0.95245 +2014 248 0.90483 +2014 249 0.73470 +2014 250 0.78021 +2014 251 0.76986 +2014 252 0.84945 +2014 253 0.88036 +2014 254 0.96176 +2014 255 0.96882 +2014 256 0.86045 +2014 257 0.77297 +2014 258 0.90233 +2014 259 0.77620 +2014 260 0.88094 +2014 261 0.92149 +2014 262 0.85933 +2014 263 0.81890 +2014 264 0.69881 +2014 265 0.69447 +2014 266 0.79437 +2014 267 0.79900 +2014 268 0.77098 +2014 269 0.80067 +2014 270 0.90223 +2014 271 0.71110 +2014 272 0.67627 +2014 273 0.66861 +2014 274 0.84531 +2014 275 0.87032 +2014 276 0.77945 +2014 277 0.73176 +2014 278 0.81029 +2014 279 0.66287 +2014 280 0.86437 +2014 281 0.74460 +2014 282 0.73262 +2014 283 0.73295 +2014 284 0.71707 +2014 285 0.81492 +2014 286 0.82908 +2014 287 0.77095 +2014 288 0.83966 +2014 289 0.80122 +2014 290 0.87561 +2014 291 0.91152 +2014 292 0.76316 +2014 293 0.74950 +2014 294 0.94008 +2014 295 0.87892 +2014 296 0.65000 +2014 297 0.56470 +2014 298 0.72007 +2014 299 0.84984 +2014 300 0.93816 +2014 301 0.86546 +2014 302 0.77637 +2014 303 0.77974 +2014 304 0.72746 +2014 305 0.80048 +2014 306 0.88924 +2014 307 0.75653 +2014 308 0.81695 +2014 309 0.84115 +2014 310 0.64703 +2014 311 0.66935 +2014 312 0.76096 +2014 313 0.77007 +2014 314 0.84958 +2014 315 0.82100 +2014 316 0.70832 +2014 317 0.71306 +2014 318 0.83946 +2014 319 0.72533 +2014 320 0.95502 +2014 321 0.71952 +2014 322 0.71547 +2014 323 0.63327 +2014 324 0.71515 +2014 325 0.82532 +2014 326 0.75003 +2014 327 0.80812 +2014 328 0.81232 +2014 329 0.78910 +2014 330 0.69331 +2014 331 0.83346 +2014 332 0.65305 +2014 333 0.68746 +2014 334 0.71831 +2014 335 0.56508 +2014 336 0.63542 +2014 337 0.72346 +2014 338 0.83242 +2014 339 0.72605 +2014 340 0.74823 +2014 341 0.69407 +2014 342 0.88370 +2014 343 0.82763 +2014 344 0.91428 +2014 345 0.80063 +2014 346 0.76194 +2014 347 0.95171 +2014 348 0.71997 +2014 349 0.71536 +2014 350 0.95766 +2014 351 0.91801 +2014 352 0.81034 +2014 353 0.91811 +2014 354 0.85479 +2014 355 0.71558 +2014 356 0.82386 +2014 357 0.84845 +2014 358 0.82798 +2014 359 0.75356 +2014 360 0.77921 +2014 361 0.78902 +2014 362 0.81350 +2014 363 0.79732 +2014 364 0.72271 +2014 365 0.70208 +2015 1 0.76121 +2015 2 0.72555 +2015 3 0.83725 +2015 4 0.74680 +2015 5 0.71446 +2015 6 0.73524 +2015 7 0.65369 +2015 8 0.79937 +2015 9 0.75037 +2015 10 0.69594 +2015 11 0.70429 +2015 12 0.81856 +2015 13 0.79538 +2015 14 0.76081 +2015 15 0.75958 +2015 16 0.78123 +2015 17 0.66450 +2015 18 0.63512 +2015 19 0.68767 +2015 20 0.53107 +2015 21 0.61889 +2015 22 0.66891 +2015 23 0.67569 +2015 24 0.70935 +2015 25 0.58624 +2015 26 0.66795 +2015 27 0.70693 +2015 28 0.73234 +2015 29 0.79801 +2015 30 0.85812 +2015 31 0.92491 +2015 32 0.81817 +2015 33 0.72868 +2015 34 0.75005 +2015 35 0.68969 +2015 36 0.63339 +2015 37 0.57892 +2015 38 0.65763 +2015 39 0.74946 +2015 40 0.65331 +2015 41 0.55724 +2015 42 0.65887 +2015 43 0.67075 +2015 44 0.63594 +2015 45 0.55377 +2015 46 0.67294 +2015 47 0.79094 +2015 48 0.68073 +2015 49 0.62211 +2015 50 0.70872 +2015 51 0.78808 +2015 52 0.83542 +2015 53 0.83376 +2015 54 0.74568 +2015 55 0.72054 +2015 56 0.77766 +2015 57 0.79833 +2015 58 0.66895 +2015 59 0.67792 +2015 60 0.75610 +2015 61 0.78415 +2015 62 0.84680 +2015 63 0.82302 +2015 64 0.92100 +2015 65 0.82316 +2015 66 0.70221 +2015 67 0.70428 +2015 68 0.72615 +2015 69 0.80077 +2015 70 0.93075 +2015 71 0.85134 +2015 72 0.81665 +2015 73 0.84163 +2015 74 0.86456 +2015 75 0.75399 +2015 76 0.69154 +2015 77 0.69856 +2015 78 0.65136 +2015 79 0.74454 +2015 80 0.78274 +2015 81 0.82825 +2015 82 0.81919 +2015 83 0.82992 +2015 84 0.84273 +2015 85 0.83902 +2015 86 0.88281 +2015 87 0.89344 +2015 88 0.77680 +2015 89 0.74283 +2015 90 0.81722 +2015 91 0.86387 +2015 92 0.77416 +2015 93 0.82866 +2015 94 0.86089 +2015 95 0.94852 +2015 96 0.83076 +2015 97 0.88110 +2015 98 0.97760 +2015 99 0.93254 +2015 100 0.83392 +2015 101 0.78780 +2015 102 0.88940 +2015 103 0.72977 +2015 104 0.75585 +2015 105 0.69735 +2015 106 0.77601 +2015 107 0.96915 +2015 108 0.88655 +2015 109 0.93757 +2015 110 0.87483 +2015 111 0.87855 +2015 112 0.79026 +2015 113 0.78727 +2015 114 0.85497 +2015 115 0.78516 +2015 116 0.93283 +2015 117 0.89487 +2015 118 0.85981 +2015 119 0.73845 +2015 120 0.73982 +2015 121 0.82976 +2015 122 0.85876 +2015 123 0.86974 +2015 124 0.86281 +2015 125 0.88456 +2015 126 0.94792 +2015 127 0.99710 +2015 128 0.82571 +2015 129 0.80408 +2015 130 0.93464 +2015 131 0.94247 +2015 132 0.78381 +2015 133 0.91389 +2015 134 0.92926 +2015 135 0.75234 +2015 136 0.80512 +2015 137 0.82494 +2015 138 0.81837 +2015 139 0.85467 +2015 140 0.88762 +2015 141 0.82335 +2015 142 0.96597 +2015 143 0.81662 +2015 144 0.69715 +2015 145 0.78278 +2015 146 0.78267 +2015 147 0.79263 +2015 148 0.85119 +2015 149 0.86746 +2015 150 0.85277 +2015 151 0.98545 +2015 152 0.99466 +2015 153 0.91800 +2015 154 0.93911 +2015 155 0.87768 +2015 156 0.92661 +2015 157 0.87631 +2015 158 0.85979 +2015 159 0.91079 +2015 160 0.91306 +2015 161 0.86434 +2015 162 0.78381 +2015 163 0.75986 +2015 164 0.82105 +2015 165 0.82502 +2015 166 0.72120 +2015 167 0.81454 +2015 168 0.89999 +2015 169 0.88996 +2015 170 0.96662 +2015 171 0.86823 +2015 172 0.68596 +2015 173 0.70617 +2015 174 0.74805 +2015 175 0.79145 +2015 176 0.87855 +2015 177 0.79995 +2015 178 0.79326 +2015 179 0.78861 +2015 180 0.83551 +2015 181 0.79962 +2015 182 0.86219 +2015 183 0.88818 +2015 184 0.99128 +2015 185 0.85014 +2015 186 0.85335 +2015 187 0.96217 +2015 188 0.88098 +2015 189 0.68313 +2015 190 0.71165 +2015 191 0.79170 +2015 192 0.80015 +2015 193 0.83848 +2015 194 0.81507 +2015 195 0.88677 +2015 196 0.89914 +2015 197 0.87273 +2015 198 0.96722 +2015 199 0.73704 +2015 200 0.80192 +2015 201 0.65735 +2015 202 0.76365 +2015 203 0.81988 +2015 204 0.86215 +2015 205 0.84623 +2015 206 0.88417 +2015 207 0.98642 +2015 208 0.94477 +2015 209 0.81969 +2015 210 0.70528 +2015 211 0.85750 +2015 212 0.90015 +2015 213 0.87693 +2015 214 0.90230 +2015 215 0.89956 +2015 216 0.99616 +2015 217 0.92120 +2015 218 0.90141 +2015 219 0.89744 +2015 220 0.90272 +2015 221 0.79277 +2015 222 0.70525 +2015 223 0.74169 +2015 224 0.77467 +2015 225 0.90538 +2015 226 0.90419 +2015 227 0.82462 +2015 228 0.78567 +2015 229 0.81383 +2015 230 0.95466 +2015 231 0.81929 +2015 232 0.79736 +2015 233 0.82302 +2015 234 0.86722 +2015 235 0.83914 +2015 236 0.97140 +2015 237 0.79989 +2015 238 0.72726 +2015 239 0.84150 +2015 240 0.84870 +2015 241 0.95339 +2015 242 0.97120 +2015 243 0.98912 +2015 244 0.94578 +2015 245 0.91259 +2015 246 0.86497 +2015 247 0.78540 +2015 248 0.77314 +2015 249 0.66287 +2015 250 0.73020 +2015 251 0.80031 +2015 252 0.93157 +2015 253 0.73312 +2015 254 0.65167 +2015 255 0.75028 +2015 256 0.78795 +2015 257 0.83139 +2015 258 0.80285 +2015 259 0.83434 +2015 260 0.94071 +2015 261 0.83370 +2015 262 0.94569 +2015 263 0.89046 +2015 264 0.87191 +2015 265 0.86427 +2015 266 0.89094 +2015 267 0.72589 +2015 268 0.69532 +2015 269 0.73508 +2015 270 0.91470 +2015 271 0.76481 +2015 272 0.83042 +2015 273 0.79586 +2015 274 0.92753 +2015 275 0.79128 +2015 276 0.83346 +2015 277 0.70201 +2015 278 0.76507 +2015 279 0.80387 +2015 280 0.77349 +2015 281 0.63556 +2015 282 0.77528 +2015 283 0.78855 +2015 284 0.77090 +2015 285 0.83745 +2015 286 0.86798 +2015 287 0.79096 +2015 288 0.79775 +2015 289 0.75396 +2015 290 0.83236 +2015 291 0.69265 +2015 292 0.69864 +2015 293 0.77773 +2015 294 0.87514 +2015 295 0.79093 +2015 296 0.90368 +2015 297 0.73147 +2015 298 0.79344 +2015 299 0.73953 +2015 300 0.77742 +2015 301 0.82370 +2015 302 0.69027 +2015 303 0.65470 +2015 304 0.73490 +2015 305 0.75216 +2015 306 0.72935 +2015 307 0.94002 +2015 308 0.68576 +2015 309 0.65031 +2015 310 0.69391 +2015 311 0.68582 +2015 312 0.72908 +2015 313 0.76888 +2015 314 0.71142 +2015 315 0.73688 +2015 316 0.52474 +2015 317 0.62397 +2015 318 0.86311 +2015 319 0.98839 +2015 320 0.75693 +2015 321 0.64911 +2015 322 0.64727 +2015 323 0.86318 +2015 324 0.85742 +2015 325 0.77344 +2015 326 0.69036 +2015 327 0.71787 +2015 328 0.71655 +2015 329 0.76707 +2015 330 0.81925 +2015 331 0.93731 +2015 332 0.68202 +2015 333 0.82978 +2015 334 0.88715 +2015 335 0.83943 +2015 336 0.76013 +2015 337 0.80638 +2015 338 0.73084 +2015 339 0.75270 +2015 340 0.78023 +2015 341 0.63342 +2015 342 0.66503 +2015 343 0.72448 +2015 344 0.72231 +2015 345 0.86674 +2015 346 0.73289 +2015 347 0.62853 +2015 348 0.67669 +2015 349 0.75975 +2015 350 0.64358 +2015 351 0.68496 +2015 352 0.56946 +2015 353 0.63900 +2015 354 0.73432 +2015 355 0.70128 +2015 356 0.68993 +2015 357 0.74783 +2015 358 0.72313 +2015 359 0.64928 +2015 360 0.67191 +2015 361 0.61950 +2015 362 0.64015 +2015 363 0.60462 +2015 364 0.78374 +2015 365 0.80734 +2016 1 0.98500 +2016 2 0.95190 +2016 3 0.74656 +2016 4 0.65549 +2016 5 0.68051 +2016 6 0.73368 +2016 7 0.96421 +2016 8 0.76410 +2016 9 0.76754 +2016 10 0.81197 +2016 11 0.90953 +2016 12 0.71092 +2016 13 0.75453 +2016 14 0.76242 +2016 15 0.73890 +2016 16 0.81273 +2016 17 0.94678 +2016 18 0.87388 +2016 19 0.79560 +2016 20 0.72908 +2016 21 0.72740 +2016 22 0.77407 +2016 23 0.80715 +2016 24 0.84148 +2016 25 0.81328 +2016 26 0.90961 +2016 27 0.81148 +2016 28 0.87209 +2016 29 0.81899 +2016 30 0.89135 +2016 31 0.89616 +2016 32 0.76749 +2016 33 0.82549 +2016 34 0.74022 +2016 35 0.93612 +2016 36 0.96357 +2016 37 0.81719 +2016 38 0.79764 +2016 39 0.83969 +2016 40 0.81369 +2016 41 0.83620 +2016 42 0.79448 +2016 43 0.88693 +2016 44 0.77677 +2016 45 0.77451 +2016 46 0.83626 +2016 47 0.91531 +2016 48 0.98161 +2016 49 0.85539 +2016 50 0.75623 +2016 51 0.74687 +2016 52 0.79013 +2016 53 0.81288 +2016 54 0.77534 +2016 55 0.78078 +2016 56 0.79568 +2016 57 0.81450 +2016 58 0.82288 +2016 59 0.96895 +2016 60 0.87197 +2016 61 0.75121 +2016 62 0.72208 +2016 63 0.74074 +2016 64 0.78636 +2016 65 0.80794 +2016 66 0.80443 +2016 67 0.76818 +2016 68 0.78460 +2016 69 0.76909 +2016 70 0.71729 +2016 71 0.64739 +2016 72 0.69361 +2016 73 0.85376 +2016 74 0.83002 +2016 75 0.88783 +2016 76 0.87927 +2016 77 0.88116 +2016 78 0.83397 +2016 79 0.86410 +2016 80 0.87557 +2016 81 0.84672 +2016 82 0.90358 +2016 83 0.99322 +2016 84 0.90940 +2016 85 0.87419 +2016 86 0.85360 +2016 87 0.79841 +2016 88 0.71945 +2016 89 0.68222 +2016 90 0.79964 +2016 91 0.80229 +2016 92 0.97359 +2016 93 0.89527 +2016 94 0.84945 +2016 95 0.79005 +2016 96 0.73234 +2016 97 0.82212 +2016 98 0.87806 +2016 99 0.87893 +2016 100 0.87584 +2016 101 0.89017 +2016 102 0.89832 +2016 103 0.83146 +2016 104 0.73275 +2016 105 0.77250 +2016 106 0.81193 +2016 107 0.94184 +2016 108 0.83532 +2016 109 0.78712 +2016 110 0.82532 +2016 111 0.86599 +2016 112 0.82404 +2016 113 0.81809 +2016 114 0.91022 +2016 115 0.80595 +2016 116 0.80734 +2016 117 0.85112 +2016 118 0.86277 +2016 119 0.85979 +2016 120 0.80927 +2016 121 0.87518 +2016 122 0.91227 +2016 123 0.87949 +2016 124 0.87901 +2016 125 0.89278 +2016 126 0.88534 +2016 127 0.87537 +2016 128 0.87212 +2016 129 0.84928 +2016 130 0.86915 +2016 131 0.94837 +2016 132 0.86900 +2016 133 0.89165 +2016 134 0.81528 +2016 135 0.84807 +2016 136 0.89325 +2016 137 0.78469 +2016 138 0.88906 +2016 139 0.77177 +2016 140 0.86140 +2016 141 0.92587 +2016 142 0.81065 +2016 143 0.85908 +2016 144 0.92261 +2016 145 0.94428 +2016 146 0.92397 +2016 147 0.90624 +2016 148 0.93229 +2016 149 0.93767 +2016 150 0.87603 +2016 151 0.87465 +2016 152 0.78886 +2016 153 0.77981 +2016 154 0.83890 +2016 155 0.84798 +2016 156 0.87284 +2016 157 0.84326 +2016 158 0.85373 +2016 159 0.84510 +2016 160 0.88543 +2016 161 0.98709 +2016 162 0.89368 +2016 163 0.85916 +2016 164 0.78608 +2016 165 0.86353 +2016 166 0.87859 +2016 167 0.88235 +2016 168 0.89399 +2016 169 0.87905 +2016 170 0.85546 +2016 171 0.90204 +2016 172 0.96175 +2016 173 0.98984 +2016 174 0.96670 +2016 175 0.88841 +2016 176 0.97165 +2016 177 0.94844 +2016 178 0.94944 +2016 179 0.91316 +2016 180 0.98706 +2016 181 0.88698 +2016 182 0.71009 +2016 183 0.76918 +2016 184 0.87937 +2016 185 0.88187 +2016 186 0.88989 +2016 187 0.92376 +2016 188 0.89533 +2016 189 0.92231 +2016 190 0.72421 +2016 191 0.73416 +2016 192 0.73613 +2016 193 0.81445 +2016 194 0.84973 +2016 195 0.88145 +2016 196 0.83819 +2016 197 0.79065 +2016 198 0.78746 +2016 199 0.74403 +2016 200 0.85475 +2016 201 0.80942 +2016 202 0.76498 +2016 203 0.86556 +2016 204 0.96623 +2016 205 0.85854 +2016 206 0.79750 +2016 207 0.94720 +2016 208 0.89300 +2016 209 0.95789 +2016 210 0.83620 +2016 211 0.85302 +2016 212 0.85073 +2016 213 0.85075 +2016 214 0.82987 +2016 215 0.94632 +2016 216 0.96502 +2016 217 0.97148 +2016 218 0.90463 +2016 219 0.72266 +2016 220 0.73252 +2016 221 0.78043 +2016 222 0.81093 +2016 223 0.89284 +2016 224 0.89620 +2016 225 0.92528 +2016 226 0.80356 +2016 227 0.82335 +2016 228 0.79822 +2016 229 0.78099 +2016 230 0.77778 +2016 231 0.77579 +2016 232 0.80629 +2016 233 0.78846 +2016 234 0.83544 +2016 235 0.79180 +2016 236 0.87975 +2016 237 0.99312 +2016 238 0.95176 +2016 239 0.76457 +2016 240 0.77291 +2016 241 0.94767 +2016 242 0.81668 +2016 243 0.78825 +2016 244 0.85359 +2016 245 0.86521 +2016 246 0.85671 +2016 247 0.92655 +2016 248 0.84221 +2016 249 0.76269 +2016 250 0.82571 +2016 251 0.67041 +2016 252 0.61040 +2016 253 0.66872 +2016 254 0.77902 +2016 255 0.81411 +2016 256 0.77843 +2016 257 0.92379 +2016 258 0.97808 +2016 259 0.96850 +2016 260 0.98659 +2016 261 0.94475 +2016 262 0.80777 +2016 263 0.80714 +2016 264 0.98417 +2016 265 0.96348 +2016 266 0.91141 +2016 267 0.94500 +2016 268 0.95804 +2016 269 0.92695 +2016 270 0.84493 +2016 271 0.88827 +2016 272 0.98324 +2016 273 0.87066 +2016 274 0.93463 +2016 275 0.97264 +2016 276 0.89753 +2016 277 0.81428 +2016 278 0.81376 +2016 279 0.92021 +2016 280 0.80915 +2016 281 0.77503 +2016 282 0.86358 +2016 283 0.80625 +2016 284 0.87443 +2016 285 0.89917 +2016 286 0.69556 +2016 287 0.84921 +2016 288 0.80916 +2016 289 0.73657 +2016 290 0.73906 +2016 291 0.75951 +2016 292 0.86568 +2016 293 0.90556 +2016 294 0.79860 +2016 295 0.72936 +2016 296 0.69278 +2016 297 0.81621 +2016 298 0.92125 +2016 299 0.88218 +2016 300 0.75384 +2016 301 0.76233 +2016 302 0.66824 +2016 303 0.67218 +2016 304 0.66271 +2016 305 0.77535 +2016 306 0.86265 +2016 307 0.68457 +2016 308 0.66631 +2016 309 0.78222 +2016 310 0.89113 +2016 311 0.93643 +2016 312 0.72090 +2016 313 0.74684 +2016 314 0.77929 +2016 315 0.85432 +2016 316 0.94648 +2016 317 0.72555 +2016 318 0.78157 +2016 319 0.97419 +2016 320 0.81658 +2016 321 0.86820 +2016 322 0.63452 +2016 323 0.83138 +2016 324 0.68200 +2016 325 0.71887 +2016 326 0.76152 +2016 327 0.71420 +2016 328 0.74655 +2016 329 0.93964 +2016 330 0.78748 +2016 331 0.82474 +2016 332 0.67271 +2016 333 0.73115 +2016 334 0.75395 +2016 335 0.86247 +2016 336 0.80256 +2016 337 0.71976 +2016 338 0.76803 +2016 339 0.88858 +2016 340 0.86951 +2016 341 0.83508 +2016 342 0.95433 +2016 343 0.93891 +2016 344 0.95095 +2016 345 0.69355 +2016 346 0.68204 +2016 347 0.62885 +2016 348 0.82400 +2016 349 0.82122 +2016 350 0.64272 +2016 351 0.70852 +2016 352 0.75429 +2016 353 0.82764 +2016 354 0.65797 +2016 355 0.73445 +2016 356 0.82382 +2016 357 0.68796 +2016 358 0.62588 +2016 359 0.69389 +2016 360 0.76442 +2016 361 0.74961 +2016 362 0.63726 +2016 363 0.70826 +2016 364 0.63013 +2016 365 0.70176 +2016 366 0.79374 +2017 1 0.90455 +2017 2 0.93374 +2017 3 0.71015 +2017 4 0.57704 +2017 5 0.67289 +2017 6 0.62548 +2017 7 0.65749 +2017 8 0.70184 +2017 9 0.72820 +2017 10 0.68651 +2017 11 0.68497 +2017 12 0.67792 +2017 13 0.64010 +2017 14 0.80882 +2017 15 0.65876 +2017 16 0.60984 +2017 17 0.70515 +2017 18 0.77765 +2017 19 0.64887 +2017 20 0.73978 +2017 21 0.83222 +2017 22 0.72621 +2017 23 0.73645 +2017 24 0.80328 +2017 25 0.67056 +2017 26 0.67729 +2017 27 0.67901 +2017 28 0.69805 +2017 29 0.67508 +2017 30 0.70744 +2017 31 0.74307 +2017 32 0.75869 +2017 33 0.71009 +2017 34 0.61435 +2017 35 0.69988 +2017 36 0.68358 +2017 37 0.76258 +2017 38 0.82620 +2017 39 0.65421 +2017 40 0.59624 +2017 41 0.62835 +2017 42 0.76797 +2017 43 0.83992 +2017 44 0.72160 +2017 45 0.59951 +2017 46 0.89114 +2017 47 0.97685 +2017 48 0.97121 +2017 49 0.88526 +2017 50 0.84777 +2017 51 0.75614 +2017 52 0.82819 +2017 53 0.75600 +2017 54 0.74764 +2017 55 0.81453 +2017 56 0.75629 +2017 57 0.80056 +2017 58 0.90837 +2017 59 0.91221 +2017 60 0.78581 +2017 61 0.77289 +2017 62 0.79155 +2017 63 0.79105 +2017 64 0.76999 +2017 65 0.87560 +2017 66 0.96625 +2017 67 0.85553 +2017 68 0.88516 +2017 69 0.99457 +2017 70 0.97302 +2017 71 0.83791 +2017 72 0.72898 +2017 73 0.65391 +2017 74 0.74066 +2017 75 0.80708 +2017 76 0.77853 +2017 77 0.74289 +2017 78 0.84336 +2017 79 0.77364 +2017 80 0.88310 +2017 81 0.80452 +2017 82 0.86627 +2017 83 0.86526 +2017 84 0.94505 +2017 85 0.97298 +2017 86 0.86941 +2017 87 0.98346 +2017 88 0.94246 +2017 89 0.86433 +2017 90 0.85058 +2017 91 0.88030 +2017 92 0.90121 +2017 93 0.97544 +2017 94 0.99758 +2017 95 0.82203 +2017 96 0.77500 +2017 97 0.71976 +2017 98 0.75670 +2017 99 0.86300 +2017 100 0.94985 +2017 101 0.98981 +2017 102 0.99432 +2017 103 0.88102 +2017 104 0.93394 +2017 105 0.94300 +2017 106 0.92343 +2017 107 0.81947 +2017 108 0.82049 +2017 109 0.75181 +2017 110 0.72530 +2017 111 0.82310 +2017 112 0.86882 +2017 113 0.81686 +2017 114 0.79985 +2017 115 0.84608 +2017 116 0.84659 +2017 117 0.84796 +2017 118 0.97209 +2017 119 0.92020 +2017 120 0.71886 +2017 121 0.73690 +2017 122 0.82084 +2017 123 0.76481 +2017 124 0.76990 +2017 125 0.82518 +2017 126 0.87031 +2017 127 0.87045 +2017 128 0.87756 +2017 129 0.91651 +2017 130 0.97118 +2017 131 0.96961 +2017 132 0.68347 +2017 133 0.78253 +2017 134 0.88565 +2017 135 0.87028 +2017 136 0.98237 +2017 137 0.94756 +2017 138 0.73087 +2017 139 0.82274 +2017 140 0.71670 +2017 141 0.77164 +2017 142 0.85515 +2017 143 0.95074 +2017 144 0.90160 +2017 145 0.93271 +2017 146 0.99579 +2017 147 0.95216 +2017 148 0.93910 +2017 149 0.91791 +2017 150 0.89256 +2017 151 0.88607 +2017 152 0.85805 +2017 153 0.79918 +2017 154 0.80671 +2017 155 0.92819 +2017 156 0.91116 +2017 157 0.88022 +2017 158 0.79306 +2017 159 0.82368 +2017 160 0.84461 +2017 161 0.76713 +2017 162 0.90058 +2017 163 0.91228 +2017 164 0.76620 +2017 165 0.77114 +2017 166 0.83431 +2017 167 0.92808 +2017 168 0.93690 +2017 169 0.92478 +2017 170 0.89479 +2017 171 0.88084 +2017 172 0.97358 +2017 173 0.99844 +2017 174 0.95597 +2017 175 0.87773 +2017 176 0.86262 +2017 177 0.87271 +2017 178 0.86779 +2017 179 0.87757 +2017 180 0.91154 +2017 181 0.89947 +2017 182 0.95208 +2017 183 0.96604 +2017 184 0.90880 +2017 185 0.86912 +2017 186 0.95151 +2017 187 0.95150 +2017 188 0.90479 +2017 189 0.94023 +2017 190 0.87117 +2017 191 0.83238 +2017 192 0.85586 +2017 193 0.84138 +2017 194 0.91583 +2017 195 0.80214 +2017 196 0.87468 +2017 197 0.84316 +2017 198 0.89753 +2017 199 0.95371 +2017 200 0.96392 +2017 201 0.94101 +2017 202 0.95309 +2017 203 0.92280 +2017 204 0.83926 +2017 205 0.84400 +2017 206 0.81725 +2017 207 0.88798 +2017 208 0.81607 +2017 209 0.69410 +2017 210 0.78959 +2017 211 0.86808 +2017 212 0.92325 +2017 213 0.93713 +2017 214 0.80708 +2017 215 0.77483 +2017 216 0.80465 +2017 217 0.82252 +2017 218 0.89145 +2017 219 0.95132 +2017 220 0.99681 +2017 221 0.95368 +2017 222 0.85964 +2017 223 0.90636 +2017 224 0.84005 +2017 225 0.93099 +2017 226 0.91346 +2017 227 0.92024 +2017 228 0.93442 +2017 229 0.87637 +2017 230 0.95896 +2017 231 0.93730 +2017 232 0.83027 +2017 233 0.72372 +2017 234 0.77126 +2017 235 0.84208 +2017 236 0.85296 +2017 237 0.92444 +2017 238 0.85394 +2017 239 0.97760 +2017 240 0.87245 +2017 241 0.91811 +2017 242 0.94984 +2017 243 0.94877 +2017 244 0.97604 +2017 245 0.87787 +2017 246 0.71584 +2017 247 0.81133 +2017 248 0.96419 +2017 249 0.91163 +2017 250 0.82190 +2017 251 0.91507 +2017 252 0.89502 +2017 253 0.82382 +2017 254 0.77004 +2017 255 0.79194 +2017 256 0.88466 +2017 257 0.87125 +2017 258 0.89282 +2017 259 0.84090 +2017 260 0.88620 +2017 261 0.74488 +2017 262 0.77180 +2017 263 0.97677 +2017 264 0.81694 +2017 265 0.78963 +2017 266 0.83950 +2017 267 0.83522 +2017 268 0.93132 +2017 269 0.83109 +2017 270 0.88091 +2017 271 0.88851 +2017 272 0.85470 +2017 273 0.92903 +2017 274 0.81562 +2017 275 0.78252 +2017 276 0.78405 +2017 277 0.80035 +2017 278 0.92107 +2017 279 0.90811 +2017 280 0.98412 +2017 281 0.95822 +2017 282 0.93190 +2017 283 0.83428 +2017 284 0.72907 +2017 285 0.82362 +2017 286 0.74680 +2017 287 0.70270 +2017 288 0.74168 +2017 289 0.72902 +2017 290 0.70754 +2017 291 0.64230 +2017 292 0.77685 +2017 293 0.80135 +2017 294 0.87182 +2017 295 0.94405 +2017 296 0.77499 +2017 297 0.74709 +2017 298 0.75533 +2017 299 0.96663 +2017 300 0.96508 +2017 301 0.96076 +2017 302 0.83071 +2017 303 0.85627 +2017 304 0.81966 +2017 305 0.83841 +2017 306 0.93062 +2017 307 0.97026 +2017 308 0.81669 +2017 309 0.66423 +2017 310 0.69401 +2017 311 0.75635 +2017 312 0.65725 +2017 313 0.72202 +2017 314 0.64721 +2017 315 0.65598 +2017 316 0.71232 +2017 317 0.86747 +2017 318 0.87911 +2017 319 0.82260 +2017 320 0.74034 +2017 321 0.70697 +2017 322 0.74374 +2017 323 0.65343 +2017 324 0.72526 +2017 325 0.70215 +2017 326 0.77828 +2017 327 0.85055 +2017 328 0.89170 +2017 329 0.82952 +2017 330 0.87629 +2017 331 0.85860 +2017 332 0.84883 +2017 333 0.88766 +2017 334 0.83129 +2017 335 0.84390 +2017 336 0.75242 +2017 337 0.76507 +2017 338 0.80447 +2017 339 0.75208 +2017 340 0.77994 +2017 341 0.81174 +2017 342 0.79725 +2017 343 0.77484 +2017 344 0.78521 +2017 345 0.66581 +2017 346 0.62030 +2017 347 0.65945 +2017 348 0.68397 +2017 349 0.67536 +2017 350 0.80039 +2017 351 0.82632 +2017 352 0.69452 +2017 353 0.55012 +2017 354 0.54524 +2017 355 0.77511 +2017 356 0.89654 +2017 357 0.79350 +2017 358 0.78200 +2017 359 0.84638 +2017 360 0.61152 +2017 361 0.53949 +2017 362 0.64121 +2017 363 0.62724 +2017 364 0.66047 +2017 365 0.86767 +2018 1 0.93603 +2018 2 0.92703 +2018 3 0.99195 +2018 4 0.95825 +2018 5 0.85819 +2018 6 0.88896 +2018 7 0.73921 +2018 8 0.77300 +2018 9 0.79768 +2018 10 0.75025 +2018 11 0.82636 +2018 12 0.90469 +2018 13 0.84769 +2018 14 0.86929 +2018 15 0.81480 +2018 16 0.77373 +2018 17 0.94017 +2018 18 0.89591 +2018 19 0.83709 +2018 20 0.85172 +2018 21 0.94374 +2018 22 0.93226 +2018 23 0.79678 +2018 24 0.81543 +2018 25 0.86032 +2018 26 0.81059 +2018 27 0.82427 +2018 28 0.81066 +2018 29 0.86994 +2018 30 0.77385 +2018 31 0.91082 +2018 32 0.76926 +2018 33 0.72273 +2018 34 0.74759 +2018 35 0.90098 +2018 36 0.75997 +2018 37 0.75060 +2018 38 0.70938 +2018 39 0.95804 +2018 40 0.97882 +2018 41 0.99505 +2018 42 0.97817 +2018 43 0.96773 +2018 44 0.94605 +2018 45 0.77186 +2018 46 0.76280 +2018 47 0.85240 +2018 48 0.84533 +2018 49 0.89332 +2018 50 0.92506 +2018 51 0.77449 +2018 52 0.79948 +2018 53 0.78041 +2018 54 0.78650 +2018 55 0.79344 +2018 56 0.78941 +2018 57 0.83612 +2018 58 0.76689 +2018 59 0.82223 +2018 60 0.87232 +2018 61 0.82249 +2018 62 0.82455 +2018 63 0.78006 +2018 64 0.82183 +2018 65 0.94513 +2018 66 0.89211 +2018 67 0.77187 +2018 68 0.66101 +2018 69 0.71137 +2018 70 0.82685 +2018 71 0.81832 +2018 72 0.70828 +2018 73 0.77221 +2018 74 0.85753 +2018 75 0.76049 +2018 76 0.68731 +2018 77 0.76406 +2018 78 0.80029 +2018 79 0.82106 +2018 80 0.85628 +2018 81 0.82658 +2018 82 0.90921 +2018 83 0.94982 +2018 84 0.84997 +2018 85 0.87300 +2018 86 0.87251 +2018 87 0.89351 +2018 88 0.83308 +2018 89 0.84882 +2018 90 0.77157 +2018 91 0.76223 +2018 92 0.80360 +2018 93 0.86844 +2018 94 0.76442 +2018 95 0.82813 +2018 96 0.80688 +2018 97 0.83031 +2018 98 0.82008 +2018 99 0.91805 +2018 100 0.78023 +2018 101 0.73200 +2018 102 0.75050 +2018 103 0.93682 +2018 104 0.94556 +2018 105 0.96609 +2018 106 0.87746 +2018 107 0.79861 +2018 108 0.74524 +2018 109 0.79403 +2018 110 0.87272 +2018 111 0.75497 +2018 112 0.81818 +2018 113 0.83122 +2018 114 0.80150 +2018 115 0.85340 +2018 116 0.85246 +2018 117 0.96845 +2018 118 0.99720 +2018 119 0.92126 +2018 120 0.86752 +2018 121 0.75144 +2018 122 0.77651 +2018 123 0.83994 +2018 124 0.88373 +2018 125 0.89412 +2018 126 0.77917 +2018 127 0.81132 +2018 128 0.83198 +2018 129 0.89166 +2018 130 0.88538 +2018 131 0.97930 +2018 132 0.97691 +2018 133 0.94395 +2018 134 0.97311 +2018 135 0.96708 +2018 136 0.86970 +2018 137 0.80877 +2018 138 0.88894 +2018 139 0.84858 +2018 140 0.93504 +2018 141 0.93488 +2018 142 0.89822 +2018 143 0.83673 +2018 144 0.91516 +2018 145 0.76132 +2018 146 0.83832 +2018 147 0.66215 +2018 148 0.74023 +2018 149 0.78763 +2018 150 0.87001 +2018 151 0.91969 +2018 152 0.83491 +2018 153 0.98004 +2018 154 0.97458 +2018 155 0.92813 +2018 156 0.85792 +2018 157 0.80034 +2018 158 0.81692 +2018 159 0.88400 +2018 160 0.92343 +2018 161 0.92538 +2018 162 0.94204 +2018 163 0.96672 +2018 164 0.89830 +2018 165 0.88308 +2018 166 0.94127 +2018 167 0.89217 +2018 168 0.96178 +2018 169 0.89855 +2018 170 0.76638 +2018 171 0.73523 +2018 172 0.82059 +2018 173 0.89065 +2018 174 0.89922 +2018 175 0.91146 +2018 176 0.80836 +2018 177 0.73311 +2018 178 0.88150 +2018 179 0.85045 +2018 180 0.89146 +2018 181 0.90891 +2018 182 0.89583 +2018 183 0.79240 +2018 184 0.84413 +2018 185 0.89212 +2018 186 0.88070 +2018 187 0.92369 +2018 188 0.92793 +2018 189 0.92597 +2018 190 0.91148 +2018 191 0.85978 +2018 192 0.83665 +2018 193 0.97470 +2018 194 0.90654 +2018 195 0.92904 +2018 196 0.96054 +2018 197 0.87863 +2018 198 0.87220 +2018 199 0.97174 +2018 200 0.88639 +2018 201 0.88137 +2018 202 0.94193 +2018 203 0.82155 +2018 204 0.82477 +2018 205 0.86431 +2018 206 0.89803 +2018 207 0.88455 +2018 208 0.86956 +2018 209 0.91422 +2018 210 0.80471 +2018 211 0.87669 +2018 212 0.94287 +2018 213 0.90129 +2018 214 0.96213 +2018 215 0.96857 +2018 216 0.99234 +2018 217 0.90304 +2018 218 0.92748 +2018 219 0.96306 +2018 220 0.86142 +2018 221 0.82188 +2018 222 0.82222 +2018 223 0.82956 +2018 224 0.88761 +2018 225 0.95102 +2018 226 0.82367 +2018 227 0.82441 +2018 228 0.92363 +2018 229 0.83263 +2018 230 0.80375 +2018 231 0.95570 +2018 232 0.93666 +2018 233 0.90392 +2018 234 0.89228 +2018 235 0.74275 +2018 236 0.79750 +2018 237 0.81819 +2018 238 0.83651 +2018 239 0.86253 +2018 240 0.96542 +2018 241 0.96615 +2018 242 0.85164 +2018 243 0.83645 +2018 244 0.94093 +2018 245 0.90622 +2018 246 0.86939 +2018 247 0.90880 +2018 248 0.82831 +2018 249 0.75755 +2018 250 0.71630 +2018 251 0.73319 +2018 252 0.79449 +2018 253 0.74377 +2018 254 0.72287 +2018 255 0.81154 +2018 256 0.79114 +2018 257 0.81208 +2018 258 0.83576 +2018 259 0.93137 +2018 260 0.94814 +2018 261 0.85222 +2018 262 0.86415 +2018 263 0.81266 +2018 264 0.75425 +2018 265 0.73722 +2018 266 0.84115 +2018 267 0.84796 +2018 268 0.71274 +2018 269 0.72755 +2018 270 0.73538 +2018 271 0.75227 +2018 272 0.74878 +2018 273 0.77444 +2018 274 0.81029 +2018 275 0.76657 +2018 276 0.85226 +2018 277 0.76425 +2018 278 0.77083 +2018 279 0.86702 +2018 280 0.78614 +2018 281 0.72957 +2018 282 0.73095 +2018 283 0.80784 +2018 284 0.89310 +2018 285 0.62155 +2018 286 0.63978 +2018 287 0.65467 +2018 288 0.74138 +2018 289 0.71611 +2018 290 0.71053 +2018 291 0.58755 +2018 292 0.72873 +2018 293 0.71351 +2018 294 0.78256 +2018 295 0.78722 +2018 296 0.73776 +2018 297 0.77032 +2018 298 0.70615 +2018 299 0.82371 +2018 300 0.87213 +2018 301 0.89849 +2018 302 0.84413 +2018 303 0.71112 +2018 304 0.78803 +2018 305 0.53256 +2018 306 0.85416 +2018 307 0.69989 +2018 308 0.70688 +2018 309 0.73797 +2018 310 0.79619 +2018 311 0.90275 +2018 312 0.86250 +2018 313 0.73394 +2018 314 0.72001 +2018 315 0.81632 +2018 316 0.80659 +2018 317 0.82390 +2018 318 0.76037 +2018 319 0.72942 +2018 320 0.64176 +2018 321 0.72339 +2018 322 0.69365 +2018 323 0.71120 +2018 324 0.86679 +2018 325 0.69731 +2018 326 0.69001 +2018 327 0.90038 +2018 328 0.97657 +2018 329 0.88139 +2018 330 0.89689 +2018 331 0.81353 +2018 332 0.70717 +2018 333 0.82851 +2018 334 0.98439 +2018 335 0.95617 +2018 336 0.94942 +2018 337 0.92981 +2018 338 0.71417 +2018 339 0.76080 +2018 340 0.57636 +2018 341 0.70904 +2018 342 0.78043 +2018 343 0.72040 +2018 344 0.91703 +2018 345 0.89448 +2018 346 0.86590 +2018 347 0.86250 +2018 348 0.90011 +2018 349 0.77985 +2018 350 0.82047 +2018 351 0.72649 +2018 352 0.73165 +2018 353 0.81761 +2018 354 0.75490 +2018 355 0.71987 +2018 356 0.84852 +2018 357 0.98049 +2018 358 0.90711 +2018 359 0.76112 +2018 360 0.85189 +2018 361 0.89093 +2018 362 0.82652 +2018 363 0.76000 +2018 364 0.80304 +2018 365 0.85063 +2019 1 0.78952 +2019 2 0.78775 +2019 3 0.68151 +2019 4 0.74598 +2019 5 0.73711 +2019 6 0.71346 +2019 7 0.62775 +2019 8 0.79594 +2019 9 0.78238 +2019 10 0.71602 +2019 11 0.70697 +2019 12 0.86090 +2019 13 0.90015 +2019 14 0.83695 +2019 15 0.83254 +2019 16 0.73076 +2019 17 0.77344 +2019 18 0.77535 +2019 19 0.71164 +2019 20 0.68658 +2019 21 0.65428 +2019 22 0.73553 +2019 23 0.81794 +2019 24 0.76158 +2019 25 0.71834 +2019 26 0.79079 +2019 27 0.75880 +2019 28 0.73534 +2019 29 0.75706 +2019 30 0.78700 +2019 31 0.73447 +2019 32 0.72391 +2019 33 0.59207 +2019 34 0.68043 +2019 35 0.63529 +2019 36 0.65377 +2019 37 0.56378 +2019 38 0.61165 +2019 39 0.66463 +2019 40 0.61687 +2019 41 0.63237 +2019 42 0.67463 +2019 43 0.62791 +2019 44 0.75292 +2019 45 0.64140 +2019 46 0.53047 +2019 47 0.69063 +2019 48 0.65392 +2019 49 0.70145 +2019 50 0.69821 +2019 51 0.82581 +2019 52 0.93639 +2019 53 0.80911 +2019 54 0.66115 +2019 55 0.61614 +2019 56 0.64658 +2019 57 0.66487 +2019 58 0.58677 +2019 59 0.56185 +2019 60 0.56737 +2019 61 0.54502 +2019 62 0.58354 +2019 63 0.57454 +2019 64 0.70392 +2019 65 0.83492 +2019 66 0.94053 +2019 67 0.87926 +2019 68 0.75279 +2019 69 0.78322 +2019 70 0.78200 +2019 71 0.83862 +2019 72 0.80210 +2019 73 0.87152 +2019 74 0.78339 +2019 75 0.77491 +2019 76 0.87912 +2019 77 0.87776 +2019 78 0.83092 +2019 79 0.74426 +2019 80 0.92712 +2019 81 0.92243 +2019 82 0.86452 +2019 83 0.83506 +2019 84 0.78406 +2019 85 0.80008 +2019 86 0.93848 +2019 87 0.84819 +2019 88 0.84680 +2019 89 0.93641 +2019 90 0.97062 +2019 91 0.71344 +2019 92 0.67310 +2019 93 0.70050 +2019 94 0.74316 +2019 95 0.76431 +2019 96 0.79313 +2019 97 0.77536 +2019 98 0.74056 +2019 99 0.80630 +2019 100 0.92460 +2019 101 0.78229 +2019 102 0.59051 +2019 103 0.72348 +2019 104 0.66141 +2019 105 0.68967 +2019 106 0.71838 +2019 107 0.75241 +2019 108 0.73887 +2019 109 0.75891 +2019 110 0.80087 +2019 111 0.96542 +2019 112 0.94681 +2019 113 0.87223 +2019 114 0.82534 +2019 115 0.80989 +2019 116 0.87615 +2019 117 0.94677 +2019 118 0.92973 +2019 119 0.68809 +2019 120 0.69816 +2019 121 0.76312 +2019 122 0.80041 +2019 123 0.87209 +2019 124 0.84959 +2019 125 0.83763 +2019 126 0.85843 +2019 127 0.89032 +2019 128 0.90975 +2019 129 0.93709 +2019 130 0.88785 +2019 131 0.94972 +2019 132 0.81752 +2019 133 0.77905 +2019 134 0.84737 +2019 135 0.77463 +2019 136 0.71110 +2019 137 0.80416 +2019 138 0.83382 +2019 139 0.81603 +2019 140 0.87387 +2019 141 0.86080 +2019 142 0.83952 +2019 143 0.87391 +2019 144 0.91004 +2019 145 0.87338 +2019 146 0.94615 +2019 147 0.98038 +2019 148 0.83709 +2019 149 0.88994 +2019 150 0.94790 +2019 151 0.87904 +2019 152 0.75546 +2019 153 0.76321 +2019 154 0.86672 +2019 155 0.94815 +2019 156 0.81380 +2019 157 0.83261 +2019 158 0.79034 +2019 159 0.83747 +2019 160 0.85784 +2019 161 0.91927 +2019 162 0.99015 +2019 163 0.93684 +2019 164 0.92625 +2019 165 0.89942 +2019 166 0.82459 +2019 167 0.78243 +2019 168 0.79427 +2019 169 0.79842 +2019 170 0.86726 +2019 171 0.98652 +2019 172 0.91121 +2019 173 0.95973 +2019 174 0.83149 +2019 175 0.83612 +2019 176 0.87343 +2019 177 0.90130 +2019 178 0.89629 +2019 179 0.85729 +2019 180 0.82507 +2019 181 0.94942 +2019 182 0.89757 +2019 183 0.97461 +2019 184 0.99763 +2019 185 0.85802 +2019 186 0.80608 +2019 187 0.81614 +2019 188 0.79435 +2019 189 0.89726 +2019 190 0.89153 +2019 191 0.90356 +2019 192 0.97704 +2019 193 0.93173 +2019 194 0.95608 +2019 195 0.84708 +2019 196 0.90081 +2019 197 0.89385 +2019 198 0.84536 +2019 199 0.96287 +2019 200 0.90808 +2019 201 0.86779 +2019 202 0.81272 +2019 203 0.88953 +2019 204 0.91742 +2019 205 0.91969 +2019 206 0.94175 +2019 207 0.87692 +2019 208 0.88541 +2019 209 0.93621 +2019 210 0.93799 +2019 211 0.86579 +2019 212 0.75323 +2019 213 0.80068 +2019 214 0.76779 +2019 215 0.86965 +2019 216 0.79038 +2019 217 0.78241 +2019 218 0.83561 +2019 219 0.89299 +2019 220 0.99300 +2019 221 0.93909 +2019 222 0.98068 +2019 223 0.92643 +2019 224 0.87937 +2019 225 0.81286 +2019 226 0.81092 +2019 227 0.82660 +2019 228 0.85931 +2019 229 0.73016 +2019 230 0.72049 +2019 231 0.77608 +2019 232 0.90891 +2019 233 0.91470 +2019 234 0.98437 +2019 235 0.77187 +2019 236 0.78172 +2019 237 0.83921 +2019 238 0.74565 +2019 239 0.79160 +2019 240 0.82890 +2019 241 0.80469 +2019 242 0.77903 +2019 243 0.81620 +2019 244 0.83568 +2019 245 0.93153 +2019 246 0.98817 +2019 247 0.92052 +2019 248 0.86454 +2019 249 0.72429 +2019 250 0.94960 +2019 251 0.95034 +2019 252 0.88665 +2019 253 0.73041 +2019 254 0.79848 +2019 255 0.81631 +2019 256 0.88835 +2019 257 0.80900 +2019 258 0.74265 +2019 259 0.86072 +2019 260 0.74932 +2019 261 0.81886 +2019 262 0.71952 +2019 263 0.73260 +2019 264 0.78323 +2019 265 0.78278 +2019 266 0.92016 +2019 267 0.86410 +2019 268 0.71836 +2019 269 0.78663 +2019 270 0.79719 +2019 271 0.82042 +2019 272 0.91962 +2019 273 0.87486 +2019 274 0.81458 +2019 275 0.68839 +2019 276 0.77041 +2019 277 0.83144 +2019 278 0.83281 +2019 279 0.80800 +2019 280 0.84439 +2019 281 0.83076 +2019 282 0.94342 +2019 283 0.99047 +2019 284 0.86744 +2019 285 0.79856 +2019 286 0.87568 +2019 287 0.95098 +2019 288 0.79685 +2019 289 0.76469 +2019 290 0.84745 +2019 291 0.87799 +2019 292 0.76125 +2019 293 0.79688 +2019 294 0.73652 +2019 295 0.73448 +2019 296 0.76322 +2019 297 0.69258 +2019 298 0.75138 +2019 299 0.74633 +2019 300 0.81870 +2019 301 0.72748 +2019 302 0.67719 +2019 303 0.66216 +2019 304 0.66506 +2019 305 0.68286 +2019 306 0.68655 +2019 307 0.63796 +2019 308 0.59083 +2019 309 0.59859 +2019 310 0.69743 +2019 311 0.79176 +2019 312 0.82197 +2019 313 0.97653 +2019 314 0.75941 +2019 315 0.70090 +2019 316 0.73286 +2019 317 0.79804 +2019 318 0.72051 +2019 319 0.80418 +2019 320 0.82104 +2019 321 0.90368 +2019 322 0.68657 +2019 323 0.72493 +2019 324 0.62319 +2019 325 0.72619 +2019 326 0.72929 +2019 327 0.75704 +2019 328 0.74600 +2019 329 0.85073 +2019 330 0.72578 +2019 331 0.75881 +2019 332 0.83515 +2019 333 0.84942 +2019 334 0.81178 +2019 335 0.84057 +2019 336 0.87664 +2019 337 0.71538 +2019 338 0.67827 +2019 339 0.77519 +2019 340 0.81446 +2019 341 0.93815 +2019 342 0.68391 +2019 343 0.57646 +2019 344 0.66670 +2019 345 0.83634 +2019 346 0.78409 +2019 347 0.73089 +2019 348 0.77519 +2019 349 0.95353 +2019 350 0.96148 +2019 351 0.81942 +2019 352 0.67866 +2019 353 0.81842 +2019 354 0.65378 +2019 355 0.62023 +2019 356 0.74635 +2019 357 0.75612 +2019 358 0.89614 +2019 359 0.89762 +2019 360 0.72652 +2019 361 0.65043 +2019 362 0.68538 +2019 363 0.75534 +2019 364 0.73597 +2019 365 0.76364 +2020 1 0.68858 +2020 2 0.67717 +2020 3 0.59993 +2020 4 0.68685 +2020 5 0.65970 +2020 6 0.58086 +2020 7 0.77404 +2020 8 0.67907 +2020 9 0.64754 +2020 10 0.71785 +2020 11 0.68072 +2020 12 0.74247 +2020 13 0.82469 +2020 14 0.59496 +2020 15 0.59760 +2020 16 0.59785 +2020 17 0.66440 +2020 18 0.64035 +2020 19 0.63414 +2020 20 0.76425 +2020 21 0.71782 +2020 22 0.66665 +2020 23 0.72535 +2020 24 0.65532 +2020 25 0.71257 +2020 26 0.74253 +2020 27 0.74855 +2020 28 0.75868 +2020 29 0.74392 +2020 30 0.62463 +2020 31 0.56512 +2020 32 0.65006 +2020 33 0.58792 +2020 34 0.66235 +2020 35 0.55021 +2020 36 0.53489 +2020 37 0.57085 +2020 38 0.69958 +2020 39 0.63640 +2020 40 0.61199 +2020 41 0.61199 +2020 42 0.66890 +2020 43 0.64939 +2020 44 0.69865 +2020 45 0.78277 +2020 46 0.76800 +2020 47 0.77831 +2020 48 0.84261 +2020 49 0.80386 +2020 50 0.71177 +2020 51 0.80475 +2020 52 0.91005 +2020 53 0.67823 +2020 54 0.63132 +2020 55 0.68227 +2020 56 0.71801 +2020 57 0.74964 +2020 58 0.75628 +2020 59 0.78205 +2020 60 0.76871 +2020 61 0.80632 +2020 62 0.76376 +2020 63 0.92377 +2020 64 0.66011 +2020 65 0.63320 +2020 66 0.66490 +2020 67 0.70546 +2020 68 0.84091 +2020 69 0.73629 +2020 70 0.78506 +2020 71 0.63910 +2020 72 0.67596 +2020 73 0.67449 +2020 74 0.69939 +2020 75 0.75683 +2020 76 0.63307 +2020 77 0.57267 +2020 78 0.72763 +2020 79 0.71196 +2020 80 0.65943 +2020 81 0.85964 +2020 82 0.90474 +2020 83 0.66773 +2020 84 0.70764 +2020 85 0.76019 +2020 86 0.83911 +2020 87 0.74903 +2020 88 0.73506 +2020 89 0.84760 +2020 90 0.79054 +2020 91 0.77527 +2020 92 0.72285 +2020 93 0.67745 +2020 94 0.68588 +2020 95 0.65896 +2020 96 0.67853 +2020 97 0.68101 +2020 98 0.85499 +2020 99 0.70941 +2020 100 0.64270 +2020 101 0.75771 +2020 102 0.78179 +2020 103 0.85157 +2020 104 0.71643 +2020 105 0.70643 +2020 106 0.78429 +2020 107 0.90014 +2020 108 0.90760 +2020 109 0.88403 +2020 110 0.84783 +2020 111 0.87312 +2020 112 0.81044 +2020 113 0.89362 +2020 114 0.83966 +2020 115 0.79102 +2020 116 0.77504 +2020 117 0.81846 +2020 118 0.73087 +2020 119 0.76173 +2020 120 0.80558 +2020 121 0.77408 +2020 122 0.79264 +2020 123 0.94289 +2020 124 0.93852 +2020 125 0.85220 +2020 126 0.74620 +2020 127 0.80094 +2020 128 0.80875 +2020 129 0.84858 +2020 130 0.87274 +2020 131 0.82797 +2020 132 0.79897 +2020 133 0.73810 +2020 134 0.78915 +2020 135 0.82319 +2020 136 0.80591 +2020 137 0.77197 +2020 138 0.77802 +2020 139 0.74642 +2020 140 0.73308 +2020 141 0.77696 +2020 142 0.80850 +2020 143 0.76936 +2020 144 0.94897 +2020 145 0.99033 +2020 146 0.86457 +2020 147 0.77919 +2020 148 0.83023 +2020 149 0.91955 +2020 150 0.83741 +2020 151 0.78932 +2020 152 0.97128 +2020 153 0.89131 +2020 154 0.89422 +2020 155 0.94541 +2020 156 0.92785 +2020 157 0.86664 +2020 158 0.77869 +2020 159 0.81691 +2020 160 0.82486 +2020 161 0.86302 +2020 162 0.87069 +2020 163 0.86078 +2020 164 0.79074 +2020 165 0.79493 +2020 166 0.84513 +2020 167 0.85069 +2020 168 0.86974 +2020 169 0.94066 +2020 170 0.98030 +2020 171 0.98346 +2020 172 0.91954 +2020 173 0.81492 +2020 174 0.85942 +2020 175 0.82302 +2020 176 0.95021 +2020 177 0.90835 +2020 178 0.97625 +2020 179 0.92995 +2020 180 0.92258 +2020 181 0.83582 +2020 182 0.73656 +2020 183 0.75904 +2020 184 0.80649 +2020 185 0.88202 +2020 186 0.87955 +2020 187 0.95283 +2020 188 0.94015 +2020 189 0.91421 +2020 190 0.75226 +2020 191 0.75889 +2020 192 0.89797 +2020 193 0.85081 +2020 194 0.94707 +2020 195 0.97969 +2020 196 0.99082 +2020 197 0.91471 +2020 198 0.89053 +2020 199 0.93302 +2020 200 0.84551 +2020 201 0.92348 +2020 202 0.97217 +2020 203 0.86467 +2020 204 0.79931 +2020 205 0.76386 +2020 206 0.78211 +2020 207 0.80528 +2020 208 0.81841 +2020 209 0.86399 +2020 210 0.85345 +2020 211 0.87947 +2020 212 0.83810 +2020 213 0.80801 +2020 214 0.82425 +2020 215 0.82587 +2020 216 0.83201 +2020 217 0.88362 +2020 218 0.94429 +2020 219 0.94701 +2020 220 0.79461 +2020 221 0.81869 +2020 222 0.81444 +2020 223 0.96979 +2020 224 0.83736 +2020 225 0.78784 +2020 226 0.74401 +2020 227 0.74318 +2020 228 0.78336 +2020 229 0.80262 +2020 230 0.77041 +2020 231 0.94740 +2020 232 0.93518 +2020 233 0.93277 +2020 234 0.85454 +2020 235 0.96756 +2020 236 0.92108 +2020 237 0.91558 +2020 238 0.82968 +2020 239 0.85496 +2020 240 0.82752 +2020 241 0.90221 +2020 242 0.83128 +2020 243 0.81885 +2020 244 0.82939 +2020 245 0.73151 +2020 246 0.66824 +2020 247 0.73546 +2020 248 0.77843 +2020 249 0.85422 +2020 250 0.77816 +2020 251 0.73530 +2020 252 0.82656 +2020 253 0.77963 +2020 254 0.69273 +2020 255 0.64548 +2020 256 0.76981 +2020 257 0.78802 +2020 258 0.82851 +2020 259 0.68772 +2020 260 0.76440 +2020 261 0.84863 +2020 262 0.72770 +2020 263 0.73630 +2020 264 0.82003 +2020 265 0.82858 +2020 266 0.86309 +2020 267 0.96217 +2020 268 0.81915 +2020 269 0.86285 +2020 270 0.92199 +2020 271 0.77121 +2020 272 0.72458 +2020 273 0.68638 +2020 274 0.85204 +2020 275 0.80540 +2020 276 0.76785 +2020 277 0.81468 +2020 278 0.80612 +2020 279 0.79413 +2020 280 0.80995 +2020 281 0.67975 +2020 282 0.63296 +2020 283 0.70690 +2020 284 0.73347 +2020 285 0.89169 +2020 286 0.98323 +2020 287 0.77090 +2020 288 0.84486 +2020 289 0.67367 +2020 290 0.69586 +2020 291 0.79354 +2020 292 0.91210 +2020 293 0.90966 +2020 294 0.94113 +2020 295 0.85094 +2020 296 0.84309 +2020 297 0.87615 +2020 298 0.86339 +2020 299 0.84780 +2020 300 0.79977 +2020 301 0.82814 +2020 302 0.85647 +2020 303 0.91953 +2020 304 0.92017 +2020 305 0.76686 +2020 306 0.76411 +2020 307 0.91059 +2020 308 0.86763 +2020 309 0.98337 +2020 310 0.83864 +2020 311 0.87055 +2020 312 0.85981 +2020 313 0.90731 +2020 314 0.94748 +2020 315 0.88061 +2020 316 0.74442 +2020 317 0.79697 +2020 318 0.74814 +2020 319 0.74808 +2020 320 0.77823 +2020 321 0.72910 +2020 322 0.85155 +2020 323 0.60673 +2020 324 0.64794 +2020 325 0.74868 +2020 326 0.67148 +2020 327 0.57046 +2020 328 0.76565 +2020 329 0.97024 +2020 330 0.87400 +2020 331 0.76303 +2020 332 0.61717 +2020 333 0.87437 +2020 334 0.90713 +2020 335 0.75897 +2020 336 0.66060 +2020 337 0.74167 +2020 338 0.68946 +2020 339 0.72949 +2020 340 0.68200 +2020 341 0.77806 +2020 342 0.88656 +2020 343 0.82442 +2020 344 0.87834 +2020 345 0.75678 +2020 346 0.65141 +2020 347 0.66869 +2020 348 0.66526 +2020 349 0.69436 +2020 350 0.71450 +2020 351 0.70257 +2020 352 0.71836 +2020 353 0.76513 +2020 354 0.72038 +2020 355 0.81174 +2020 356 0.80522 +2020 357 0.89620 +2020 358 0.86185 +2020 359 0.66118 +2020 360 0.63300 +2020 361 0.70256 +2020 362 0.65593 +2020 363 0.60850 +2020 364 0.65113 +2020 365 0.62281 +2020 366 0.75318 +2021 1 0.89689 +2021 2 0.94527 +2021 3 0.87507 +2021 4 0.79155 +2021 5 0.72969 +2021 6 0.79058 +2021 7 0.89603 +2021 8 0.84074 +2021 9 0.82548 +2021 10 0.70560 +2021 11 0.76361 +2021 12 0.77357 +2021 13 0.69988 +2021 14 0.68856 +2021 15 0.74446 +2021 16 0.81626 +2021 17 0.68755 +2021 18 0.76526 +2021 19 0.75960 +2021 20 0.70965 +2021 21 0.68146 +2021 22 0.71076 +2021 23 0.76212 +2021 24 0.67674 +2021 25 0.66930 +2021 26 0.78494 +2021 27 0.75325 +2021 28 0.53989 +2021 29 0.53599 +2021 30 0.58035 +2021 31 0.62062 +2021 32 0.61764 +2021 33 0.71916 +2021 34 0.59935 +2021 35 0.51222 +2021 36 0.59852 +2021 37 0.63632 +2021 38 0.74360 +2021 39 0.86168 +2021 40 0.94245 +2021 41 0.76934 +2021 42 0.57128 +2021 43 0.72125 +2021 44 0.74426 +2021 45 0.91884 +2021 46 0.87531 +2021 47 0.63385 +2021 48 0.67075 +2021 49 0.73944 +2021 50 0.72900 +2021 51 0.82457 +2021 52 0.79086 +2021 53 0.78831 +2021 54 0.84290 +2021 55 0.81573 +2021 56 0.79795 +2021 57 0.80551 +2021 58 0.81345 +2021 59 0.81428 +2021 60 0.87760 +2021 61 0.93646 +2021 62 0.94916 +2021 63 0.84176 +2021 64 0.80425 +2021 65 0.83446 +2021 66 0.68269 +2021 67 0.73065 +2021 68 0.79606 +2021 69 0.90017 +2021 70 0.70261 +2021 71 0.68150 +2021 72 0.76496 +2021 73 0.87873 +2021 74 0.84634 +2021 75 0.66526 +2021 76 0.60467 +2021 77 0.65060 +2021 78 0.65254 +2021 79 0.68985 +2021 80 0.67349 +2021 81 0.69305 +2021 82 0.74075 +2021 83 0.72590 +2021 84 0.79305 +2021 85 0.74617 +2021 86 0.72587 +2021 87 0.93328 +2021 88 0.96722 +2021 89 0.97687 +2021 90 0.83147 +2021 91 0.74701 +2021 92 0.70294 +2021 93 0.77069 +2021 94 0.79830 +2021 95 0.77296 +2021 96 0.84333 +2021 97 0.83171 +2021 98 0.88022 +2021 99 0.91415 +2021 100 0.91820 +2021 101 0.94077 +2021 102 0.88532 +2021 103 0.88950 +2021 104 0.83926 +2021 105 0.79511 +2021 106 0.76245 +2021 107 0.77014 +2021 108 0.80633 +2021 109 0.90717 +2021 110 0.90795 +2021 111 0.82918 +2021 112 0.86620 +2021 113 0.81845 +2021 114 0.76769 +2021 115 0.76554 +2021 116 0.83244 +2021 117 0.77286 +2021 118 0.79194 +2021 119 0.85354 +2021 120 0.69525 +2021 121 0.69067 +2021 122 0.75340 +2021 123 0.78901 +2021 124 0.78904 +2021 125 0.86947 +2021 126 0.83206 +2021 127 0.87476 +2021 128 0.91442 +2021 129 0.97418 +2021 130 0.92953 +2021 131 0.91337 +2021 132 0.75506 +2021 133 0.75803 +2021 134 0.89245 +2021 135 0.82196 +2021 136 0.92415 +2021 137 0.84443 +2021 138 0.79340 +2021 139 0.86733 +2021 140 0.90603 +2021 141 0.83519 +2021 142 0.72574 +2021 143 0.70233 +2021 144 0.70051 +2021 145 0.73775 +2021 146 0.81174 +2021 147 0.87007 +2021 148 0.97783 +2021 149 0.95295 +2021 150 0.89174 +2021 151 0.78609 +2021 152 0.85163 +2021 153 0.90631 +2021 154 0.89332 +2021 155 0.89562 +2021 156 0.94431 +2021 157 0.90190 +2021 158 0.76308 +2021 159 0.83849 +2021 160 0.91877 +2021 161 0.92773 +2021 162 0.91603 +2021 163 0.91617 +2021 164 0.98541 +2021 165 0.99253 +2021 166 0.91505 +2021 167 0.91357 +2021 168 0.92807 +2021 169 0.98598 +2021 170 0.97922 +2021 171 0.88362 +2021 172 0.73574 +2021 173 0.77419 +2021 174 0.83350 +2021 175 0.88320 +2021 176 0.92309 +2021 177 0.98226 +2021 178 0.87384 +2021 179 0.67324 +2021 180 0.73172 +2021 181 0.79075 +2021 182 0.84162 +2021 183 0.87061 +2021 184 0.87860 +2021 185 0.85877 +2021 186 0.91567 +2021 187 0.94530 +2021 188 0.80673 +2021 189 0.81008 +2021 190 0.78539 +2021 191 0.78091 +2021 192 0.72538 +2021 193 0.72607 +2021 194 0.77731 +2021 195 0.82418 +2021 196 0.82957 +2021 197 0.94856 +2021 198 0.92420 +2021 199 0.91743 +2021 200 0.84689 +2021 201 0.94190 +2021 202 0.93974 +2021 203 0.85516 +2021 204 0.86822 +2021 205 0.90915 +2021 206 0.97138 +2021 207 0.88391 +2021 208 0.78310 +2021 209 0.87663 +2021 210 0.92365 +2021 211 0.90059 +2021 212 0.81328 +2021 213 0.86074 +2021 214 0.86185 +2021 215 0.70179 +2021 216 0.91195 +2021 217 0.96391 +2021 218 0.82829 +2021 219 0.87404 +2021 220 0.68692 +2021 221 0.68480 +2021 222 0.81316 +2021 223 0.83719 +2021 224 0.92148 +2021 225 0.80919 +2021 226 0.74828 +2021 227 0.82843 +2021 228 0.90924 +2021 229 0.91423 +2021 230 0.79356 +2021 231 0.77756 +2021 232 0.74138 +2021 233 0.78030 +2021 234 0.79250 +2021 235 0.81970 +2021 236 0.71224 +2021 237 0.75735 +2021 238 0.87792 +2021 239 0.93982 +2021 240 0.95817 +2021 241 0.81685 +2021 242 0.72338 +2021 243 0.71127 +2021 244 0.75893 +2021 245 0.77337 +2021 246 0.77231 +2021 247 0.73413 +2021 248 0.77533 +2021 249 0.96286 +2021 250 0.85977 +2021 251 0.77374 +2021 252 0.82730 +2021 253 0.73343 +2021 254 0.77506 +2021 255 0.83964 +2021 256 0.91975 +2021 257 0.94491 +2021 258 0.98679 +2021 259 0.73147 +2021 260 0.70946 +2021 261 0.79775 +2021 262 0.78861 +2021 263 0.79872 +2021 264 0.88428 +2021 265 0.96381 +2021 266 0.79081 +2021 267 0.79130 +2021 268 0.90230 +2021 269 0.76466 +2021 270 0.77749 +2021 271 0.75072 +2021 272 0.85720 +2021 273 0.79148 +2021 274 0.80682 +2021 275 0.83103 +2021 276 0.94814 +2021 277 0.91962 +2021 278 0.91954 +2021 279 0.97485 +2021 280 0.89022 +2021 281 0.75448 +2021 282 0.73189 +2021 283 0.74307 +2021 284 0.80230 +2021 285 0.66519 +2021 286 0.65727 +2021 287 0.70092 +2021 288 0.75086 +2021 289 0.85064 +2021 290 0.85491 +2021 291 0.76314 +2021 292 0.76293 +2021 293 0.78498 +2021 294 0.74924 +2021 295 0.75635 +2021 296 0.90297 +2021 297 0.93753 +2021 298 0.89128 +2021 299 0.92336 +2021 300 0.91862 +2021 301 0.93192 +2021 302 0.86482 +2021 303 0.83492 +2021 304 0.72667 +2021 305 0.73114 +2021 306 0.76130 +2021 307 0.69403 +2021 308 0.83789 +2021 309 0.85608 +2021 310 0.81285 +2021 311 0.82220 +2021 312 0.84523 +2021 313 0.83962 +2021 314 0.78449 +2021 315 0.79233 +2021 316 0.97558 +2021 317 0.93676 +2021 318 0.79066 +2021 319 0.79940 +2021 320 0.85394 +2021 321 0.69158 +2021 322 0.73350 +2021 323 0.74442 +2021 324 0.83022 +2021 325 0.84181 +2021 326 0.77212 +2021 327 0.65465 +2021 328 0.73877 +2021 329 0.70003 +2021 330 0.71666 +2021 331 0.69590 +2021 332 0.67442 +2021 333 0.92169 +2021 334 0.86774 +2021 335 0.76877 +2021 336 0.80334 +2021 337 0.89887 +2021 338 0.83499 +2021 339 0.86463 +2021 340 0.85879 +2021 341 0.80517 +2021 342 0.75352 +2021 343 0.73353 +2021 344 0.77961 +2021 345 0.96923 +2021 346 0.94512 +2021 347 0.97432 +2021 348 0.95770 +2021 349 0.87370 +2021 350 0.74955 +2021 351 0.65915 +2021 352 0.71078 +2021 353 0.74439 +2021 354 0.75984 +2021 355 0.72310 +2021 356 0.69813 +2021 357 0.68182 +2021 358 0.74493 +2021 359 0.73886 +2021 360 0.75602 +2021 361 0.85452 +2021 362 0.68038 +2021 363 0.67412 +2021 364 0.62425 +2021 365 0.61278 +2022 1 0.66759 +2022 2 0.59755 +2022 3 0.59394 +2022 4 0.66466 +2022 5 0.77926 +2022 6 0.65370 +2022 7 0.62055 +2022 8 0.73780 +2022 9 0.68361 +2022 10 0.66337 +2022 11 0.66347 +2022 12 0.62599 +2022 13 0.59829 +2022 14 0.55785 +2022 15 0.56493 +2022 16 0.52959 +2022 17 0.55180 +2022 18 0.65994 +2022 19 0.71077 +2022 20 0.50178 +2022 21 0.61249 +2022 22 0.66591 +2022 23 0.91913 +2022 24 0.84174 +2022 25 0.81530 +2022 26 0.56848 +2022 27 0.53863 +2022 28 0.67972 +2022 29 0.66119 +2022 30 0.73421 +2022 31 0.71033 +2022 32 0.80453 +2022 33 0.80240 +2022 34 0.75594 +2022 35 0.81546 +2022 36 0.97933 +2022 37 0.95332 +2022 38 0.88605 +2022 39 0.88709 +2022 40 0.90698 +2022 41 0.97270 +2022 42 0.96770 +2022 43 0.83948 +2022 44 0.70800 +2022 45 0.69287 +2022 46 0.75840 +2022 47 0.79844 +2022 48 0.78314 +2022 49 0.80120 +2022 50 0.80603 +2022 51 0.87269 +2022 52 0.82782 +2022 53 0.76155 +2022 54 0.67283 +2022 55 0.66962 +2022 56 0.73568 +2022 57 0.67379 +2022 58 0.62754 +2022 59 0.69434 +2022 60 0.66385 +2022 61 0.67326 +2022 62 0.74079 +2022 63 0.76281 +2022 64 0.76192 +2022 65 0.74187 +2022 66 0.77989 +2022 67 0.75157 +2022 68 0.73940 +2022 69 0.70117 +2022 70 0.71878 +2022 71 0.69367 +2022 72 0.66418 +2022 73 0.70236 +2022 74 0.60996 +2022 75 0.61993 +2022 76 0.67321 +2022 77 0.87868 +2022 78 0.74465 +2022 79 0.95541 +2022 80 0.96988 +2022 81 0.99018 +2022 82 0.89834 +2022 83 0.83303 +2022 84 0.66069 +2022 85 0.66729 +2022 86 0.73252 +2022 87 0.77741 +2022 88 0.76919 +2022 89 0.78476 +2022 90 0.84898 +2022 91 0.86439 +2022 92 0.84376 +2022 93 0.84332 +2022 94 0.89584 +2022 95 0.93795 +2022 96 0.69617 +2022 97 0.70886 +2022 98 0.72785 +2022 99 0.75705 +2022 100 0.77787 +2022 101 0.84151 +2022 102 0.84140 +2022 103 0.68749 +2022 104 0.82222 +2022 105 0.84408 +2022 106 0.74956 +2022 107 0.81285 +2022 108 0.93251 +2022 109 0.92388 +2022 110 0.90661 +2022 111 0.92366 +2022 112 0.65093 +2022 113 0.78775 +2022 114 0.80888 +2022 115 0.83006 +2022 116 0.78994 +2022 117 0.77777 +2022 118 0.78286 +2022 119 0.82612 +2022 120 0.89322 +2022 121 0.88199 +2022 122 0.88652 +2022 123 0.86370 +2022 124 0.84435 +2022 125 0.85561 +2022 126 0.82868 +2022 127 0.86477 +2022 128 0.90317 +2022 129 0.79561 +2022 130 0.69401 +2022 131 0.76365 +2022 132 0.81188 +2022 133 0.83838 +2022 134 0.95421 +2022 135 0.93768 +2022 136 0.95012 +2022 137 0.91984 +2022 138 0.96835 +2022 139 0.86946 +2022 140 0.73622 +2022 141 0.76689 +2022 142 0.78411 +2022 143 0.85515 +2022 144 0.80854 +2022 145 0.81797 +2022 146 0.78354 +2022 147 0.87185 +2022 148 0.85661 +2022 149 0.97280 +2022 150 0.95049 +2022 151 0.94169 +2022 152 0.94562 +2022 153 0.94170 +2022 154 0.82236 +2022 155 0.85488 +2022 156 0.93749 +2022 157 0.98217 +2022 158 0.90335 +2022 159 0.94048 +2022 160 0.90410 +2022 161 0.93219 +2022 162 0.94497 +2022 163 0.88362 +2022 164 0.79406 +2022 165 0.81145 +2022 166 0.81752 +2022 167 0.91228 +2022 168 0.96131 +2022 169 0.84698 +2022 170 0.70785 +2022 171 0.73402 +2022 172 0.79955 +2022 173 0.84957 +2022 174 0.87804 +2022 175 0.95482 +2022 176 0.92012 +2022 177 0.86772 +2022 178 0.86522 +2022 179 0.95124 +2022 180 0.85824 +2022 181 0.77366 +2022 182 0.78745 +2022 183 0.86407 +2022 184 0.77892 +2022 185 0.89804 +2022 186 0.88151 +2022 187 0.86637 +2022 188 0.98923 +2022 189 0.90122 +2022 190 0.93619 +2022 191 0.93187 +2022 192 0.97093 +2022 193 0.91673 +2022 194 0.91836 +2022 195 0.89859 +2022 196 0.80844 +2022 197 0.84612 +2022 198 0.84233 +2022 199 0.90534 +2022 200 0.97845 +2022 201 0.86962 +2022 202 0.73031 +2022 203 0.79203 +2022 204 0.81202 +2022 205 0.91428 +2022 206 0.95844 +2022 207 0.90118 +2022 208 0.92305 +2022 209 0.84412 +2022 210 0.87863 +2022 211 0.86692 +2022 212 0.80012 +2022 213 0.83750 +2022 214 0.85137 +2022 215 0.87554 +2022 216 0.83471 +2022 217 0.86173 +2022 218 0.96298 +2022 219 0.85700 +2022 220 0.91725 +2022 221 0.76930 +2022 222 0.69909 +2022 223 0.71852 +2022 224 0.76542 +2022 225 0.80027 +2022 226 0.81664 +2022 227 0.91562 +2022 228 0.93767 +2022 229 0.99480 +2022 230 0.97961 +2022 231 0.94281 +2022 232 0.89755 +2022 233 0.88917 +2022 234 0.86243 +2022 235 0.78877 +2022 236 0.92776 +2022 237 0.94897 +2022 238 0.80028 +2022 239 0.71079 +2022 240 0.72664 +2022 241 0.73201 +2022 242 0.76431 +2022 243 0.79175 +2022 244 0.81638 +2022 245 0.82874 +2022 246 0.77776 +2022 247 0.92383 +2022 248 0.64612 +2022 249 0.72194 +2022 250 0.79591 +2022 251 0.88865 +2022 252 0.95235 +2022 253 0.88581 +2022 254 0.93573 +2022 255 0.83710 +2022 256 0.74666 +2022 257 0.73724 +2022 258 0.71160 +2022 259 0.76925 +2022 260 0.77223 +2022 261 0.87868 +2022 262 0.89001 +2022 263 0.94517 +2022 264 0.92926 +2022 265 0.88547 +2022 266 0.81498 +2022 267 0.74951 +2022 268 0.70545 +2022 269 0.75888 +2022 270 0.78227 +2022 271 0.88580 +2022 272 0.98886 +2022 273 0.99193 +2022 274 0.97584 +2022 275 0.92684 +2022 276 0.68851 +2022 277 0.74690 +2022 278 0.60718 +2022 279 0.59654 +2022 280 0.75870 +2022 281 0.74219 +2022 282 0.77734 +2022 283 0.76938 +2022 284 0.86475 +2022 285 0.87882 +2022 286 0.72288 +2022 287 0.68324 +2022 288 0.67067 +2022 289 0.79636 +2022 290 0.75741 +2022 291 0.67995 +2022 292 0.73870 +2022 293 0.65653 +2022 294 0.60150 +2022 295 0.68297 +2022 296 0.70212 +2022 297 0.65440 +2022 298 0.75988 +2022 299 0.76235 +2022 300 0.83548 +2022 301 0.94147 +2022 302 0.99698 +2022 303 0.97138 +2022 304 0.83835 +2022 305 0.85167 +2022 306 0.93306 +2022 307 0.77616 +2022 308 0.68755 +2022 309 0.70564 +2022 310 0.74517 +2022 311 0.72765 +2022 312 0.87541 +2022 313 0.72563 +2022 314 0.93666 +2022 315 0.90125 +2022 316 0.85832 +2022 317 0.80782 +2022 318 0.83076 +2022 319 0.90687 +2022 320 0.96153 +2022 321 0.90180 +2022 322 0.92019 +2022 323 0.93191 +2022 324 0.90451 +2022 325 0.91362 +2022 326 0.79150 +2022 327 0.84948 +2022 328 0.77071 +2022 329 0.71511 +2022 330 0.90229 +2022 331 0.75097 +2022 332 0.72950 +2022 333 0.91721 +2022 334 0.73543 +2022 335 0.66393 +2022 336 0.65669 +2022 337 0.70517 +2022 338 0.74834 +2022 339 0.75625 +2022 340 0.74933 +2022 341 0.68553 +2022 342 0.91789 +2022 343 0.95395 +2022 344 0.96550 +2022 345 0.79701 +2022 346 0.96244 +2022 347 0.93701 +2022 348 0.99398 +2022 349 0.94767 +2022 350 0.95661 +2022 351 0.95643 +2022 352 0.84878 +2022 353 0.93647 +2022 354 0.80811 +2022 355 0.86645 +2022 356 0.80597 +2022 357 0.76155 +2022 358 0.74548 +2022 359 0.80633 +2022 360 0.64897 +2022 361 0.66814 +2022 362 0.77757 +2022 363 0.67931 +2022 364 0.62084 +2022 365 0.62194 +2023 1 0.73635 +2023 2 0.76629 +2023 3 0.86057 +2023 4 0.91584 +2023 5 0.94676 +2023 6 0.97733 +2023 7 0.86937 +2023 8 0.76143 +2023 9 0.93837 +2023 10 0.93912 +2023 11 0.88838 +2023 12 0.70112 +2023 13 0.71968 +2023 14 0.72093 +2023 15 0.74446 +2023 16 0.81134 +2023 17 0.70481 +2023 18 0.79197 +2023 19 0.76710 +2023 20 0.72509 +2023 21 0.83136 +2023 22 0.74321 +2023 23 0.80241 +2023 24 0.78596 +2023 25 0.74842 +2023 26 0.96855 +2023 27 0.98393 +2023 28 0.97216 +2023 29 0.85172 +2023 30 0.88055 +2023 31 0.98791 +2023 32 0.98982 +2023 33 0.95341 +2023 34 0.89151 +2023 35 0.87356 +2023 36 0.92989 +2023 37 0.78049 +2023 38 0.73704 +2023 39 0.64792 +2023 40 0.68806 +2023 41 0.66861 +2023 42 0.86385 +2023 43 0.93421 +2023 44 0.89014 +2023 45 0.73117 +2023 46 0.85213 +2023 47 0.68326 +2023 48 0.71496 +2023 49 0.80938 +2023 50 0.77923 +2023 51 0.82658 +2023 52 0.83097 +2023 53 0.90300 +2023 54 0.89010 +2023 55 0.90075 +2023 56 0.80955 +2023 57 0.95718 +2023 58 0.82638 +2023 59 0.77029 +2023 60 0.78629 +2023 61 0.84829 +2023 62 0.81277 +2023 63 0.86831 +2023 64 0.75882 +2023 65 0.69239 +2023 66 0.75422 +2023 67 0.79827 +2023 68 0.91774 +2023 69 0.75042 +2023 70 0.75400 +2023 71 0.83474 +2023 72 0.65855 +2023 73 0.74714 +2023 74 0.77682 +2023 75 0.93711 +2023 76 0.82929 +2023 77 0.86465 +2023 78 0.79040 +2023 79 0.89336 +2023 80 0.73320 +2023 81 0.69919 +2023 82 0.74757 +2023 83 0.76889 +2023 84 0.81751 +2023 85 0.90113 +2023 86 0.81553 +2023 87 0.60679 +2023 88 0.65708 +2023 89 0.73568 +2023 90 0.86097 +2023 91 0.88871 +2023 92 0.74350 +2023 93 0.67808 +2023 94 0.76226 +2023 95 0.86670 +2023 96 0.73346 +2023 97 0.69797 +2023 98 0.82545 +2023 99 0.90776 +2023 100 0.90555 +2023 101 0.94050 +2023 102 0.86044 +2023 103 0.79613 +2023 104 0.72571 +2023 105 0.76832 +2023 106 0.79581 +2023 107 0.84096 +2023 108 0.90711 +2023 109 0.91439 +2023 110 0.91782 +2023 111 0.98245 +2023 112 0.89594 +2023 113 0.65558 +2023 114 0.71485 +2023 115 0.77465 +2023 116 0.77588 +2023 117 0.81604 +2023 118 0.84134 +2023 119 0.90616 +2023 120 0.99714 +2023 121 0.98911 +2023 122 0.99262 +2023 123 0.96236 +2023 124 0.95068 +2023 125 0.94374 +2023 126 0.96310 +2023 127 0.94177 +2023 128 0.95925 +2023 129 0.90133 +2023 130 0.83164 +2023 131 0.71992 +2023 132 0.78896 +2023 133 0.86403 +2023 134 0.88216 +2023 135 0.82408 +2023 136 0.85211 +2023 137 0.85045 +2023 138 0.93540 +2023 139 0.94590 +2023 140 0.82096 +2023 141 0.91117 +2023 142 0.84484 +2023 143 0.80324 +2023 144 0.82047 +2023 145 0.86672 +2023 146 0.83677 +2023 147 0.85901 +2023 148 0.96307 +2023 149 0.93791 +2023 150 0.82980 +2023 151 0.87189 +2023 152 0.89947 +2023 153 0.77154 +2023 154 0.88001 +2023 155 0.96429 +2023 156 0.79067 +2023 157 0.75636 +2023 158 0.77398 +2023 159 0.78798 +2023 160 0.78781 +2023 161 0.79792 +2023 162 0.80955 +2023 163 0.76015 +2023 164 0.78863 +2023 165 0.83747 +2023 166 0.87456 +2023 167 0.92981 +2023 168 0.96481 +2023 169 0.97264 +2023 170 0.96165 +2023 171 0.96296 +2023 172 0.97526 +2023 173 0.95168 +2023 174 0.92094 +2023 175 0.83287 +2023 176 0.90149 +2023 177 0.87039 +2023 178 0.85260 +2023 179 0.88089 +2023 180 0.89743 +2023 181 0.84533 +2023 182 0.83638 +2023 183 0.83770 +2023 184 0.81864 +2023 185 0.80366 +2023 186 0.80951 +2023 187 0.86875 +2023 188 0.98073 +2023 189 0.96207 +2023 190 0.87672 +2023 191 0.84692 +2023 192 0.83461 +2023 193 0.77016 +2023 194 0.86048 +2023 195 0.81513 +2023 196 0.85731 +2023 197 0.78779 +2023 198 0.83437 +2023 199 0.82929 +2023 200 0.88891 +2023 201 0.86105 +2023 202 0.76143 +2023 203 0.82395 +2023 204 0.85383 +2023 205 0.85348 +2023 206 0.73253 +2023 207 0.82202 +2023 208 0.74505 +2023 209 0.79486 +2023 210 0.85621 +2023 211 0.92666 +2023 212 0.87255 +2023 213 0.86310 +2023 214 0.61250 +2023 215 0.76873 +2023 216 0.78822 +2023 217 0.83193 +2023 218 0.86782 +2023 219 0.84286 +2023 220 0.79567 +2023 221 0.89912 +2023 222 0.73890 +2023 223 0.80209 +2023 224 0.86281 +2023 225 0.93636 +2023 226 0.82870 +2023 227 0.86108 +2023 228 0.74491 +2023 229 0.76297 +2023 230 0.87352 +2023 231 0.98644 +2023 232 0.83810 +2023 233 0.69798 +2023 234 0.77455 +2023 235 0.82363 +2023 236 0.79624 +2023 237 0.81254 +2023 238 0.80255 +2023 239 0.73722 +2023 240 0.72933 +2023 241 0.75807 +2023 242 0.77832 +2023 243 0.81104 +2023 244 0.85472 +2023 245 0.82031 +2023 246 0.81040 +2023 247 0.89190 +2023 248 0.94425 +2023 249 0.93841 +2023 250 0.81759 +2023 251 0.80621 +2023 252 0.88389 +2023 253 0.89996 +2023 254 0.78700 +2023 255 0.71111 +2023 256 0.75727 +2023 257 0.84294 +2023 258 0.75862 +2023 259 0.80963 +2023 260 0.77538 +2023 261 0.76283 +2023 262 0.78271 +2023 263 0.87396 +2023 264 0.84210 +2023 265 0.95771 +2023 266 0.96149 +2023 267 0.98778 +2023 268 0.95128 +2023 269 0.78812 +2023 270 0.86954 +2023 271 0.74212 +2023 272 0.76686 +2023 273 0.68979 +2023 274 0.82312 +2023 275 0.64124 +2023 276 0.67176 +2023 277 0.76738 +2023 278 0.84999 +2023 279 0.92564 +2023 280 0.89182 +2023 281 0.69351 +2023 282 0.74400 +2023 283 0.69688 +2023 284 0.72608 +2023 285 0.79294 +2023 286 0.83780 +2023 287 0.81163 +2023 288 0.73794 +2023 289 0.90498 +2023 290 0.88581 +2023 291 0.83262 +2023 292 0.83124 +2023 293 0.80516 +2023 294 0.72561 +2023 295 0.71920 +2023 296 0.86756 +2023 297 0.84213 +2023 298 0.83894 +2023 299 0.72877 +2023 300 0.63010 +2023 301 0.60151 +2023 302 0.93002 +2023 303 0.98533 +2023 304 0.87487 +2023 305 0.82403 +2023 306 0.94423 +2023 307 0.83838 +2023 308 0.75136 +2023 309 0.82972 +2023 310 0.88007 +2023 311 0.68591 +2023 312 0.70067 +2023 313 0.63479 +2023 314 0.66955 +2023 315 0.72699 +2023 316 0.70249 +2023 317 0.77833 +2023 318 0.76514 +2023 319 0.78889 +2023 320 0.90139 +2023 321 0.98974 +2023 322 0.97321 +2023 323 0.82018 +2023 324 0.76134 +2023 325 0.74475 +2023 326 0.82870 +2023 327 0.81463 +2023 328 0.72583 +2023 329 0.69675 +2023 330 0.69727 +2023 331 0.81589 +2023 332 0.75492 +2023 333 0.71277 +2023 334 0.71814 +2023 335 0.76299 +2023 336 0.93846 +2023 337 0.92037 +2023 338 0.81885 +2023 339 0.81533 +2023 340 0.73370 +2023 341 0.77558 +2023 342 0.78759 +2023 343 0.83959 +2023 344 0.81676 +2023 345 0.71601 +2023 346 0.71436 +2023 347 0.70955 +2023 348 0.74668 +2023 349 0.74494 +2023 350 0.72755 +2023 351 0.82001 +2023 352 0.82928 +2023 353 0.78986 +2023 354 0.73881 +2023 355 0.81522 +2023 356 0.84077 +2023 357 0.94982 +2023 358 0.95857 +2023 359 0.92082 +2023 360 0.74088 +2023 361 0.82025 +2023 362 0.96886 +2023 363 0.83431 +2023 364 0.95368 +2023 365 0.67420 diff --git a/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.pcp b/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.pcp new file mode 100644 index 00000000..9cf397ae --- /dev/null +++ b/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.pcp @@ -0,0 +1,16074 @@ +IDera5.pcp: Precipitation data - file written by R +nbyr tstep lat lon elev + 44 1 -38.136 176.250 280.000 +1980 1 17.38950 +1980 2 1.64992 +1980 3 0.48979 +1980 4 0.31130 +1980 5 0.05188 +1980 6 0.35489 +1980 7 6.08290 +1980 8 5.46859 +1980 9 3.61944 +1980 10 0.83015 +1980 11 7.94658 +1980 12 4.09677 +1980 13 0.04981 +1980 14 2.07122 +1980 15 30.96030 +1980 16 29.37060 +1980 17 13.21180 +1980 18 2.60873 +1980 19 9.85591 +1980 20 36.31890 +1980 21 59.98220 +1980 22 28.05270 +1980 23 1.42163 +1980 24 3.40360 +1980 25 0.65167 +1980 26 0.01038 +1980 27 0.10169 +1980 28 0.21791 +1980 29 0.05188 +1980 30 0.18678 +1980 31 0.05680 +1980 32 0.05082 +1980 33 0.01794 +1980 34 0.02690 +1980 35 0.66363 +1980 36 0.94762 +1980 37 0.42150 +1980 38 1.91018 +1980 39 1.52456 +1980 40 2.63360 +1980 41 2.50805 +1980 42 0.01794 +1980 43 1.71289 +1980 44 16.45030 +1980 45 3.26136 +1980 46 0.36470 +1980 47 1.20171 +1980 48 2.99232 +1980 49 11.38340 +1980 50 11.04560 +1980 51 1.51559 +1980 52 3.43474 +1980 53 8.00244 +1980 54 0.18534 +1980 55 6.75589 +1980 56 6.37923 +1980 57 1.26150 +1980 58 0.15544 +1980 59 1.52755 +1980 60 24.61370 +1980 61 13.46010 +1980 62 0.89444 +1980 63 0.60614 +1980 64 0.47588 +1980 65 0.72424 +1980 66 2.58954 +1980 67 3.55346 +1980 68 0.44983 +1980 69 0.33520 +1980 70 2.19182 +1980 71 15.00930 +1980 72 9.96044 +1980 73 0.10421 +1980 74 54.38560 +1980 75 42.83950 +1980 76 1.97819 +1980 77 1.24701 +1980 78 0.55924 +1980 79 0.57314 +1980 80 0.23968 +1980 81 0.06773 +1980 82 0.57140 +1980 83 2.48533 +1980 84 3.10884 +1980 85 0.84234 +1980 86 0.28831 +1980 87 0.28831 +1980 88 3.09495 +1980 89 0.97260 +1980 90 16.14340 +1980 91 18.95830 +1980 92 16.46020 +1980 93 19.84430 +1980 94 3.30805 +1980 95 0.14800 +1980 96 2.90804 +1980 97 11.56620 +1980 98 20.36630 +1980 99 43.79460 +1980 100 14.57420 +1980 101 2.87204 +1980 102 1.08602 +1980 103 0.56401 +1980 104 0.45601 +1980 105 0.04600 +1980 106 0.09400 +1980 107 0.14200 +1980 108 0.00200 +1980 109 0.00000 +1980 110 0.00200 +1980 111 0.00000 +1980 112 0.00000 +1980 113 0.00200 +1980 114 0.01400 +1980 115 0.00800 +1980 116 0.07600 +1980 117 18.51630 +1980 118 42.04260 +1980 119 20.59230 +1980 120 5.04807 +1980 121 2.06227 +1980 122 0.00302 +1980 123 0.23969 +1980 124 0.09196 +1980 125 0.00000 +1980 126 0.05578 +1980 127 0.13115 +1980 128 0.06784 +1980 129 0.00302 +1980 130 0.00302 +1980 131 0.00905 +1980 132 0.00302 +1980 133 0.00302 +1980 134 0.78692 +1980 135 4.44112 +1980 136 2.88537 +1980 137 3.99640 +1980 138 14.49320 +1980 139 19.02630 +1980 140 0.15226 +1980 141 15.47610 +1980 142 15.73080 +1980 143 0.88038 +1980 144 0.20954 +1980 145 1.01606 +1980 146 1.85574 +1980 147 1.91001 +1980 148 0.00302 +1980 149 0.00151 +1980 150 0.00151 +1980 151 0.05126 +1980 152 5.25379 +1980 153 17.07740 +1980 154 3.85576 +1980 155 34.49020 +1980 156 6.71889 +1980 157 6.61754 +1980 158 16.78830 +1980 159 3.19550 +1980 160 0.37112 +1980 161 0.16693 +1980 162 14.21430 +1980 163 15.23520 +1980 164 1.39654 +1980 165 1.41890 +1980 166 0.00298 +1980 167 0.08048 +1980 168 0.09837 +1980 169 2.71558 +1980 170 2.71707 +1980 171 0.10582 +1980 172 16.00730 +1980 173 19.73340 +1980 174 0.14606 +1980 175 0.14159 +1980 176 1.27432 +1980 177 1.12975 +1980 178 0.00000 +1980 179 0.00894 +1980 180 0.04769 +1980 181 24.43870 +1980 182 47.27590 +1980 183 2.05070 +1980 184 10.97800 +1980 185 13.76500 +1980 186 1.08671 +1980 187 0.50970 +1980 188 0.42360 +1980 189 3.73025 +1980 190 13.97580 +1980 191 6.55293 +1980 192 3.75401 +1980 193 3.37395 +1980 194 0.02078 +1980 195 2.35355 +1980 196 2.84940 +1980 197 0.51168 +1980 198 0.00297 +1980 199 0.00297 +1980 200 0.03167 +1980 201 2.30011 +1980 202 7.91874 +1980 203 18.16130 +1980 204 14.30140 +1980 205 1.11442 +1980 206 0.27712 +1980 207 0.14252 +1980 208 0.07324 +1980 209 0.07225 +1980 210 0.00099 +1980 211 0.06235 +1980 212 6.55689 +1980 213 31.37340 +1980 214 25.11880 +1980 215 5.69357 +1980 216 1.77024 +1980 217 0.68800 +1980 218 0.79035 +1980 219 2.56249 +1980 220 2.02421 +1980 221 0.09098 +1980 222 0.00948 +1980 223 0.00190 +1980 224 0.28999 +1980 225 2.85816 +1980 226 2.89038 +1980 227 0.06444 +1980 228 16.71870 +1980 229 16.88865 +1980 230 3.62008 +1980 231 0.02843 +1980 232 0.42266 +1980 233 0.94198 +1980 234 3.16331 +1980 235 3.25239 +1980 236 0.86238 +1980 237 0.65578 +1980 238 1.07655 +1980 239 11.97660 +1980 240 38.37290 +1980 241 14.34010 +1980 242 0.43024 +1980 243 1.45182 +1980 244 3.01140 +1980 245 10.24820 +1980 246 7.43127 +1980 247 19.31850 +1980 248 26.14140 +1980 249 3.93232 +1980 250 3.53089 +1980 251 4.11706 +1980 252 3.21697 +1980 253 14.70140 +1980 254 7.43127 +1980 255 1.21956 +1980 256 12.91370 +1980 257 13.16380 +1980 258 1.08899 +1980 259 5.82000 +1980 260 9.06615 +1980 261 3.70730 +1980 262 13.06380 +1980 263 12.07750 +1980 264 3.73230 +1980 265 1.69183 +1980 266 4.12262 +1980 267 0.25975 +1980 268 0.00278 +1980 269 0.25697 +1980 270 5.92696 +1980 271 4.78518 +1980 272 2.68637 +1980 273 2.18354 +1980 274 0.00358 +1980 275 0.01789 +1980 276 0.20275 +1980 277 0.73827 +1980 278 1.84149 +1980 279 2.92205 +1980 280 8.42744 +1980 281 8.90332 +1980 282 6.54063 +1980 283 7.91220 +1980 284 14.70690 +1980 285 15.78030 +1980 286 1.11873 +1980 287 0.38523 +1980 288 3.56490 +1980 289 15.71830 +1980 290 20.40190 +1980 291 15.57040 +1980 292 10.89990 +1980 293 6.58356 +1980 294 1.45387 +1980 295 4.59657 +1980 296 0.62377 +1980 297 0.00000 +1980 298 0.00000 +1980 299 0.01670 +1980 300 0.01908 +1980 301 0.06918 +1980 302 13.36750 +1980 303 11.75020 +1980 304 1.70552 +1980 305 5.39079 +1980 306 2.40420 +1980 307 7.90116 +1980 308 7.81075 +1980 309 39.21780 +1980 310 6.80681 +1980 311 6.28434 +1980 312 19.16420 +1980 313 29.36550 +1980 314 10.68280 +1980 315 10.52400 +1980 316 3.84230 +1980 317 1.00604 +1980 318 0.20394 +1980 319 0.12510 +1980 320 1.05860 +1980 321 0.36163 +1980 322 0.40158 +1980 323 0.31748 +1980 324 0.56137 +1980 325 0.48147 +1980 326 0.12510 +1980 327 4.43731 +1980 328 4.85045 +1980 329 11.29880 +1980 330 11.00230 +1980 331 4.54979 +1980 332 8.44045 +1980 333 1.28147 +1980 334 29.16680 +1980 335 20.91290 +1980 336 0.39257 +1980 337 0.32148 +1980 338 0.20711 +1980 339 0.02473 +1980 340 8.78031 +1980 341 8.88386 +1980 342 0.28747 +1980 343 8.36765 +1980 344 7.57941 +1980 345 1.47601 +1980 346 1.14989 +1980 347 0.22411 +1980 348 0.16074 +1980 349 0.11746 +1980 350 0.00927 +1980 351 0.04328 +1980 352 0.06182 +1980 353 4.21473 +1980 354 23.11070 +1980 355 11.36140 +1980 356 18.20820 +1980 357 62.85630 +1980 358 32.61430 +1980 359 22.83560 +1980 360 36.36540 +1980 361 33.25880 +1980 362 9.78028 +1980 363 1.84849 +1980 364 7.67524 +1980 365 4.15446 +1980 366 1.43710 +1981 1 2.04078 +1981 2 0.60169 +1981 3 0.04575 +1981 4 0.10741 +1981 5 0.13028 +1981 6 0.00099 +1981 7 1.97315 +1981 8 1.97514 +1981 9 0.00099 +1981 10 3.97415 +1981 11 16.84640 +1981 12 22.47740 +1981 13 10.02490 +1981 14 3.50771 +1981 15 4.07957 +1981 16 0.94978 +1981 17 0.80358 +1981 18 7.63999 +1981 19 63.48390 +1981 20 18.37200 +1981 21 1.94232 +1981 22 3.99603 +1981 23 1.27598 +1981 24 0.00895 +1981 25 0.04973 +1981 26 0.00895 +1981 27 0.01094 +1981 28 0.01193 +1981 29 0.47837 +1981 30 2.85928 +1981 31 24.89640 +1981 32 17.60880 +1981 33 9.82519 +1981 34 4.45342 +1981 35 0.00359 +1981 36 0.00180 +1981 37 2.54481 +1981 38 3.60515 +1981 39 0.09705 +1981 40 1.14840 +1981 41 3.20617 +1981 42 6.49502 +1981 43 19.98290 +1981 44 6.59745 +1981 45 2.43518 +1981 46 0.08986 +1981 47 2.26984 +1981 48 1.35867 +1981 49 0.09705 +1981 50 0.05571 +1981 51 0.62362 +1981 52 0.33607 +1981 53 1.34968 +1981 54 0.61104 +1981 55 0.13838 +1981 56 0.06470 +1981 57 0.00539 +1981 58 2.69757 +1981 59 13.96780 +1981 60 4.64787 +1981 61 0.85534 +1981 62 2.34814 +1981 63 1.44708 +1981 64 0.25553 +1981 65 2.52297 +1981 66 11.78640 +1981 67 18.09390 +1981 68 9.49747 +1981 69 0.30125 +1981 70 0.90375 +1981 71 1.05169 +1981 72 0.04035 +1981 73 1.84247 +1981 74 1.43094 +1981 75 1.85592 +1981 76 17.11750 +1981 77 29.56020 +1981 78 0.63209 +1981 79 3.01520 +1981 80 8.77393 +1981 81 7.91321 +1981 82 4.06419 +1981 83 5.73452 +1981 84 17.41070 +1981 85 19.50600 +1981 86 4.01847 +1981 87 1.04362 +1981 88 0.04304 +1981 89 0.01345 +1981 90 0.00491 +1981 91 0.49523 +1981 92 1.17479 +1981 93 0.23985 +1981 94 0.51522 +1981 95 0.39530 +1981 96 0.00222 +1981 97 0.00000 +1981 98 0.15768 +1981 99 0.31757 +1981 100 4.51707 +1981 101 70.57870 +1981 102 86.25300 +1981 103 42.09050 +1981 104 15.39890 +1981 105 9.27621 +1981 106 2.73156 +1981 107 0.97715 +1981 108 0.01555 +1981 109 0.00222 +1981 110 1.22365 +1981 111 1.02600 +1981 112 0.66401 +1981 113 1.72111 +1981 114 1.11705 +1981 115 0.19321 +1981 116 0.02665 +1981 117 0.27760 +1981 118 0.80170 +1981 119 3.53993 +1981 120 0.31445 +1981 121 0.02294 +1981 122 0.00135 +1981 123 0.00000 +1981 124 0.00000 +1981 125 0.00270 +1981 126 4.06494 +1981 127 26.83910 +1981 128 21.81060 +1981 129 8.15282 +1981 130 6.20942 +1981 131 0.78006 +1981 132 4.41718 +1981 133 0.31175 +1981 134 0.24293 +1981 135 0.20783 +1981 136 0.00405 +1981 137 0.05803 +1981 138 0.59786 +1981 139 24.44900 +1981 140 13.50660 +1981 141 5.76406 +1981 142 0.01350 +1981 143 0.02429 +1981 144 0.01215 +1981 145 0.00135 +1981 146 0.00540 +1981 147 0.01080 +1981 148 0.00810 +1981 149 0.00405 +1981 150 0.00270 +1981 151 6.47132 +1981 152 4.36627 +1981 153 21.20230 +1981 154 17.79500 +1981 155 6.97723 +1981 156 16.12990 +1981 157 26.26360 +1981 158 8.76774 +1981 159 1.31098 +1981 160 0.48832 +1981 161 0.00440 +1981 162 1.38577 +1981 163 35.14350 +1981 164 13.03060 +1981 165 23.49870 +1981 166 24.86460 +1981 167 25.22320 +1981 168 0.41573 +1981 169 0.42453 +1981 170 0.09018 +1981 171 0.00000 +1981 172 0.10778 +1981 173 0.10998 +1981 174 0.00220 +1981 175 0.00000 +1981 176 0.14298 +1981 177 42.11640 +1981 178 30.87400 +1981 179 9.12408 +1981 180 2.18204 +1981 181 0.39254 +1981 182 5.53136 +1981 183 27.25080 +1981 184 6.73175 +1981 185 9.25954 +1981 186 18.75960 +1981 187 2.24669 +1981 188 13.27510 +1981 189 7.79680 +1981 190 9.25434 +1981 191 9.81653 +1981 192 1.59809 +1981 193 0.00104 +1981 194 0.00000 +1981 195 0.15512 +1981 196 0.02499 +1981 197 0.05205 +1981 198 9.60415 +1981 199 21.49250 +1981 200 1.25973 +1981 201 0.00312 +1981 202 0.00312 +1981 203 0.00208 +1981 204 0.39458 +1981 205 2.92029 +1981 206 5.63651 +1981 207 1.33885 +1981 208 18.11200 +1981 209 1.06921 +1981 210 21.51540 +1981 211 15.77160 +1981 212 6.31032 +1981 213 5.76184 +1981 214 1.95699 +1981 215 1.71721 +1981 216 0.16871 +1981 217 1.72798 +1981 218 12.04130 +1981 219 22.68270 +1981 220 20.09470 +1981 221 2.15943 +1981 222 11.23870 +1981 223 4.41794 +1981 224 0.01149 +1981 225 0.21106 +1981 226 10.52010 +1981 227 3.10706 +1981 228 0.03589 +1981 229 7.76980 +1981 230 14.97390 +1981 231 6.63337 +1981 232 1.02659 +1981 233 11.80220 +1981 234 23.53190 +1981 235 30.61620 +1981 236 6.90402 +1981 237 0.85932 +1981 238 1.92468 +1981 239 1.49251 +1981 240 0.92896 +1981 241 0.87440 +1981 242 17.18430 +1981 243 31.06090 +1981 244 17.92840 +1981 245 4.16221 +1981 246 1.00483 +1981 247 4.18366 +1981 248 2.82375 +1981 249 0.93835 +1981 250 0.82978 +1981 251 0.39440 +1981 252 5.48056 +1981 253 0.75223 +1981 254 0.20939 +1981 255 7.55779 +1981 256 6.06329 +1981 257 4.56326 +1981 258 1.12669 +1981 259 0.88075 +1981 260 0.00222 +1981 261 0.00111 +1981 262 1.96755 +1981 263 1.79140 +1981 264 0.07312 +1981 265 0.34011 +1981 266 4.40816 +1981 267 8.07405 +1981 268 1.78143 +1981 269 2.83833 +1981 270 21.11240 +1981 271 17.19280 +1981 272 0.52956 +1981 273 0.14185 +1981 274 0.92859 +1981 275 1.49268 +1981 276 0.07422 +1981 277 1.82585 +1981 278 16.52830 +1981 279 1.04900 +1981 280 0.00330 +1981 281 0.21112 +1981 282 0.06597 +1981 283 0.35296 +1981 284 0.53439 +1981 285 11.31800 +1981 286 6.98837 +1981 287 1.27166 +1981 288 0.30183 +1981 289 16.26280 +1981 290 27.42400 +1981 291 1.81760 +1981 292 0.64490 +1981 293 1.57350 +1981 294 0.69273 +1981 295 2.00233 +1981 296 17.29360 +1981 297 18.45810 +1981 298 7.76852 +1981 299 0.01319 +1981 300 0.01319 +1981 301 0.00165 +1981 302 0.00165 +1981 303 1.44485 +1981 304 2.43611 +1981 305 0.33996 +1981 306 0.38226 +1981 307 0.01410 +1981 308 0.01723 +1981 309 1.72173 +1981 310 12.67560 +1981 311 67.97610 +1981 312 9.44364 +1981 313 7.91461 +1981 314 7.61852 +1981 315 0.58905 +1981 316 2.26691 +1981 317 11.91270 +1981 318 53.41580 +1981 319 36.82520 +1981 320 0.98854 +1981 321 0.60159 +1981 322 0.35876 +1981 323 0.40732 +1981 324 0.74415 +1981 325 7.87701 +1981 326 4.51346 +1981 327 0.18173 +1981 328 0.25379 +1981 329 0.96974 +1981 330 0.39322 +1981 331 2.10398 +1981 332 5.58034 +1981 333 3.77401 +1981 334 14.95880 +1981 335 19.26650 +1981 336 3.80965 +1981 337 0.19410 +1981 338 1.71742 +1981 339 2.83114 +1981 340 8.44790 +1981 341 32.29100 +1981 342 12.44500 +1981 343 18.04570 +1981 344 7.75183 +1981 345 0.00535 +1981 346 0.01339 +1981 347 0.00134 +1981 348 0.17536 +1981 349 2.22609 +1981 350 3.03862 +1981 351 5.20581 +1981 352 5.44676 +1981 353 0.55284 +1981 354 0.18607 +1981 355 12.82650 +1981 356 16.01630 +1981 357 5.82558 +1981 358 3.63028 +1981 359 7.92451 +1981 360 4.48699 +1981 361 1.07356 +1981 362 0.18874 +1981 363 2.04136 +1981 364 3.60485 +1981 365 16.81110 +1982 1 9.43705 +1982 2 10.68670 +1982 3 14.54880 +1982 4 0.60598 +1982 5 14.13670 +1982 6 15.90890 +1982 7 1.63209 +1982 8 0.34473 +1982 9 0.36628 +1982 10 0.18314 +1982 11 0.19661 +1982 12 0.01347 +1982 13 0.67331 +1982 14 0.68139 +1982 15 0.01616 +1982 16 0.49017 +1982 17 1.47589 +1982 18 1.03420 +1982 19 0.21007 +1982 20 0.00269 +1982 21 0.12389 +1982 22 13.70850 +1982 23 12.92750 +1982 24 0.27740 +1982 25 0.02963 +1982 26 1.69134 +1982 27 1.21734 +1982 28 0.00000 +1982 29 0.01077 +1982 30 0.14005 +1982 31 0.86268 +1982 32 2.21672 +1982 33 1.03298 +1982 34 0.00000 +1982 35 10.37450 +1982 36 9.03718 +1982 37 3.91416 +1982 38 0.00279 +1982 39 0.00558 +1982 40 0.06142 +1982 41 0.15355 +1982 42 0.30431 +1982 43 0.15076 +1982 44 0.00558 +1982 45 0.00838 +1982 46 0.00558 +1982 47 0.00279 +1982 48 0.04467 +1982 49 1.49643 +1982 50 13.01280 +1982 51 2.19718 +1982 52 6.76741 +1982 53 78.27480 +1982 54 103.66100 +1982 55 25.69610 +1982 56 1.87891 +1982 57 0.46345 +1982 58 0.19822 +1982 59 23.92890 +1982 60 27.03050 +1982 61 14.32330 +1982 62 4.26474 +1982 63 0.01449 +1982 64 1.02542 +1982 65 6.62357 +1982 66 1.42399 +1982 67 2.86248 +1982 68 2.48927 +1982 69 1.95663 +1982 70 1.86605 +1982 71 0.54351 +1982 72 0.40944 +1982 73 0.00362 +1982 74 0.01449 +1982 75 0.06160 +1982 76 0.04348 +1982 77 0.00000 +1982 78 1.15586 +1982 79 12.48980 +1982 80 23.81660 +1982 81 12.33400 +1982 82 7.75769 +1982 83 8.42802 +1982 84 1.42399 +1982 85 1.02542 +1982 86 0.03623 +1982 87 0.00725 +1982 88 0.11232 +1982 89 25.83120 +1982 90 28.52880 +1982 91 5.14230 +1982 92 0.63394 +1982 93 4.58904 +1982 94 4.12800 +1982 95 0.09221 +1982 96 1.72727 +1982 97 3.68342 +1982 98 65.54410 +1982 99 43.31350 +1982 100 1.85735 +1982 101 0.00000 +1982 102 0.53514 +1982 103 3.22073 +1982 104 5.04515 +1982 105 0.40835 +1982 106 0.29639 +1982 107 0.00329 +1982 108 0.02470 +1982 109 0.02635 +1982 110 0.00494 +1982 111 0.13337 +1982 112 0.68827 +1982 113 1.07358 +1982 114 0.72121 +1982 115 0.39189 +1982 116 0.42811 +1982 117 0.24205 +1982 118 3.38868 +1982 119 30.61670 +1982 120 1.78858 +1982 121 0.84629 +1982 122 0.00356 +1982 123 0.00889 +1982 124 0.01422 +1982 125 0.01778 +1982 126 0.72361 +1982 127 7.57037 +1982 128 16.54170 +1982 129 0.26135 +1982 130 1.25521 +1982 131 9.54386 +1982 132 10.92710 +1982 133 8.52155 +1982 134 9.39807 +1982 135 1.77792 +1982 136 0.07823 +1982 137 0.05512 +1982 138 0.16890 +1982 139 8.50733 +1982 140 7.62548 +1982 141 20.45140 +1982 142 13.62240 +1982 143 8.24420 +1982 144 1.99482 +1982 145 0.93696 +1982 146 0.09423 +1982 147 0.06045 +1982 148 0.00178 +1982 149 0.00000 +1982 150 0.00178 +1982 151 0.00887 +1982 152 0.22760 +1982 153 1.06704 +1982 154 33.07380 +1982 155 45.40980 +1982 156 0.79363 +1982 157 0.03843 +1982 158 0.05468 +1982 159 0.05616 +1982 160 0.00148 +1982 161 0.00148 +1982 162 0.00296 +1982 163 0.00296 +1982 164 0.00296 +1982 165 0.00148 +1982 166 0.00443 +1982 167 0.02069 +1982 168 0.02365 +1982 169 0.00443 +1982 170 0.00148 +1982 171 0.44632 +1982 172 25.29710 +1982 173 25.53360 +1982 174 14.54250 +1982 175 5.42978 +1982 176 0.50101 +1982 177 0.00148 +1982 178 0.15222 +1982 179 6.21159 +1982 180 7.18700 +1982 181 0.93951 +1982 182 0.02803 +1982 183 0.10312 +1982 184 0.00901 +1982 185 0.02403 +1982 186 0.02002 +1982 187 0.00300 +1982 188 0.01101 +1982 189 0.01201 +1982 190 0.00100 +1982 191 0.00300 +1982 192 0.00601 +1982 193 0.53662 +1982 194 5.75667 +1982 195 3.88149 +1982 196 0.52561 +1982 197 0.70281 +1982 198 0.41448 +1982 199 0.96612 +1982 200 13.65880 +1982 201 16.78540 +1982 202 1.61988 +1982 203 0.02703 +1982 204 0.03304 +1982 205 0.00601 +1982 206 0.01402 +1982 207 1.08626 +1982 208 11.02980 +1982 209 58.16430 +1982 210 11.93280 +1982 211 3.56913 +1982 212 7.92341 +1982 213 12.53500 +1982 214 3.00506 +1982 215 0.09188 +1982 216 0.65398 +1982 217 6.76814 +1982 218 2.33757 +1982 219 0.22700 +1982 220 0.22835 +1982 221 0.00946 +1982 222 3.52797 +1982 223 3.52122 +1982 224 1.67143 +1982 225 3.20639 +1982 226 2.12273 +1982 227 1.78223 +1982 228 0.97016 +1982 229 3.01317 +1982 230 1.02961 +1982 231 0.34050 +1982 232 0.12971 +1982 233 0.02297 +1982 234 0.05135 +1982 235 0.02027 +1982 236 0.42157 +1982 237 5.54531 +1982 238 0.49454 +1982 239 0.04189 +1982 240 4.40760 +1982 241 1.29715 +1982 242 0.09053 +1982 243 6.54263 +1982 244 5.59801 +1982 245 0.00000 +1982 246 1.12270 +1982 247 13.13830 +1982 248 4.56601 +1982 249 0.08075 +1982 250 27.74230 +1982 251 17.39130 +1982 252 0.00553 +1982 253 15.07960 +1982 254 4.63238 +1982 255 4.47974 +1982 256 6.07143 +1982 257 2.80398 +1982 258 0.39931 +1982 259 0.44355 +1982 260 1.93237 +1982 261 1.26649 +1982 262 2.02971 +1982 263 1.60717 +1982 264 2.06510 +1982 265 1.60607 +1982 266 0.09181 +1982 267 17.35820 +1982 268 24.12640 +1982 269 7.04038 +1982 270 4.92992 +1982 271 0.00664 +1982 272 0.18251 +1982 273 1.85706 +1982 274 7.61437 +1982 275 6.34067 +1982 276 3.51917 +1982 277 14.10890 +1982 278 14.82710 +1982 279 5.86871 +1982 280 0.35177 +1982 281 0.01026 +1982 282 4.31945 +1982 283 3.91345 +1982 284 0.43092 +1982 285 0.78269 +1982 286 0.17002 +1982 287 4.49094 +1982 288 3.72877 +1982 289 0.30340 +1982 290 39.13662 +1982 291 39.51206 +1982 292 2.56646 +1982 293 4.04976 +1982 294 9.91847 +1982 295 8.52458 +1982 296 17.61640 +1982 297 17.21190 +1982 298 13.72490 +1982 299 10.10460 +1982 300 3.85922 +1982 301 0.18468 +1982 302 0.42799 +1982 303 0.25503 +1982 304 0.80218 +1982 305 0.88565 +1982 306 1.04853 +1982 307 1.11572 +1982 308 0.55379 +1982 309 0.07330 +1982 310 0.06515 +1982 311 0.00000 +1982 312 0.00000 +1982 313 0.00000 +1982 314 2.08689 +1982 315 19.99340 +1982 316 4.32648 +1982 317 0.36444 +1982 318 0.00204 +1982 319 0.03054 +1982 320 0.00204 +1982 321 0.04479 +1982 322 1.72652 +1982 323 0.98542 +1982 324 1.47609 +1982 325 0.42959 +1982 326 0.33594 +1982 327 1.70209 +1982 328 0.65762 +1982 329 0.76350 +1982 330 1.79981 +1982 331 6.12629 +1982 332 7.31938 +1982 333 3.81951 +1982 334 3.31522 +1982 335 1.11282 +1982 336 1.12009 +1982 337 0.77869 +1982 338 12.32820 +1982 339 14.98240 +1982 340 6.61302 +1982 341 0.09443 +1982 342 0.06828 +1982 343 3.98059 +1982 344 14.63670 +1982 345 23.99250 +1982 346 1.11573 +1982 347 0.04649 +1982 348 0.00726 +1982 349 0.00145 +1982 350 0.00726 +1982 351 0.00145 +1982 352 0.19177 +1982 353 3.33847 +1982 354 37.17790 +1982 355 32.17160 +1982 356 0.05521 +1982 357 0.49104 +1982 358 1.07650 +1982 359 19.96400 +1982 360 13.94660 +1982 361 0.27312 +1982 362 0.05230 +1982 363 4.93071 +1982 364 4.63579 +1982 365 3.15091 +1983 1 2.52707 +1983 2 0.02115 +1983 3 0.00000 +1983 4 3.55535 +1983 5 0.77980 +1983 6 0.42030 +1983 7 1.06793 +1983 8 0.84324 +1983 9 0.00264 +1983 10 0.00264 +1983 11 0.09252 +1983 12 27.20830 +1983 13 10.72680 +1983 14 4.02059 +1983 15 9.50561 +1983 16 5.05415 +1983 17 2.09885 +1983 18 11.81590 +1983 19 5.65420 +1983 20 5.65684 +1983 21 1.75256 +1983 22 1.53581 +1983 23 0.01057 +1983 24 0.76129 +1983 25 9.20162 +1983 26 8.31080 +1983 27 0.00000 +1983 28 0.41501 +1983 29 0.16918 +1983 30 0.13217 +1983 31 0.01548 +1983 32 0.00000 +1983 33 0.00503 +1983 34 0.17618 +1983 35 0.14094 +1983 36 0.01384 +1983 37 0.98157 +1983 38 5.91585 +1983 39 4.94057 +1983 40 0.51092 +1983 41 0.51218 +1983 42 0.01258 +1983 43 3.78911 +1983 44 22.47420 +1983 45 25.19870 +1983 46 0.94633 +1983 47 1.45096 +1983 48 0.67955 +1983 49 0.02517 +1983 50 2.73330 +1983 51 6.05302 +1983 52 4.45985 +1983 53 2.01599 +1983 54 0.60027 +1983 55 0.07299 +1983 56 1.81590 +1983 57 7.83998 +1983 58 3.50471 +1983 59 0.83288 +1983 60 0.64915 +1983 61 1.07376 +1983 62 1.07376 +1983 63 0.00000 +1983 64 0.05103 +1983 65 0.00204 +1983 66 0.12044 +1983 67 0.42052 +1983 68 0.27354 +1983 69 0.00408 +1983 70 0.01225 +1983 71 1.18603 +1983 72 5.34837 +1983 73 0.73081 +1983 74 11.10300 +1983 75 10.68040 +1983 76 0.06532 +1983 77 0.10411 +1983 78 14.39160 +1983 79 5.13199 +1983 80 0.00204 +1983 81 0.94107 +1983 82 2.03932 +1983 83 3.34579 +1983 84 0.36745 +1983 85 0.93903 +1983 86 5.00950 +1983 87 3.52747 +1983 88 0.56750 +1983 89 0.03470 +1983 90 2.35714 +1983 91 5.41443 +1983 92 15.43810 +1983 93 14.44630 +1983 94 6.13499 +1983 95 0.00000 +1983 96 9.93327 +1983 97 35.33680 +1983 98 12.43630 +1983 99 0.52219 +1983 100 0.07877 +1983 101 0.03792 +1983 102 0.08460 +1983 103 0.66805 +1983 104 10.32420 +1983 105 9.29147 +1983 106 0.77599 +1983 107 0.21879 +1983 108 27.34350 +1983 109 32.30280 +1983 110 17.87990 +1983 111 3.19440 +1983 112 8.00496 +1983 113 2.88517 +1983 114 0.46384 +1983 115 1.74452 +1983 116 27.35510 +1983 117 2.12960 +1983 118 0.01167 +1983 119 0.16045 +1983 120 0.16869 +1983 121 0.00907 +1983 122 0.00363 +1983 123 0.21585 +1983 124 10.09610 +1983 125 14.30250 +1983 126 9.68800 +1983 127 3.42281 +1983 128 0.20678 +1983 129 8.13349 +1983 130 8.31851 +1983 131 8.79375 +1983 132 1.78668 +1983 133 0.03809 +1983 134 0.00000 +1983 135 0.03809 +1983 136 8.88988 +1983 137 9.36150 +1983 138 9.08941 +1983 139 6.87465 +1983 140 1.68511 +1983 141 1.78124 +1983 142 1.03392 +1983 143 0.00181 +1983 144 0.02358 +1983 145 0.26483 +1983 146 0.14874 +1983 147 0.55324 +1983 148 0.38455 +1983 149 15.85340 +1983 150 10.10700 +1983 151 11.17380 +1983 152 5.40844 +1983 153 0.79983 +1983 154 0.00183 +1983 155 0.00000 +1983 156 0.00000 +1983 157 4.07966 +1983 158 6.27781 +1983 159 5.40661 +1983 160 28.46980 +1983 161 15.28820 +1983 162 3.86369 +1983 163 1.48618 +1983 164 1.59782 +1983 165 0.01098 +1983 166 2.80580 +1983 167 2.12860 +1983 168 0.47587 +1983 169 0.24892 +1983 170 0.06223 +1983 171 0.05674 +1983 172 0.04942 +1983 173 2.78750 +1983 174 4.07417 +1983 175 1.12561 +1983 176 0.07321 +1983 177 40.73620 +1983 178 37.96890 +1983 179 6.35651 +1983 180 6.21558 +1983 181 3.28231 +1983 182 0.07800 +1983 183 0.01437 +1983 184 0.01847 +1983 185 0.01847 +1983 186 0.00205 +1983 187 0.11290 +1983 188 1.07768 +1983 189 11.18740 +1983 190 66.09790 +1983 191 5.66758 +1983 192 1.28090 +1983 193 0.13753 +1983 194 0.12727 +1983 195 0.06363 +1983 196 1.51286 +1983 197 2.67060 +1983 198 0.43107 +1983 199 0.51934 +1983 200 0.00411 +1983 201 0.00205 +1983 202 0.15190 +1983 203 0.15601 +1983 204 0.01026 +1983 205 0.00821 +1983 206 0.00000 +1983 207 0.00411 +1983 208 0.00205 +1983 209 0.00205 +1983 210 0.00205 +1983 211 0.00821 +1983 212 4.02854 +1983 213 7.38979 +1983 214 20.92920 +1983 215 3.93410 +1983 216 1.86254 +1983 217 0.87476 +1983 218 0.00310 +1983 219 0.00155 +1983 220 0.14554 +1983 221 12.39840 +1983 222 12.43860 +1983 223 0.03716 +1983 224 0.97075 +1983 225 0.69272 +1983 226 0.00155 +1983 227 0.00000 +1983 228 0.00155 +1983 229 0.05574 +1983 230 0.39171 +1983 231 14.61700 +1983 232 45.36680 +1983 233 7.33250 +1983 234 2.11491 +1983 235 1.02494 +1983 236 0.28333 +1983 237 0.12076 +1983 238 0.15637 +1983 239 0.33287 +1983 240 0.54344 +1983 241 0.57285 +1983 242 0.60382 +1983 243 0.25133 +1983 244 0.16755 +1983 245 0.57746 +1983 246 0.17503 +1983 247 0.00000 +1983 248 0.01795 +1983 249 0.09126 +1983 250 7.04769 +1983 251 5.18217 +1983 252 44.41950 +1983 253 10.62760 +1983 254 5.95860 +1983 255 6.97888 +1983 256 3.50215 +1983 257 15.33260 +1983 258 0.24086 +1983 259 0.10921 +1983 260 0.06134 +1983 261 1.87151 +1983 262 3.55751 +1983 263 2.52526 +1983 264 9.50563 +1983 265 0.20196 +1983 266 1.09358 +1983 267 2.51180 +1983 268 29.99050 +1983 269 22.82160 +1983 270 4.15292 +1983 271 0.31715 +1983 272 0.51164 +1983 273 2.64067 +1983 274 0.59494 +1983 275 0.01219 +1983 276 6.55170 +1983 277 38.55190 +1983 278 14.48590 +1983 279 2.55533 +1983 280 18.65290 +1983 281 17.46790 +1983 282 3.00154 +1983 283 0.00244 +1983 284 0.95825 +1983 285 8.58767 +1983 286 18.87240 +1983 287 9.80926 +1983 288 2.24323 +1983 289 0.14386 +1983 290 0.00488 +1983 291 0.25846 +1983 292 2.17008 +1983 293 21.80320 +1983 294 92.22850 +1983 295 68.96710 +1983 296 26.85050 +1983 297 44.52320 +1983 298 21.04000 +1983 299 5.14480 +1983 300 4.98875 +1983 301 8.13902 +1983 302 7.76353 +1983 303 7.34658 +1983 304 7.89061 +1983 305 0.10382 +1983 306 0.72421 +1983 307 2.05615 +1983 308 4.80358 +1983 309 19.36880 +1983 310 16.10730 +1983 311 32.58940 +1983 312 4.13002 +1983 313 0.01519 +1983 314 0.09116 +1983 315 0.16206 +1983 316 1.55730 +1983 317 1.60541 +1983 318 0.67863 +1983 319 0.00000 +1983 320 0.01773 +1983 321 2.45117 +1983 322 2.73984 +1983 323 0.00253 +1983 324 14.41580 +1983 325 18.23180 +1983 326 1.72949 +1983 327 0.33425 +1983 328 0.46846 +1983 329 1.86623 +1983 330 5.37586 +1983 331 0.63811 +1983 332 0.74447 +1983 333 1.50159 +1983 334 2.20962 +1983 335 0.57696 +1983 336 3.12211 +1983 337 26.18200 +1983 338 15.70470 +1983 339 6.22991 +1983 340 38.66840 +1983 341 44.12290 +1983 342 49.52620 +1983 343 51.48010 +1983 344 2.45309 +1983 345 1.40352 +1983 346 6.92553 +1983 347 8.84258 +1983 348 1.52014 +1983 349 0.01637 +1983 350 6.74549 +1983 351 0.30280 +1983 352 19.15620 +1983 353 18.50560 +1983 354 5.84527 +1983 355 1.71246 +1983 356 0.25370 +1983 357 0.58105 +1983 358 0.16572 +1983 359 0.27006 +1983 360 2.14824 +1983 361 5.19466 +1983 362 0.02046 +1983 363 0.01841 +1983 364 0.00205 +1983 365 0.26866 +1984 1 0.27168 +1984 2 0.31998 +1984 3 0.12679 +1984 4 0.13282 +1984 5 4.28655 +1984 6 25.38720 +1984 7 14.58630 +1984 8 0.49808 +1984 9 0.11773 +1984 10 1.69047 +1984 11 31.80800 +1984 12 3.36887 +1984 13 3.45641 +1984 14 1.73575 +1984 15 9.71115 +1984 16 12.69360 +1984 17 2.27006 +1984 18 4.61559 +1984 19 2.36062 +1984 20 0.02717 +1984 21 0.30489 +1984 22 4.10845 +1984 23 8.42518 +1984 24 0.08452 +1984 25 0.00000 +1984 26 0.00906 +1984 27 0.08150 +1984 28 0.67317 +1984 29 4.21108 +1984 30 1.12597 +1984 31 0.18344 +1984 32 1.41730 +1984 33 20.05630 +1984 34 11.32100 +1984 35 1.64224 +1984 36 12.88020 +1984 37 12.89550 +1984 38 0.79491 +1984 39 1.10502 +1984 40 4.80005 +1984 41 51.77640 +1984 42 20.77480 +1984 43 5.04464 +1984 44 0.00218 +1984 45 0.53504 +1984 46 3.12943 +1984 47 16.20840 +1984 48 15.88730 +1984 49 11.03050 +1984 50 11.03270 +1984 51 0.00218 +1984 52 0.00000 +1984 53 0.03057 +1984 54 0.08735 +1984 55 0.40838 +1984 56 2.03751 +1984 57 1.15088 +1984 58 0.32757 +1984 59 2.10958 +1984 60 4.00660 +1984 61 2.83383 +1984 62 0.41248 +1984 63 18.21140 +1984 64 34.79070 +1984 65 39.73150 +1984 66 9.71661 +1984 67 35.59780 +1984 68 3.26637 +1984 69 18.54360 +1984 70 20.37630 +1984 71 8.74227 +1984 72 13.92610 +1984 73 13.13910 +1984 74 2.42804 +1984 75 21.31280 +1984 76 21.36850 +1984 77 8.77572 +1984 78 0.33444 +1984 79 2.23406 +1984 80 4.63312 +1984 81 1.22628 +1984 82 1.90185 +1984 83 1.12149 +1984 84 0.07804 +1984 85 0.29431 +1984 86 0.84056 +1984 87 2.24744 +1984 88 3.38677 +1984 89 10.25840 +1984 90 43.24540 +1984 91 31.75470 +1984 92 1.44210 +1984 93 0.96104 +1984 94 0.45586 +1984 95 0.00000 +1984 96 1.00377 +1984 97 1.88591 +1984 98 8.52988 +1984 99 3.40801 +1984 100 0.11835 +1984 101 0.83392 +1984 102 0.55997 +1984 103 0.00110 +1984 104 0.01425 +1984 105 0.11287 +1984 106 1.10240 +1984 107 0.67393 +1984 108 0.07780 +1984 109 0.00329 +1984 110 0.00219 +1984 111 0.00219 +1984 112 0.00000 +1984 113 0.03945 +1984 114 0.04164 +1984 115 0.00219 +1984 116 8.45317 +1984 117 14.09120 +1984 118 3.93290 +1984 119 16.33870 +1984 120 5.19091 +1984 121 2.52774 +1984 122 2.21958 +1984 123 0.05446 +1984 124 0.00133 +1984 125 0.02922 +1984 126 0.03719 +1984 127 0.02391 +1984 128 2.97006 +1984 129 25.12730 +1984 130 27.70420 +1984 131 0.00664 +1984 132 0.02789 +1984 133 2.57689 +1984 134 2.72433 +1984 135 0.01195 +1984 136 0.00133 +1984 137 0.00000 +1984 138 0.00133 +1984 139 1.23797 +1984 140 0.09165 +1984 141 0.00000 +1984 142 0.00133 +1984 143 0.94043 +1984 144 17.30230 +1984 145 14.11980 +1984 146 7.81701 +1984 147 1.37611 +1984 148 0.34934 +1984 149 0.13947 +1984 150 0.74916 +1984 151 0.54726 +1984 152 0.00000 +1984 153 0.08261 +1984 154 0.12710 +1984 155 1.73279 +1984 156 2.84067 +1984 157 19.59450 +1984 158 12.21000 +1984 159 0.00212 +1984 160 0.14828 +1984 161 0.79225 +1984 162 0.39189 +1984 163 0.07838 +1984 164 0.86851 +1984 165 1.49342 +1984 166 0.00212 +1984 167 0.00424 +1984 168 0.17794 +1984 169 0.09744 +1984 170 0.22242 +1984 171 15.77730 +1984 172 1.82811 +1984 173 0.18429 +1984 174 0.14616 +1984 175 0.18006 +1984 176 0.00212 +1984 177 0.00000 +1984 178 0.00424 +1984 179 0.34317 +1984 180 11.98120 +1984 181 50.22120 +1984 182 13.92500 +1984 183 12.84440 +1984 184 2.83350 +1984 185 0.12006 +1984 186 23.45080 +1984 187 28.46710 +1984 188 5.52052 +1984 189 3.30895 +1984 190 0.00240 +1984 191 0.00000 +1984 192 0.38180 +1984 193 21.13840 +1984 194 12.08800 +1984 195 12.70270 +1984 196 14.71980 +1984 197 0.52108 +1984 198 0.01921 +1984 199 0.00000 +1984 200 0.68436 +1984 201 4.31748 +1984 202 3.21770 +1984 203 38.18740 +1984 204 38.04090 +1984 205 0.40101 +1984 206 3.79641 +1984 207 4.96342 +1984 208 0.50667 +1984 209 0.00240 +1984 210 0.05043 +1984 211 14.44600 +1984 212 18.66990 +1984 213 24.31530 +1984 214 14.29920 +1984 215 0.67998 +1984 216 0.64188 +1984 217 8.98519 +1984 218 2.46132 +1984 219 0.17548 +1984 220 0.05888 +1984 221 0.00115 +1984 222 0.19857 +1984 223 0.84622 +1984 224 0.92588 +1984 225 2.12306 +1984 226 11.73280 +1984 227 17.25580 +1984 228 22.49360 +1984 229 19.26570 +1984 230 5.23087 +1984 231 8.39295 +1984 232 5.44907 +1984 233 4.46893 +1984 234 17.85030 +1984 235 11.14870 +1984 236 0.15701 +1984 237 0.04156 +1984 238 2.87808 +1984 239 10.53330 +1984 240 3.71622 +1984 241 0.96051 +1984 242 22.05140 +1984 243 38.01530 +1984 244 5.76624 +1984 245 3.91854 +1984 246 11.31950 +1984 247 8.76854 +1984 248 2.58137 +1984 249 0.44629 +1984 250 0.13524 +1984 251 0.27386 +1984 252 0.32119 +1984 253 2.61180 +1984 254 3.76640 +1984 255 3.17473 +1984 256 21.75990 +1984 257 17.91570 +1984 258 2.47149 +1984 259 0.32457 +1984 260 0.33133 +1984 261 0.10143 +1984 262 2.95666 +1984 263 6.46103 +1984 264 8.46425 +1984 265 4.40371 +1984 266 11.91790 +1984 267 19.86320 +1984 268 11.55780 +1984 269 14.78830 +1984 270 38.33510 +1984 271 12.87810 +1984 272 8.77699 +1984 273 26.50170 +1984 274 20.59920 +1984 275 0.10862 +1984 276 0.68878 +1984 277 0.34562 +1984 278 0.00247 +1984 279 0.00741 +1984 280 1.51581 +1984 281 1.52075 +1984 282 0.79987 +1984 283 0.47647 +1984 284 5.34730 +1984 285 1.61456 +1984 286 0.46412 +1984 287 0.43944 +1984 288 0.51844 +1984 289 0.70606 +1984 290 2.09597 +1984 291 11.89440 +1984 292 8.30980 +1984 293 0.80975 +1984 294 7.81852 +1984 295 2.66625 +1984 296 1.59481 +1984 297 0.00247 +1984 298 0.09875 +1984 299 0.06666 +1984 300 0.00000 +1984 301 0.00000 +1984 302 0.02222 +1984 303 0.09381 +1984 304 0.00000 +1984 305 0.50049 +1984 306 11.54080 +1984 307 43.24110 +1984 308 54.37810 +1984 309 12.53610 +1984 310 0.17302 +1984 311 0.95693 +1984 312 1.28587 +1984 313 0.53827 +1984 314 0.35244 +1984 315 0.60662 +1984 316 1.41616 +1984 317 0.24991 +1984 318 0.20933 +1984 319 2.11036 +1984 320 23.24390 +1984 321 11.28230 +1984 322 3.96654 +1984 323 0.75828 +1984 324 0.46351 +1984 325 0.11107 +1984 326 0.01495 +1984 327 0.89712 +1984 328 1.18761 +1984 329 33.35350 +1984 330 46.81030 +1984 331 2.01424 +1984 332 0.49982 +1984 333 0.08330 +1984 334 0.32894 +1984 335 0.38813 +1984 336 4.16905 +1984 337 0.56547 +1984 338 0.47847 +1984 339 9.66310 +1984 340 18.20200 +1984 341 6.15655 +1984 342 12.54060 +1984 343 9.83375 +1984 344 1.66628 +1984 345 22.10670 +1984 346 13.16970 +1984 347 7.59865 +1984 348 40.29860 +1984 349 22.69220 +1984 350 9.14783 +1984 351 7.87302 +1984 352 0.26768 +1984 353 0.07361 +1984 354 0.00000 +1984 355 4.61741 +1984 356 33.16840 +1984 357 7.30086 +1984 358 1.35176 +1984 359 1.58933 +1984 360 1.41199 +1984 361 1.63282 +1984 362 1.86704 +1984 363 9.20136 +1984 364 16.06730 +1984 365 7.42132 +1984 366 3.64940 +1985 1 7.54584 +1985 2 9.60394 +1985 3 2.62276 +1985 4 1.93458 +1985 5 0.01604 +1985 6 0.02246 +1985 7 0.03048 +1985 8 0.00160 +1985 9 0.02246 +1985 10 24.07800 +1985 11 27.97610 +1985 12 7.22822 +1985 13 4.72577 +1985 14 2.83610 +1985 15 0.65930 +1985 16 0.01604 +1985 17 0.09625 +1985 18 2.42063 +1985 19 2.45913 +1985 20 24.96350 +1985 21 30.88920 +1985 22 9.43229 +1985 23 1.63942 +1985 24 23.21500 +1985 25 15.89860 +1985 26 13.12180 +1985 27 11.74710 +1985 28 0.24383 +1985 29 0.08502 +1985 30 0.92238 +1985 31 2.11396 +1985 32 8.00507 +1985 33 5.54051 +1985 34 0.06908 +1985 35 0.73920 +1985 36 0.48531 +1985 37 0.20725 +1985 38 4.47835 +1985 39 4.29700 +1985 40 0.03972 +1985 41 1.04316 +1985 42 0.00173 +1985 43 0.00173 +1985 44 0.10363 +1985 45 1.72018 +1985 46 26.65940 +1985 47 84.39610 +1985 48 4.00167 +1985 49 0.19171 +1985 50 0.88427 +1985 51 0.72365 +1985 52 1.79272 +1985 53 0.66148 +1985 54 0.73229 +1985 55 1.03626 +1985 56 0.29188 +1985 57 1.72536 +1985 58 10.75630 +1985 59 41.00080 +1985 60 30.54520 +1985 61 2.85895 +1985 62 3.63780 +1985 63 3.55126 +1985 64 1.32169 +1985 65 0.81819 +1985 66 0.68602 +1985 67 0.00315 +1985 68 0.00472 +1985 69 0.19353 +1985 70 5.23799 +1985 71 7.59973 +1985 72 21.79380 +1985 73 11.68120 +1985 74 0.56172 +1985 75 0.43584 +1985 76 0.16836 +1985 77 0.25175 +1985 78 0.68130 +1985 79 0.09755 +1985 80 0.05979 +1985 81 0.60735 +1985 82 0.12902 +1985 83 0.07867 +1985 84 16.99160 +1985 85 11.90940 +1985 86 0.00315 +1985 87 0.02990 +1985 88 0.10699 +1985 89 0.04720 +1985 90 0.00157 +1985 91 0.00000 +1985 92 17.55050 +1985 93 15.96980 +1985 94 0.00000 +1985 95 0.03161 +1985 96 0.02936 +1985 97 0.00452 +1985 98 0.01355 +1985 99 0.25517 +1985 100 0.76778 +1985 101 0.36131 +1985 102 0.13549 +1985 103 0.18517 +1985 104 0.24388 +1985 105 1.14715 +1985 106 9.38272 +1985 107 12.65710 +1985 108 12.55770 +1985 109 66.64780 +1985 110 71.03770 +1985 111 5.04250 +1985 112 0.79036 +1985 113 0.22130 +1985 114 0.01807 +1985 115 0.11291 +1985 116 0.09259 +1985 117 1.40007 +1985 118 1.09521 +1985 119 0.16711 +1985 120 0.00867 +1985 121 0.00433 +1985 122 0.00289 +1985 123 0.34234 +1985 124 0.48245 +1985 125 0.58790 +1985 126 0.63701 +1985 127 0.04622 +1985 128 0.00433 +1985 129 0.53301 +1985 130 0.35534 +1985 131 0.33078 +1985 132 1.08335 +1985 133 8.50068 +1985 134 4.60785 +1985 135 0.00289 +1985 136 0.00144 +1985 137 0.07511 +1985 138 1.85758 +1985 139 2.48304 +1985 140 0.72657 +1985 141 16.12750 +1985 142 53.29500 +1985 143 5.54386 +1985 144 0.23400 +1985 145 0.00289 +1985 146 0.00000 +1985 147 0.03900 +1985 148 0.05200 +1985 149 0.01300 +1985 150 0.03467 +1985 151 0.08342 +1985 152 1.21312 +1985 153 0.52140 +1985 154 0.01564 +1985 155 7.20400 +1985 156 5.87269 +1985 157 32.20860 +1985 158 8.87073 +1985 159 0.00869 +1985 160 0.14425 +1985 161 0.10949 +1985 162 0.01738 +1985 163 0.06604 +1985 164 20.97070 +1985 165 62.74690 +1985 166 18.65220 +1985 167 16.59090 +1985 168 16.53360 +1985 169 9.96393 +1985 170 0.99761 +1985 171 2.29763 +1985 172 63.89570 +1985 173 32.55610 +1985 174 5.12709 +1985 175 7.85053 +1985 176 2.43667 +1985 177 0.01912 +1985 178 4.39018 +1985 179 6.86682 +1985 180 10.80690 +1985 181 10.18860 +1985 182 0.04610 +1985 183 0.01190 +1985 184 0.04610 +1985 185 0.23791 +1985 186 0.27955 +1985 187 0.32118 +1985 188 1.58063 +1985 189 0.36133 +1985 190 0.36430 +1985 191 1.53602 +1985 192 20.04110 +1985 193 29.40300 +1985 194 5.87197 +1985 195 3.66088 +1985 196 3.13152 +1985 197 6.63478 +1985 198 21.16680 +1985 199 36.53740 +1985 200 36.14040 +1985 201 30.59700 +1985 202 5.22812 +1985 203 0.26319 +1985 204 2.13824 +1985 205 21.25000 +1985 206 13.62490 +1985 207 1.11670 +1985 208 0.08624 +1985 209 0.18141 +1985 210 0.79701 +1985 211 16.89180 +1985 212 11.65060 +1985 213 10.54970 +1985 214 7.02263 +1985 215 0.86651 +1985 216 0.71290 +1985 217 0.14573 +1985 218 0.04923 +1985 219 0.18709 +1985 220 1.08510 +1985 221 12.31030 +1985 222 22.92300 +1985 223 2.40849 +1985 224 0.01772 +1985 225 0.03742 +1985 226 0.35251 +1985 227 0.36827 +1985 228 0.36630 +1985 229 0.42538 +1985 230 14.91180 +1985 231 18.60430 +1985 232 1.74483 +1985 233 0.19103 +1985 234 0.02166 +1985 235 0.01575 +1985 236 32.08820 +1985 237 33.54750 +1985 238 1.40216 +1985 239 10.80180 +1985 240 3.53888 +1985 241 0.01969 +1985 242 1.06541 +1985 243 7.07279 +1985 244 4.94003 +1985 245 13.34900 +1985 246 42.89930 +1985 247 17.36880 +1985 248 8.54228 +1985 249 3.89614 +1985 250 0.42719 +1985 251 0.26178 +1985 252 0.10439 +1985 253 3.12366 +1985 254 4.05353 +1985 255 2.19700 +1985 256 1.64775 +1985 257 0.36295 +1985 258 0.64882 +1985 259 2.54710 +1985 260 5.28211 +1985 261 2.20985 +1985 262 2.00910 +1985 263 2.04764 +1985 264 0.71788 +1985 265 0.22323 +1985 266 1.77462 +1985 267 4.11295 +1985 268 15.90250 +1985 269 17.42180 +1985 270 5.36883 +1985 271 2.45717 +1985 272 1.54978 +1985 273 0.76667 +1985 274 0.01563 +1985 275 0.07295 +1985 276 4.99869 +1985 277 7.71104 +1985 278 2.89734 +1985 279 0.00782 +1985 280 0.53478 +1985 281 3.44254 +1985 282 2.62962 +1985 283 0.94059 +1985 284 1.29234 +1985 285 4.31474 +1985 286 2.59770 +1985 287 0.21561 +1985 288 0.60513 +1985 289 0.36152 +1985 290 0.62598 +1985 291 0.75951 +1985 292 2.02058 +1985 293 17.84590 +1985 294 6.89942 +1985 295 16.65970 +1985 296 14.26910 +1985 297 16.07210 +1985 298 24.76470 +1985 299 0.52892 +1985 300 0.06644 +1985 301 0.01889 +1985 302 0.00651 +1985 303 0.02996 +1985 304 7.42717 +1985 305 11.94560 +1985 306 1.46505 +1985 307 4.28609 +1985 308 1.43186 +1985 309 0.76097 +1985 310 0.82261 +1985 311 0.60925 +1985 312 0.18254 +1985 313 0.09720 +1985 314 0.08771 +1985 315 0.08297 +1985 316 8.03168 +1985 317 2.37300 +1985 318 0.00474 +1985 319 0.00711 +1985 320 0.00474 +1985 321 0.17543 +1985 322 2.50812 +1985 323 39.36900 +1985 324 7.10002 +1985 325 1.31807 +1985 326 18.60470 +1985 327 51.09410 +1985 328 33.45900 +1985 329 51.08220 +1985 330 20.25220 +1985 331 8.32563 +1985 332 5.48800 +1985 333 7.87047 +1985 334 8.91471 +1985 335 34.49320 +1985 336 41.58470 +1985 337 17.02640 +1985 338 1.60799 +1985 339 1.86503 +1985 340 3.26580 +1985 341 8.65966 +1985 342 8.47634 +1985 343 1.45258 +1985 344 1.14174 +1985 345 2.39705 +1985 346 2.66007 +1985 347 2.93902 +1985 348 5.29024 +1985 349 11.02480 +1985 350 8.54210 +1985 351 0.45032 +1985 352 2.97688 +1985 353 3.18610 +1985 354 2.74176 +1985 355 2.62221 +1985 356 15.86870 +1985 357 17.48870 +1985 358 4.56894 +1985 359 11.40540 +1985 360 7.72913 +1985 361 1.74947 +1985 362 36.80850 +1985 363 27.76230 +1985 364 0.38656 +1985 365 0.19333 +1986 1 10.36200 +1986 2 54.68980 +1986 3 65.88290 +1986 4 10.12350 +1986 5 8.76764 +1986 6 9.56607 +1986 7 3.41717 +1986 8 32.10030 +1986 9 10.47500 +1986 10 0.10294 +1986 11 19.36060 +1986 12 20.15150 +1986 13 0.00251 +1986 14 0.00000 +1986 15 1.05704 +1986 16 1.46881 +1986 17 0.35151 +1986 18 0.35151 +1986 19 5.34545 +1986 20 5.81999 +1986 21 2.42792 +1986 22 3.09579 +1986 23 3.02047 +1986 24 70.06330 +1986 25 73.27460 +1986 26 0.00251 +1986 27 0.00251 +1986 28 0.64778 +1986 29 0.64527 +1986 30 0.03264 +1986 31 5.03979 +1986 32 22.43890 +1986 33 5.78790 +1986 34 1.83486 +1986 35 4.18765 +1986 36 11.90120 +1986 37 5.88529 +1986 38 0.00664 +1986 39 1.73305 +1986 40 1.22398 +1986 41 0.76803 +1986 42 0.01328 +1986 43 0.01107 +1986 44 0.09739 +1986 45 1.45417 +1986 46 12.65810 +1986 47 15.47790 +1986 48 0.34528 +1986 49 0.13501 +1986 50 4.04157 +1986 51 4.14338 +1986 52 0.05091 +1986 53 2.64273 +1986 54 17.06270 +1986 55 38.20230 +1986 56 1.19521 +1986 57 3.91983 +1986 58 12.76660 +1986 59 9.84391 +1986 60 4.04576 +1986 61 0.93415 +1986 62 20.42710 +1986 63 5.74102 +1986 64 0.44860 +1986 65 0.11425 +1986 66 0.06553 +1986 67 0.53596 +1986 68 1.22482 +1986 69 0.74598 +1986 70 7.47156 +1986 71 38.55240 +1986 72 15.84030 +1986 73 18.25630 +1986 74 11.94240 +1986 75 0.44020 +1986 76 0.00336 +1986 77 0.00336 +1986 78 0.00672 +1986 79 0.04536 +1986 80 0.04200 +1986 81 0.23858 +1986 82 0.90223 +1986 83 0.84175 +1986 84 0.00000 +1986 85 0.00336 +1986 86 0.27890 +1986 87 0.96944 +1986 88 0.42843 +1986 89 5.02696 +1986 90 5.93607 +1986 91 0.67380 +1986 92 0.96994 +1986 93 1.81676 +1986 94 1.52894 +1986 95 4.43043 +1986 96 6.13239 +1986 97 0.03827 +1986 98 0.01830 +1986 99 0.29281 +1986 100 0.18467 +1986 101 0.00166 +1986 102 3.40892 +1986 103 1.62710 +1986 104 0.11480 +1986 105 0.00166 +1986 106 0.00333 +1986 107 0.00333 +1986 108 0.00333 +1986 109 0.10980 +1986 110 1.19620 +1986 111 3.71005 +1986 112 10.34650 +1986 113 7.80274 +1986 114 0.09982 +1986 115 3.32074 +1986 116 9.55462 +1986 117 42.81190 +1986 118 32.02290 +1986 119 0.00665 +1986 120 0.32487 +1986 121 0.18151 +1986 122 0.10917 +1986 123 0.84441 +1986 124 0.63528 +1986 125 0.20650 +1986 126 0.14336 +1986 127 0.59450 +1986 128 0.06050 +1986 129 0.03288 +1986 130 0.00789 +1986 131 2.17415 +1986 132 2.03867 +1986 133 0.52348 +1986 134 0.57083 +1986 135 0.34723 +1986 136 19.12930 +1986 137 25.66490 +1986 138 1.29028 +1986 139 27.97590 +1986 140 39.44110 +1986 141 8.37829 +1986 142 0.11048 +1986 143 0.09996 +1986 144 0.85624 +1986 145 50.80900 +1986 146 19.59890 +1986 147 0.84046 +1986 148 0.04735 +1986 149 7.25899 +1986 150 13.10410 +1986 151 0.77024 +1986 152 1.37213 +1986 153 1.14567 +1986 154 0.27413 +1986 155 1.94124 +1986 156 0.07002 +1986 157 0.00447 +1986 158 0.04172 +1986 159 5.57641 +1986 160 30.46090 +1986 161 16.41340 +1986 162 0.03427 +1986 163 0.03427 +1986 164 0.04023 +1986 165 0.19964 +1986 166 0.19964 +1986 167 0.00298 +1986 168 0.00149 +1986 169 0.00596 +1986 170 5.59876 +1986 171 11.31520 +1986 172 4.87917 +1986 173 0.21305 +1986 174 4.12234 +1986 175 16.76200 +1986 176 8.57840 +1986 177 0.65552 +1986 178 7.73814 +1986 179 7.77986 +1986 180 7.90202 +1986 181 0.24402 +1986 182 0.38325 +1986 183 1.35035 +1986 184 0.05988 +1986 185 0.00000 +1986 186 21.15950 +1986 187 22.17600 +1986 188 1.05693 +1986 189 0.25001 +1986 190 42.05110 +1986 191 14.74310 +1986 192 8.93299 +1986 193 2.48663 +1986 194 0.80093 +1986 195 0.00000 +1986 196 0.00150 +1986 197 0.00299 +1986 198 0.00299 +1986 199 0.04341 +1986 200 0.23953 +1986 201 0.19312 +1986 202 0.00599 +1986 203 0.00000 +1986 204 1.01202 +1986 205 37.06440 +1986 206 61.14170 +1986 207 6.79069 +1986 208 2.20218 +1986 209 0.29792 +1986 210 0.22157 +1986 211 0.16468 +1986 212 4.22927 +1986 213 2.88975 +1986 214 0.82514 +1986 215 1.11235 +1986 216 2.83795 +1986 217 0.04238 +1986 218 0.48731 +1986 219 32.89370 +1986 220 37.94690 +1986 221 14.13210 +1986 222 2.35064 +1986 223 0.56029 +1986 224 0.15655 +1986 225 0.30840 +1986 226 0.31193 +1986 227 0.08593 +1986 228 0.10123 +1986 229 0.86398 +1986 230 3.12634 +1986 231 22.08450 +1986 232 58.67540 +1986 233 49.13980 +1986 234 21.33700 +1986 235 16.81230 +1986 236 7.20965 +1986 237 0.09770 +1986 238 1.09587 +1986 239 12.65600 +1986 240 7.99948 +1986 241 0.98640 +1986 242 0.18127 +1986 243 1.85486 +1986 244 5.61825 +1986 245 5.17012 +1986 246 1.45170 +1986 247 0.24944 +1986 248 0.00145 +1986 249 2.04920 +1986 250 15.57130 +1986 251 11.08130 +1986 252 5.56459 +1986 253 0.11747 +1986 254 9.83701 +1986 255 7.49922 +1986 256 0.02320 +1986 257 26.54670 +1986 258 40.34000 +1986 259 11.25250 +1986 260 2.28704 +1986 261 0.72947 +1986 262 11.40180 +1986 263 5.33545 +1986 264 1.56481 +1986 265 6.05477 +1986 266 1.27187 +1986 267 6.58556 +1986 268 10.61430 +1986 269 2.62784 +1986 270 1.57642 +1986 271 0.82954 +1986 272 0.00290 +1986 273 0.00000 +1986 274 0.01147 +1986 275 0.95567 +1986 276 3.18048 +1986 277 5.70345 +1986 278 1.46218 +1986 279 4.62354 +1986 280 3.96604 +1986 281 2.19805 +1986 282 10.29640 +1986 283 20.27940 +1986 284 18.65860 +1986 285 4.95230 +1986 286 3.89150 +1986 287 3.23400 +1986 288 12.48490 +1986 289 9.96002 +1986 290 2.68353 +1986 291 2.44079 +1986 292 0.58105 +1986 293 10.88510 +1986 294 13.77320 +1986 295 3.18239 +1986 296 5.95575 +1986 297 25.57380 +1986 298 11.69930 +1986 299 18.91280 +1986 300 10.32320 +1986 301 0.08792 +1986 302 2.24965 +1986 303 7.12932 +1986 304 9.14950 +1986 305 4.00068 +1986 306 1.42523 +1986 307 1.78598 +1986 308 1.77866 +1986 309 0.66608 +1986 310 0.55002 +1986 311 0.05542 +1986 312 0.14012 +1986 313 0.06797 +1986 314 0.65876 +1986 315 12.44650 +1986 316 8.77515 +1986 317 1.04984 +1986 318 3.57824 +1986 319 4.12303 +1986 320 0.70582 +1986 321 5.01602 +1986 322 4.78911 +1986 323 0.05228 +1986 324 0.04705 +1986 325 0.03137 +1986 326 6.07840 +1986 327 25.20770 +1986 328 22.44610 +1986 329 11.25750 +1986 330 13.45660 +1986 331 5.11954 +1986 332 1.20146 +1986 333 17.29410 +1986 334 22.06650 +1986 335 3.34948 +1986 336 1.14401 +1986 337 1.47031 +1986 338 2.08753 +1986 339 1.32092 +1986 340 0.34596 +1986 341 0.42851 +1986 342 0.77643 +1986 343 0.27912 +1986 344 0.00590 +1986 345 4.64485 +1986 346 9.29757 +1986 347 2.40400 +1986 348 0.85703 +1986 349 0.11597 +1986 350 1.00838 +1986 351 0.36758 +1986 352 0.13170 +1986 353 0.47765 +1986 354 41.31420 +1986 355 39.86360 +1986 356 0.02948 +1986 357 1.36613 +1986 358 3.55391 +1986 359 1.39758 +1986 360 0.18674 +1986 361 0.05307 +1986 362 0.13563 +1986 363 0.67815 +1986 364 0.16512 +1986 365 0.19149 +1987 1 0.06383 +1987 2 0.00345 +1987 3 0.00345 +1987 4 0.00345 +1987 5 0.03795 +1987 6 0.17942 +1987 7 0.38816 +1987 8 0.39334 +1987 9 0.55551 +1987 10 0.42957 +1987 11 0.28810 +1987 12 0.76770 +1987 13 0.77633 +1987 14 0.11041 +1987 15 1.29733 +1987 16 0.25015 +1987 17 3.41068 +1987 18 4.66489 +1987 19 11.37930 +1987 20 9.40395 +1987 21 68.11350 +1987 22 43.95580 +1987 23 17.79700 +1987 24 16.94640 +1987 25 12.98720 +1987 26 2.40490 +1987 27 0.00173 +1987 28 0.13629 +1987 29 0.27430 +1987 30 0.00173 +1987 31 0.00173 +1987 32 0.00378 +1987 33 0.00000 +1987 34 0.05485 +1987 35 6.24761 +1987 36 2.98478 +1987 37 0.46909 +1987 38 0.83604 +1987 39 0.34425 +1987 40 0.00189 +1987 41 0.00189 +1987 42 0.00189 +1987 43 0.82091 +1987 44 8.09939 +1987 45 9.31183 +1987 46 1.97661 +1987 47 1.88582 +1987 48 4.66443 +1987 49 0.47287 +1987 50 0.00189 +1987 51 0.05296 +1987 52 0.01513 +1987 53 1.18597 +1987 54 0.94197 +1987 55 0.10025 +1987 56 1.39214 +1987 57 5.11082 +1987 58 14.12380 +1987 59 15.91470 +1987 60 21.04720 +1987 61 35.34120 +1987 62 20.29380 +1987 63 11.36990 +1987 64 0.00344 +1987 65 0.12041 +1987 66 0.27178 +1987 67 7.34827 +1987 68 41.49570 +1987 69 22.59180 +1987 70 9.32983 +1987 71 0.23049 +1987 72 0.15137 +1987 73 12.00290 +1987 74 15.25390 +1987 75 0.53323 +1987 76 1.09054 +1987 77 6.95953 +1987 78 9.78050 +1987 79 87.36050 +1987 80 41.18610 +1987 81 28.90110 +1987 82 19.76400 +1987 83 2.52855 +1987 84 0.63300 +1987 85 0.28554 +1987 86 0.08601 +1987 87 0.26490 +1987 88 0.36466 +1987 89 1.24879 +1987 90 24.31040 +1987 91 1.06164 +1987 92 0.34763 +1987 93 0.08691 +1987 94 1.13321 +1987 95 1.13662 +1987 96 0.00511 +1987 97 0.06646 +1987 98 1.79440 +1987 99 14.91580 +1987 100 24.10930 +1987 101 11.50430 +1987 102 0.24368 +1987 103 0.14825 +1987 104 0.00341 +1987 105 0.00341 +1987 106 0.00341 +1987 107 0.00170 +1987 108 0.04942 +1987 109 7.29517 +1987 110 47.96310 +1987 111 20.68240 +1987 112 2.53226 +1987 113 2.80833 +1987 114 0.49248 +1987 115 0.23175 +1987 116 0.00000 +1987 117 0.01193 +1987 118 0.17552 +1987 119 0.19426 +1987 120 4.92651 +1987 121 1.29368 +1987 122 0.00301 +1987 123 0.00602 +1987 124 0.14892 +1987 125 7.46574 +1987 126 0.00150 +1987 127 0.00000 +1987 128 0.00301 +1987 129 0.00150 +1987 130 0.01504 +1987 131 0.03159 +1987 132 0.12485 +1987 133 0.20007 +1987 134 0.28732 +1987 135 0.03309 +1987 136 0.10229 +1987 137 20.78610 +1987 138 29.17850 +1987 139 17.38350 +1987 140 7.12577 +1987 141 2.92131 +1987 142 2.43543 +1987 143 0.21511 +1987 144 0.00451 +1987 145 0.05115 +1987 146 0.01956 +1987 147 1.36589 +1987 148 11.47920 +1987 149 18.11600 +1987 150 28.50010 +1987 151 7.59169 +1987 152 0.02306 +1987 153 0.12948 +1987 154 1.03942 +1987 155 2.83447 +1987 156 0.51262 +1987 157 0.05144 +1987 158 0.05499 +1987 159 0.01596 +1987 160 0.00532 +1987 161 0.57470 +1987 162 0.72015 +1987 163 0.00355 +1987 164 0.78045 +1987 165 17.09550 +1987 166 3.08457 +1987 167 0.83544 +1987 168 0.00710 +1987 169 0.86382 +1987 170 0.78755 +1987 171 0.12771 +1987 172 0.01064 +1987 173 0.00000 +1987 174 6.80591 +1987 175 17.42010 +1987 176 25.18920 +1987 177 8.63289 +1987 178 20.27760 +1987 179 7.87194 +1987 180 11.36450 +1987 181 3.17908 +1987 182 0.04596 +1987 183 0.00300 +1987 184 0.04296 +1987 185 0.04396 +1987 186 0.00000 +1987 187 0.00100 +1987 188 0.05795 +1987 189 0.20681 +1987 190 0.09291 +1987 191 0.07093 +1987 192 0.43760 +1987 193 0.48256 +1987 194 9.50328 +1987 195 16.24610 +1987 196 2.14104 +1987 197 0.04896 +1987 198 0.00100 +1987 199 0.04396 +1987 200 1.83332 +1987 201 3.61568 +1987 202 11.49550 +1987 203 7.99467 +1987 204 0.13887 +1987 205 21.37540 +1987 206 21.00870 +1987 207 3.29098 +1987 208 0.20681 +1987 209 0.06994 +1987 210 0.00000 +1987 211 0.02498 +1987 212 11.22760 +1987 213 6.31792 +1987 214 0.01659 +1987 215 11.14240 +1987 216 43.51190 +1987 217 10.28170 +1987 218 0.44251 +1987 219 0.93259 +1987 220 0.00221 +1987 221 0.01991 +1987 222 0.28652 +1987 223 0.26108 +1987 224 0.16041 +1987 225 0.00111 +1987 226 0.00221 +1987 227 0.00221 +1987 228 0.00443 +1987 229 0.11395 +1987 230 0.13386 +1987 231 0.04093 +1987 232 0.11948 +1987 233 7.27263 +1987 234 12.55180 +1987 235 0.19249 +1987 236 1.94704 +1987 237 21.90090 +1987 238 28.36590 +1987 239 5.55017 +1987 240 2.02780 +1987 241 1.25562 +1987 242 0.16815 +1987 243 0.71862 +1987 244 9.90753 +1987 245 45.90160 +1987 246 18.56820 +1987 247 6.46044 +1987 248 0.00286 +1987 249 0.30921 +1987 250 9.92901 +1987 251 20.04120 +1987 252 3.67327 +1987 253 11.91020 +1987 254 21.82630 +1987 255 9.44802 +1987 256 3.51438 +1987 257 8.40301 +1987 258 2.51661 +1987 259 0.61412 +1987 260 0.72292 +1987 261 0.73866 +1987 262 0.41228 +1987 263 0.09019 +1987 264 5.59580 +1987 265 4.66245 +1987 266 0.89184 +1987 267 0.05440 +1987 268 0.03579 +1987 269 0.76157 +1987 270 0.55543 +1987 271 0.33498 +1987 272 0.46095 +1987 273 5.68977 +1987 274 4.17450 +1987 275 0.05151 +1987 276 0.01073 +1987 277 0.84134 +1987 278 7.99701 +1987 279 31.36350 +1987 280 9.51872 +1987 281 14.99600 +1987 282 9.43072 +1987 283 0.83061 +1987 284 1.65478 +1987 285 23.10680 +1987 286 27.74270 +1987 287 10.67560 +1987 288 7.11919 +1987 289 0.05580 +1987 290 0.02146 +1987 291 0.04078 +1987 292 0.61169 +1987 293 0.03863 +1987 294 0.00000 +1987 295 0.00429 +1987 296 0.76622 +1987 297 4.86989 +1987 298 9.29980 +1987 299 6.84446 +1987 300 3.14858 +1987 301 30.71530 +1987 302 15.55620 +1987 303 5.91942 +1987 304 0.35908 +1987 305 0.09117 +1987 306 0.20479 +1987 307 0.01543 +1987 308 1.17262 +1987 309 0.98045 +1987 310 12.80200 +1987 311 49.74930 +1987 312 24.73300 +1987 313 3.35655 +1987 314 0.98747 +1987 315 0.00701 +1987 316 3.82504 +1987 317 46.36750 +1987 318 22.78890 +1987 319 0.01403 +1987 320 0.11081 +1987 321 1.89919 +1987 322 1.70984 +1987 323 1.10108 +1987 324 13.84980 +1987 325 17.32140 +1987 326 2.12642 +1987 327 1.50084 +1987 328 5.65129 +1987 329 12.54530 +1987 330 7.00345 +1987 331 5.57555 +1987 332 9.95604 +1987 333 5.20244 +1987 334 3.19538 +1987 335 0.11431 +1987 336 0.25459 +1987 337 14.03540 +1987 338 8.04993 +1987 339 2.11986 +1987 340 1.36128 +1987 341 9.04231 +1987 342 46.44470 +1987 343 24.93430 +1987 344 4.36961 +1987 345 2.28093 +1987 346 1.52408 +1987 347 2.96676 +1987 348 14.30560 +1987 349 26.94850 +1987 350 30.50940 +1987 351 12.92870 +1987 352 1.22793 +1987 353 6.30589 +1987 354 1.71632 +1987 355 1.86181 +1987 356 8.89337 +1987 357 8.66649 +1987 358 28.20250 +1987 359 31.02370 +1987 360 0.23381 +1987 361 0.03117 +1987 362 0.07274 +1987 363 0.12123 +1987 364 0.81919 +1987 365 0.16140 +1988 1 5.23653 +1988 2 13.63960 +1988 3 0.46114 +1988 4 0.24082 +1988 5 1.10674 +1988 6 0.89154 +1988 7 0.00000 +1988 8 1.09906 +1988 9 0.87105 +1988 10 0.58668 +1988 11 0.06405 +1988 12 0.02050 +1988 13 0.00256 +1988 14 0.13578 +1988 15 0.02050 +1988 16 0.00000 +1988 17 0.00256 +1988 18 3.08709 +1988 19 3.06916 +1988 20 0.22289 +1988 21 0.27412 +1988 22 0.03843 +1988 23 0.01793 +1988 24 0.06661 +1988 25 0.01025 +1988 26 0.00256 +1988 27 0.00000 +1988 28 1.18104 +1988 29 1.18872 +1988 30 0.02306 +1988 31 0.12255 +1988 32 0.22240 +1988 33 0.07262 +1988 34 12.93410 +1988 35 15.38510 +1988 36 3.59323 +1988 37 11.26990 +1988 38 31.39500 +1988 39 4.96243 +1988 40 5.92618 +1988 41 36.29840 +1988 42 19.44280 +1988 43 16.55610 +1988 44 19.88760 +1988 45 14.59530 +1988 46 8.31208 +1988 47 18.59100 +1988 48 21.43530 +1988 49 1.52655 +1988 50 3.67341 +1988 51 8.05488 +1988 52 0.37218 +1988 53 2.40406 +1988 54 2.02431 +1988 55 0.95920 +1988 56 0.11044 +1988 57 0.31620 +1988 58 0.73075 +1988 59 0.43421 +1988 60 0.23077 +1988 61 0.00733 +1988 62 0.02930 +1988 63 0.46154 +1988 64 0.08791 +1988 65 28.85390 +1988 66 51.14360 +1988 67 40.79920 +1988 68 61.78480 +1988 69 39.88340 +1988 70 16.56800 +1988 71 11.95620 +1988 72 7.34443 +1988 73 6.10266 +1988 74 1.15020 +1988 75 5.55686 +1988 76 5.06235 +1988 77 0.81686 +1988 78 0.71430 +1988 79 0.18682 +1988 80 0.08059 +1988 81 0.61906 +1988 82 0.38462 +1988 83 1.15753 +1988 84 9.22358 +1988 85 9.31882 +1988 86 0.38828 +1988 87 0.32235 +1988 88 1.05862 +1988 89 0.78390 +1988 90 0.29304 +1988 91 2.33527 +1988 92 1.95533 +1988 93 0.09363 +1988 94 0.00407 +1988 95 0.01357 +1988 96 0.02578 +1988 97 0.01357 +1988 98 0.89150 +1988 99 1.60524 +1988 100 17.29400 +1988 101 0.66625 +1988 102 0.00407 +1988 103 0.00543 +1988 104 2.36376 +1988 105 5.56203 +1988 106 2.73285 +1988 107 1.61067 +1988 108 0.00271 +1988 109 0.00136 +1988 110 0.02307 +1988 111 1.38678 +1988 112 2.92417 +1988 113 0.41115 +1988 114 0.08413 +1988 115 0.09498 +1988 116 0.01493 +1988 117 0.03392 +1988 118 0.16012 +1988 119 0.47764 +1988 120 0.77752 +1988 121 0.00146 +1988 122 0.00146 +1988 123 0.00876 +1988 124 0.01022 +1988 125 0.65825 +1988 126 0.29629 +1988 127 0.00584 +1988 128 7.83479 +1988 129 52.63670 +1988 130 17.43120 +1988 131 5.44991 +1988 132 7.93842 +1988 133 2.27834 +1988 134 0.08319 +1988 135 0.49770 +1988 136 3.09276 +1988 137 1.29461 +1988 138 6.23514 +1988 139 15.59660 +1988 140 21.82740 +1988 141 14.56180 +1988 142 21.65950 +1988 143 2.14406 +1988 144 0.39699 +1988 145 2.17617 +1988 146 6.29206 +1988 147 0.26418 +1988 148 0.12552 +1988 149 1.64636 +1988 150 8.10626 +1988 151 6.56208 +1988 152 0.00279 +1988 153 0.00000 +1988 154 0.00133 +1988 155 0.00266 +1988 156 0.01596 +1988 157 0.03724 +1988 158 11.48090 +1988 159 29.96050 +1988 160 8.41649 +1988 161 1.52689 +1988 162 2.09348 +1988 163 7.62778 +1988 164 4.81608 +1988 165 1.51891 +1988 166 0.00532 +1988 167 0.02926 +1988 168 0.00665 +1988 169 42.03730 +1988 170 43.65990 +1988 171 6.58769 +1988 172 6.48262 +1988 173 0.41364 +1988 174 0.17424 +1988 175 1.82748 +1988 176 0.36177 +1988 177 0.70359 +1988 178 0.95098 +1988 179 0.10640 +1988 180 5.99715 +1988 181 15.82880 +1988 182 3.16519 +1988 183 1.17318 +1988 184 1.41920 +1988 185 0.75091 +1988 186 0.21664 +1988 187 1.70010 +1988 188 0.08078 +1988 189 0.00184 +1988 190 0.00918 +1988 191 0.34149 +1988 192 11.01020 +1988 193 2.01037 +1988 194 0.00184 +1988 195 0.00184 +1988 196 0.43696 +1988 197 26.44700 +1988 198 26.44700 +1988 199 7.09414 +1988 200 1.00243 +1988 201 0.21848 +1988 202 0.02754 +1988 203 0.07711 +1988 204 2.38491 +1988 205 25.47390 +1988 206 37.17080 +1988 207 10.57510 +1988 208 23.94640 +1988 209 9.87011 +1988 210 0.80782 +1988 211 2.87511 +1988 212 3.53789 +1988 213 2.62604 +1988 214 2.04059 +1988 215 0.00283 +1988 216 0.00566 +1988 217 0.08626 +1988 218 0.55717 +1988 219 9.71789 +1988 220 82.20470 +1988 221 54.21770 +1988 222 21.71250 +1988 223 13.60110 +1988 224 10.92840 +1988 225 4.43754 +1988 226 0.10040 +1988 227 0.00990 +1988 228 0.01131 +1988 229 3.09977 +1988 230 11.01610 +1988 231 6.36782 +1988 232 15.24860 +1988 233 24.02040 +1988 234 3.24825 +1988 235 1.01817 +1988 236 37.90710 +1988 237 19.19960 +1988 238 0.00141 +1988 239 0.01697 +1988 240 0.01697 +1988 241 1.56544 +1988 242 25.49960 +1988 243 0.80181 +1988 244 8.40627 +1988 245 9.02465 +1988 246 2.58976 +1988 247 1.33208 +1988 248 5.60495 +1988 249 3.08726 +1988 250 0.25107 +1988 251 11.51680 +1988 252 0.83691 +1988 253 0.28362 +1988 254 0.88805 +1988 255 0.64163 +1988 256 0.66720 +1988 257 2.46655 +1988 258 1.30186 +1988 259 0.00000 +1988 260 0.03487 +1988 261 3.65449 +1988 262 17.46350 +1988 263 13.34400 +1988 264 23.31250 +1988 265 16.32900 +1988 266 2.40146 +1988 267 0.09066 +1988 268 0.01395 +1988 269 0.10461 +1988 270 0.71137 +1988 271 0.55096 +1988 272 1.57153 +1988 273 12.52110 +1988 274 8.01521 +1988 275 6.94586 +1988 276 20.11410 +1988 277 7.60210 +1988 278 1.11284 +1988 279 14.93930 +1988 280 18.75030 +1988 281 5.44758 +1988 282 2.31265 +1988 283 8.55088 +1988 284 9.45617 +1988 285 15.81690 +1988 286 3.65478 +1988 287 4.19440 +1988 288 0.09488 +1988 289 8.75842 +1988 290 0.07314 +1988 291 10.19940 +1988 292 14.09930 +1988 293 16.92390 +1988 294 13.02600 +1988 295 2.05964 +1988 296 0.00791 +1988 297 0.16406 +1988 298 0.09883 +1988 299 0.18976 +1988 300 0.06721 +1988 301 0.00198 +1988 302 0.38149 +1988 303 2.62298 +1988 304 5.53652 +1988 305 1.72764 +1988 306 0.07741 +1988 307 0.14377 +1988 308 3.37786 +1988 309 1.02110 +1988 310 11.74820 +1988 311 13.45740 +1988 312 3.51180 +1988 313 0.45710 +1988 314 17.21980 +1988 315 30.77680 +1988 316 1.13415 +1988 317 0.93877 +1988 318 0.00000 +1988 319 0.00737 +1988 320 0.00123 +1988 321 0.00000 +1988 322 4.58328 +1988 323 23.01590 +1988 324 7.51141 +1988 325 2.02008 +1988 326 0.61561 +1988 327 0.00123 +1988 328 0.01229 +1988 329 0.01352 +1988 330 1.97339 +1988 331 19.24120 +1988 332 65.79640 +1988 333 48.19570 +1988 334 10.09550 +1988 335 5.35757 +1988 336 0.05064 +1988 337 4.11280 +1988 338 4.21409 +1988 339 5.38156 +1988 340 4.54727 +1988 341 6.76759 +1988 342 5.63744 +1988 343 0.00267 +1988 344 0.00000 +1988 345 0.10129 +1988 346 0.71168 +1988 347 1.50598 +1988 348 0.64238 +1988 349 0.98622 +1988 350 0.74633 +1988 351 0.09862 +1988 352 0.00800 +1988 353 0.07996 +1988 354 1.50865 +1988 355 1.94312 +1988 356 5.14966 +1988 357 7.54324 +1988 358 11.76800 +1988 359 1.83916 +1988 360 0.14660 +1988 361 2.45488 +1988 362 21.39830 +1988 363 48.72450 +1988 364 36.21290 +1988 365 20.16150 +1988 366 50.65330 +1989 1 54.91630 +1989 2 22.82320 +1989 3 4.04251 +1989 4 0.78117 +1989 5 4.58917 +1989 6 10.06510 +1989 7 13.68210 +1989 8 36.29250 +1989 9 13.49730 +1989 10 0.00155 +1989 11 0.29197 +1989 12 1.21757 +1989 13 1.94593 +1989 14 1.93196 +1989 15 1.16632 +1989 16 0.23916 +1989 17 7.67191 +1989 18 5.30045 +1989 19 6.78825 +1989 20 36.86250 +1989 21 46.37160 +1989 22 0.92249 +1989 23 8.91433 +1989 24 16.01320 +1989 25 20.71570 +1989 26 8.85997 +1989 27 12.77050 +1989 28 3.65581 +1989 29 0.00000 +1989 30 0.00621 +1989 31 2.43389 +1989 32 14.63380 +1989 33 23.70000 +1989 34 25.16030 +1989 35 25.89240 +1989 36 8.45966 +1989 37 4.69284 +1989 38 0.69974 +1989 39 3.84859 +1989 40 16.95550 +1989 41 7.68006 +1989 42 0.33846 +1989 43 0.15022 +1989 44 0.02662 +1989 45 0.00000 +1989 46 0.00000 +1989 47 0.00951 +1989 48 3.34660 +1989 49 4.32966 +1989 50 1.50977 +1989 51 0.32325 +1989 52 15.81650 +1989 53 11.95840 +1989 54 4.45325 +1989 55 5.05032 +1989 56 0.04944 +1989 57 0.00000 +1989 58 0.18635 +1989 59 0.54453 +1989 60 3.23119 +1989 61 7.80121 +1989 62 5.92685 +1989 63 0.47253 +1989 64 0.43428 +1989 65 1.11157 +1989 66 0.02700 +1989 67 2.66191 +1989 68 2.38514 +1989 69 0.22051 +1989 70 0.75604 +1989 71 0.44103 +1989 72 0.00675 +1989 73 2.50215 +1989 74 12.41850 +1989 75 4.21900 +1989 76 1.48734 +1989 77 0.00225 +1989 78 0.07425 +1989 79 0.08325 +1989 80 0.00450 +1989 81 0.00225 +1989 82 0.13951 +1989 83 4.00073 +1989 84 0.02250 +1989 85 1.30058 +1989 86 0.81455 +1989 87 3.33920 +1989 88 2.41664 +1989 89 0.29927 +1989 90 1.70255 +1989 91 0.52732 +1989 92 0.02053 +1989 93 0.00128 +1989 94 0.00128 +1989 95 0.00128 +1989 96 0.00385 +1989 97 0.26045 +1989 98 0.17834 +1989 99 0.00257 +1989 100 1.26248 +1989 101 0.00770 +1989 102 0.00000 +1989 103 0.00000 +1989 104 0.00257 +1989 105 4.90750 +1989 106 2.63273 +1989 107 1.29584 +1989 108 8.41653 +1989 109 2.40051 +1989 110 0.18732 +1989 111 0.55939 +1989 112 0.00770 +1989 113 0.00128 +1989 114 0.02694 +1989 115 0.00000 +1989 116 0.01411 +1989 117 0.05645 +1989 118 3.92344 +1989 119 58.39480 +1989 120 72.16970 +1989 121 20.06350 +1989 122 27.08660 +1989 123 20.35260 +1989 124 7.15729 +1989 125 0.20237 +1989 126 2.42225 +1989 127 2.08565 +1989 128 0.82807 +1989 129 0.00619 +1989 130 0.01859 +1989 131 0.01446 +1989 132 0.04130 +1989 133 0.50386 +1989 134 5.52388 +1989 135 5.51562 +1989 136 0.17552 +1989 137 0.00826 +1989 138 0.00413 +1989 139 0.00206 +1989 140 0.00206 +1989 141 0.93958 +1989 142 4.84243 +1989 143 9.66420 +1989 144 46.96230 +1989 145 32.20780 +1989 146 15.26240 +1989 147 0.00000 +1989 148 15.87990 +1989 149 15.58671 +1989 150 3.54767 +1989 151 0.00357 +1989 152 4.35922 +1989 153 10.42950 +1989 154 0.12524 +1989 155 0.00151 +1989 156 0.00151 +1989 157 0.00754 +1989 158 0.37270 +1989 159 0.93250 +1989 160 9.91953 +1989 161 53.32160 +1989 162 36.24540 +1989 163 1.25088 +1989 164 0.01811 +1989 165 30.97170 +1989 166 27.19500 +1989 167 1.76843 +1989 168 0.11619 +1989 169 9.85917 +1989 170 13.18780 +1989 171 1.97063 +1989 172 0.00151 +1989 173 0.68806 +1989 174 29.60320 +1989 175 24.50910 +1989 176 16.50740 +1989 177 0.43155 +1989 178 0.01962 +1989 179 0.02716 +1989 180 0.01660 +1989 181 0.00697 +1989 182 0.00929 +1989 183 0.00116 +1989 184 0.00349 +1989 185 4.82587 +1989 186 28.25700 +1989 187 0.23932 +1989 188 0.06273 +1989 189 0.09759 +1989 190 0.03369 +1989 191 0.49025 +1989 192 15.95070 +1989 193 4.97922 +1989 194 14.37420 +1989 195 20.31190 +1989 196 6.86473 +1989 197 3.39809 +1989 198 10.24420 +1989 199 13.35070 +1989 200 0.02091 +1989 201 0.09526 +1989 202 0.09642 +1989 203 0.00349 +1989 204 0.01510 +1989 205 0.01394 +1989 206 8.17633 +1989 207 9.55648 +1989 208 0.00349 +1989 209 0.00232 +1989 210 0.00116 +1989 211 0.00465 +1989 212 1.59540 +1989 213 3.56685 +1989 214 7.24712 +1989 215 16.36340 +1989 216 5.37678 +1989 217 0.20836 +1989 218 0.24535 +1989 219 0.04069 +1989 220 2.40913 +1989 221 15.19580 +1989 222 3.99344 +1989 223 0.18987 +1989 224 5.77378 +1989 225 1.67924 +1989 226 0.09987 +1989 227 0.29467 +1989 228 0.31686 +1989 229 0.01849 +1989 230 0.11343 +1989 231 1.37101 +1989 232 2.99600 +1989 233 16.24750 +1989 234 24.91000 +1989 235 4.48661 +1989 236 5.89830 +1989 237 19.86490 +1989 238 2.32283 +1989 239 8.72046 +1989 240 15.18470 +1989 241 17.12040 +1989 242 22.44660 +1989 243 7.18586 +1989 244 1.53597 +1989 245 0.00106 +1989 246 0.00000 +1989 247 0.10261 +1989 248 0.44641 +1989 249 28.74130 +1989 250 57.44780 +1989 251 31.77200 +1989 252 0.35755 +1989 253 0.72885 +1989 254 0.93724 +1989 255 4.75708 +1989 256 6.83572 +1989 257 7.54235 +1989 258 11.95460 +1989 259 7.47465 +1989 260 5.97676 +1989 261 8.46478 +1989 262 3.66645 +1989 263 3.64000 +1989 264 4.57407 +1989 265 0.87800 +1989 266 0.04760 +1989 267 14.60760 +1989 268 34.05690 +1989 269 14.98740 +1989 270 2.83394 +1989 271 4.89988 +1989 272 2.45840 +1989 273 2.51277 +1989 274 18.57550 +1989 275 16.70200 +1989 276 24.57420 +1989 277 21.50800 +1989 278 12.61190 +1989 279 43.07050 +1989 280 54.66380 +1989 281 10.59550 +1989 282 7.25767 +1989 283 5.25941 +1989 284 16.94630 +1989 285 2.89086 +1989 286 7.59938 +1989 287 20.60240 +1989 288 13.98260 +1989 289 1.77609 +1989 290 4.39280 +1989 291 3.16240 +1989 292 2.49328 +1989 293 14.84280 +1989 294 37.01980 +1989 295 11.96230 +1989 296 0.53529 +1989 297 0.14812 +1989 298 0.41317 +1989 299 1.00823 +1989 300 1.15634 +1989 301 2.26591 +1989 302 4.96577 +1989 303 9.41055 +1989 304 1.63433 +1989 305 0.67605 +1989 306 0.21482 +1989 307 1.85968 +1989 308 2.23035 +1989 309 1.25102 +1989 310 1.13729 +1989 311 0.62762 +1989 312 4.49229 +1989 313 6.63840 +1989 314 0.05055 +1989 315 0.05265 +1989 316 0.08003 +1989 317 26.22500 +1989 318 21.30520 +1989 319 3.60563 +1989 320 1.57536 +1989 321 1.20890 +1989 322 5.24417 +1989 323 7.04277 +1989 324 2.33144 +1989 325 2.24509 +1989 326 32.13260 +1989 327 16.32430 +1989 328 23.37340 +1989 329 7.23653 +1989 330 8.11477 +1989 331 6.02974 +1989 332 4.19323 +1989 333 0.01895 +1989 334 1.42419 +1989 335 0.71382 +1989 336 0.03793 +1989 337 0.17932 +1989 338 2.09663 +1989 339 2.32767 +1989 340 0.15518 +1989 341 0.49657 +1989 342 0.24484 +1989 343 0.00000 +1989 344 0.00000 +1989 345 0.79313 +1989 346 0.22415 +1989 347 0.00000 +1989 348 0.75520 +1989 349 30.29420 +1989 350 32.19430 +1989 351 10.50040 +1989 352 0.78624 +1989 353 0.47243 +1989 354 1.62420 +1989 355 1.02418 +1989 356 3.46220 +1989 357 5.19330 +1989 358 4.50017 +1989 359 1.09314 +1989 360 0.21035 +1989 361 0.71037 +1989 362 14.17640 +1989 363 13.01770 +1989 364 7.75202 +1989 365 6.91372 +1990 1 11.91430 +1990 2 6.07397 +1990 3 0.40308 +1990 4 12.23260 +1990 5 2.88729 +1990 6 0.36511 +1990 7 0.12998 +1990 8 0.71708 +1990 9 6.13093 +1990 10 5.12907 +1990 11 0.00730 +1990 12 0.01460 +1990 13 0.01168 +1990 14 1.38012 +1990 15 4.74789 +1990 16 13.73540 +1990 17 18.58120 +1990 18 0.19570 +1990 19 1.64738 +1990 20 2.40534 +1990 21 0.54913 +1990 22 11.12270 +1990 23 14.84390 +1990 24 3.74311 +1990 25 0.01460 +1990 26 0.01022 +1990 27 1.08657 +1990 28 2.64924 +1990 29 13.29730 +1990 30 9.90616 +1990 31 0.16156 +1990 32 0.05546 +1990 33 0.33879 +1990 34 0.01929 +1990 35 0.00362 +1990 36 0.00121 +1990 37 0.00603 +1990 38 1.71204 +1990 39 6.25257 +1990 40 5.92342 +1990 41 2.66572 +1990 42 1.61679 +1990 43 1.32985 +1990 44 1.06098 +1990 45 3.33245 +1990 46 6.18505 +1990 47 4.72138 +1990 48 0.25439 +1990 49 1.34552 +1990 50 7.03987 +1990 51 5.16627 +1990 52 0.30744 +1990 53 4.86003 +1990 54 2.26062 +1990 55 1.64211 +1990 56 1.43353 +1990 57 0.35205 +1990 58 3.22756 +1990 59 6.52968 +1990 60 0.00452 +1990 61 0.08354 +1990 62 0.09031 +1990 63 0.00000 +1990 64 0.02935 +1990 65 1.49916 +1990 66 1.33660 +1990 67 23.68180 +1990 68 28.86790 +1990 69 14.75000 +1990 70 7.59966 +1990 71 6.16146 +1990 72 10.95020 +1990 73 0.35447 +1990 74 10.61600 +1990 75 11.93460 +1990 76 6.28338 +1990 77 7.67417 +1990 78 10.87790 +1990 79 3.61695 +1990 80 1.55786 +1990 81 0.09708 +1990 82 0.00226 +1990 83 0.02484 +1990 84 0.02258 +1990 85 0.00226 +1990 86 0.02258 +1990 87 0.03838 +1990 88 0.70217 +1990 89 0.06548 +1990 90 3.51315 +1990 91 1.21167 +1990 92 1.45948 +1990 93 0.11638 +1990 94 0.11774 +1990 95 0.03834 +1990 96 0.03697 +1990 97 0.65444 +1990 98 3.83489 +1990 99 4.50439 +1990 100 0.76534 +1990 101 1.72645 +1990 102 6.77575 +1990 103 1.26232 +1990 104 0.05750 +1990 105 4.36885 +1990 106 8.10243 +1990 107 0.64075 +1990 108 0.12459 +1990 109 0.33270 +1990 110 0.99945 +1990 111 0.32037 +1990 112 0.03560 +1990 113 40.93520 +1990 114 23.04080 +1990 115 1.71003 +1990 116 3.22837 +1990 117 24.40170 +1990 118 13.19960 +1990 119 1.29108 +1990 120 19.91830 +1990 121 7.89728 +1990 122 7.26571 +1990 123 6.73321 +1990 124 0.20699 +1990 125 0.00354 +1990 126 1.25960 +1990 127 1.84695 +1990 128 0.50773 +1990 129 0.00177 +1990 130 0.00000 +1990 131 0.00354 +1990 132 0.01238 +1990 133 0.54312 +1990 134 0.59265 +1990 135 0.74833 +1990 136 0.47589 +1990 137 0.00177 +1990 138 0.08669 +1990 139 59.64360 +1990 140 5.70713 +1990 141 0.35382 +1990 142 0.74125 +1990 143 12.59430 +1990 144 36.05260 +1990 145 3.07470 +1990 146 0.08315 +1990 147 0.03892 +1990 148 0.22291 +1990 149 0.30429 +1990 150 0.04069 +1990 151 0.06296 +1990 152 12.05460 +1990 153 9.57397 +1990 154 3.07660 +1990 155 2.81637 +1990 156 5.07030 +1990 157 1.45645 +1990 158 0.00420 +1990 159 0.00630 +1990 160 0.00210 +1990 161 0.45331 +1990 162 1.25289 +1990 163 0.26653 +1990 164 0.60860 +1990 165 0.12382 +1990 166 0.00420 +1990 167 0.00210 +1990 168 0.00630 +1990 169 3.43756 +1990 170 21.17310 +1990 171 15.32210 +1990 172 4.39034 +1990 173 3.88667 +1990 174 0.41133 +1990 175 0.04827 +1990 176 0.22665 +1990 177 51.39140 +1990 178 47.33260 +1990 179 3.56768 +1990 180 5.90556 +1990 181 3.34585 +1990 182 0.00166 +1990 183 9.74337 +1990 184 21.91010 +1990 185 12.57920 +1990 186 0.25947 +1990 187 20.12540 +1990 188 6.93746 +1990 189 3.68745 +1990 190 5.43387 +1990 191 2.90904 +1990 192 0.27776 +1990 193 1.83790 +1990 194 0.06154 +1990 195 0.08483 +1990 196 0.29440 +1990 197 4.21470 +1990 198 15.98730 +1990 199 4.53405 +1990 200 0.00166 +1990 201 15.78270 +1990 202 12.39130 +1990 203 8.09009 +1990 204 3.93860 +1990 205 0.42912 +1990 206 1.21917 +1990 207 7.56783 +1990 208 6.06092 +1990 209 34.86030 +1990 210 5.36235 +1990 211 0.65033 +1990 212 0.00171 +1990 213 0.00171 +1990 214 0.00000 +1990 215 1.05773 +1990 216 47.63040 +1990 217 44.08470 +1990 218 40.18860 +1990 219 8.13376 +1990 220 0.21018 +1990 221 0.27682 +1990 222 41.44120 +1990 223 45.39020 +1990 224 13.86670 +1990 225 12.97300 +1990 226 8.62931 +1990 227 10.49360 +1990 228 45.71310 +1990 229 11.60260 +1990 230 1.08678 +1990 231 5.98071 +1990 232 2.67936 +1990 233 3.09117 +1990 234 61.91060 +1990 235 13.84620 +1990 236 13.26690 +1990 237 9.15561 +1990 238 5.29036 +1990 239 0.41694 +1990 240 0.11620 +1990 241 0.11278 +1990 242 0.08373 +1990 243 0.00291 +1990 244 0.00120 +1990 245 17.21790 +1990 246 37.94100 +1990 247 39.54770 +1990 248 20.92390 +1990 249 0.08652 +1990 250 1.67276 +1990 251 1.66555 +1990 252 0.28120 +1990 253 0.62248 +1990 254 0.96015 +1990 255 0.72702 +1990 256 0.28240 +1990 257 0.30283 +1990 258 0.20789 +1990 259 0.10455 +1990 260 0.20068 +1990 261 0.56600 +1990 262 0.65252 +1990 263 0.35210 +1990 264 0.78470 +1990 265 0.64771 +1990 266 2.51394 +1990 267 7.04312 +1990 268 3.63752 +1990 269 0.00240 +1990 270 0.00000 +1990 271 12.17310 +1990 272 36.84150 +1990 273 33.29850 +1990 274 9.94824 +1990 275 0.39793 +1990 276 1.86638 +1990 277 19.54400 +1990 278 5.96895 +1990 279 5.65969 +1990 280 0.84776 +1990 281 0.24654 +1990 282 0.00216 +1990 283 0.53418 +1990 284 0.89750 +1990 285 1.18946 +1990 286 12.75970 +1990 287 59.81270 +1990 288 22.10670 +1990 289 14.81640 +1990 290 0.68773 +1990 291 18.21610 +1990 292 12.85270 +1990 293 1.93342 +1990 294 3.29590 +1990 295 3.03854 +1990 296 7.08488 +1990 297 7.40928 +1990 298 6.18305 +1990 299 17.01370 +1990 300 17.71440 +1990 301 5.25311 +1990 302 0.05407 +1990 303 4.31884 +1990 304 4.39930 +1990 305 0.14282 +1990 306 0.15776 +1990 307 12.02490 +1990 308 12.45000 +1990 309 0.43177 +1990 310 0.08469 +1990 311 0.12953 +1990 312 0.00996 +1990 313 0.00332 +1990 314 2.72515 +1990 315 58.73260 +1990 316 79.23680 +1990 317 31.94620 +1990 318 6.39355 +1990 319 4.23469 +1990 320 2.52753 +1990 321 7.63240 +1990 322 12.98800 +1990 323 15.77960 +1990 324 30.74550 +1990 325 28.02040 +1990 326 10.13170 +1990 327 2.28175 +1990 328 18.27560 +1990 329 10.08520 +1990 330 18.70240 +1990 331 7.43977 +1990 332 0.07971 +1990 333 0.04152 +1990 334 0.63638 +1990 335 0.08026 +1990 336 0.02867 +1990 337 0.06020 +1990 338 0.02580 +1990 339 0.31532 +1990 340 0.40419 +1990 341 0.39559 +1990 342 0.00860 +1990 343 0.00287 +1990 344 0.01147 +1990 345 5.33183 +1990 346 5.37770 +1990 347 0.43859 +1990 348 1.67408 +1990 349 3.51156 +1990 350 1.12656 +1990 351 0.11753 +1990 352 5.49810 +1990 353 5.71882 +1990 354 0.64498 +1990 355 6.86545 +1990 356 13.58470 +1990 357 5.38630 +1990 358 4.27120 +1990 359 2.24453 +1990 360 0.01147 +1990 361 0.06593 +1990 362 2.43372 +1990 363 2.88951 +1990 364 0.30099 +1990 365 0.00000 +1991 1 1.18681 +1991 2 0.48416 +1991 3 0.02235 +1991 4 0.00248 +1991 5 0.00248 +1991 6 1.81001 +1991 7 2.08064 +1991 8 0.01986 +1991 9 0.02979 +1991 10 0.11669 +1991 11 0.03973 +1991 12 0.00000 +1991 13 0.08442 +1991 14 0.26070 +1991 15 9.57145 +1991 16 10.04570 +1991 17 0.12414 +1991 18 0.18125 +1991 19 1.14708 +1991 20 2.59956 +1991 21 4.44681 +1991 22 10.77810 +1991 23 14.50240 +1991 24 36.03380 +1991 25 22.43520 +1991 26 31.50010 +1991 27 8.77445 +1991 28 5.16684 +1991 29 5.51445 +1991 30 2.14768 +1991 31 8.33084 +1991 32 45.50390 +1991 33 1.44687 +1991 34 0.04974 +1991 35 0.04325 +1991 36 0.01081 +1991 37 0.63801 +1991 38 1.09867 +1991 39 0.52338 +1991 40 2.02432 +1991 41 1.83400 +1991 42 1.30845 +1991 43 1.45768 +1991 44 1.65665 +1991 45 0.63152 +1991 46 0.06921 +1991 47 61.70270 +1991 48 85.58360 +1991 49 9.95073 +1991 50 9.12024 +1991 51 0.09300 +1991 52 0.04758 +1991 53 0.07570 +1991 54 0.00000 +1991 55 0.39145 +1991 56 0.19465 +1991 57 0.31792 +1991 58 11.98150 +1991 59 15.59100 +1991 60 1.24585 +1991 61 14.94280 +1991 62 4.74759 +1991 63 0.01187 +1991 64 0.00000 +1991 65 0.03263 +1991 66 0.01928 +1991 67 0.03856 +1991 68 0.06229 +1991 69 1.48761 +1991 70 1.59291 +1991 71 0.30405 +1991 72 2.77796 +1991 73 10.84190 +1991 74 6.39687 +1991 75 0.13645 +1991 76 0.05784 +1991 77 2.47539 +1991 78 2.31373 +1991 79 0.06526 +1991 80 0.02225 +1991 81 1.54545 +1991 82 3.80875 +1991 83 3.02565 +1991 84 4.58741 +1991 85 6.26783 +1991 86 0.83502 +1991 87 2.35081 +1991 88 1.63444 +1991 89 0.00297 +1991 90 0.00168 +1991 91 0.95475 +1991 92 26.06570 +1991 93 23.08540 +1991 94 1.25731 +1991 95 1.49096 +1991 96 0.06556 +1991 97 4.62751 +1991 98 8.96423 +1991 99 17.34690 +1991 100 4.46278 +1991 101 0.00168 +1991 102 0.00336 +1991 103 0.00504 +1991 104 0.91441 +1991 105 1.39178 +1991 106 12.41680 +1991 107 16.27610 +1991 108 4.96873 +1991 109 1.73637 +1991 110 0.88247 +1991 111 0.04707 +1991 112 18.79240 +1991 113 30.55200 +1991 114 23.95450 +1991 115 6.18234 +1991 116 0.03866 +1991 117 34.02810 +1991 118 18.21760 +1991 119 15.50290 +1991 120 14.76150 +1991 121 1.19810 +1991 122 0.10438 +1991 123 13.36820 +1991 124 6.02757 +1991 125 5.93529 +1991 126 9.39269 +1991 127 0.21935 +1991 128 1.99608 +1991 129 0.34113 +1991 130 0.16111 +1991 131 0.09984 +1991 132 0.00832 +1991 133 0.00983 +1991 134 0.01286 +1991 135 0.20876 +1991 136 3.09358 +1991 137 1.57629 +1991 138 0.15203 +1991 139 0.24280 +1991 140 0.31541 +1991 141 0.26851 +1991 142 0.01815 +1991 143 0.07261 +1991 144 0.00303 +1991 145 0.08623 +1991 146 0.11875 +1991 147 10.83960 +1991 148 8.46689 +1991 149 1.48779 +1991 150 0.17699 +1991 151 1.05532 +1991 152 1.88522 +1991 153 0.00154 +1991 154 0.01544 +1991 155 0.12892 +1991 156 3.34508 +1991 157 1.19351 +1991 158 0.01544 +1991 159 0.01930 +1991 160 0.02007 +1991 161 0.02084 +1991 162 0.00540 +1991 163 0.01621 +1991 164 0.01698 +1991 165 19.55170 +1991 166 9.13585 +1991 167 1.57411 +1991 168 3.32809 +1991 169 1.67292 +1991 170 0.57823 +1991 171 0.27097 +1991 172 0.92794 +1991 173 22.68910 +1991 174 9.13894 +1991 175 6.26633 +1991 176 0.01158 +1991 177 1.97092 +1991 178 2.28049 +1991 179 0.16289 +1991 180 0.00154 +1991 181 14.34080 +1991 182 0.87147 +1991 183 0.00650 +1991 184 0.00217 +1991 185 0.00217 +1991 186 0.00217 +1991 187 0.00433 +1991 188 0.00325 +1991 189 4.63991 +1991 190 0.16022 +1991 191 0.00108 +1991 192 0.00000 +1991 193 0.00000 +1991 194 0.00108 +1991 195 0.00000 +1991 196 0.65929 +1991 197 16.16820 +1991 198 42.52450 +1991 199 8.66599 +1991 200 9.62515 +1991 201 6.74443 +1991 202 9.77563 +1991 203 29.84110 +1991 204 20.72260 +1991 205 7.79236 +1991 206 8.64867 +1991 207 0.97756 +1991 208 0.06604 +1991 209 0.26631 +1991 210 5.07726 +1991 211 0.65279 +1991 212 4.50616 +1991 213 4.16743 +1991 214 0.00342 +1991 215 0.00171 +1991 216 4.59341 +1991 217 10.38430 +1991 218 30.95630 +1991 219 11.79060 +1991 220 37.78570 +1991 221 21.12970 +1991 222 1.05725 +1991 223 0.27372 +1991 224 0.17450 +1991 225 0.27886 +1991 226 3.38390 +1991 227 4.74566 +1991 228 17.41730 +1991 229 5.39062 +1991 230 2.15385 +1991 231 1.31729 +1991 232 4.69263 +1991 233 19.06480 +1991 234 9.72228 +1991 235 1.75867 +1991 236 12.73840 +1991 237 33.09820 +1991 238 0.66378 +1991 239 0.00171 +1991 240 0.11120 +1991 241 2.32151 +1991 242 12.31580 +1991 243 34.42620 +1991 244 30.65530 +1991 245 3.02429 +1991 246 1.74916 +1991 247 1.61880 +1991 248 1.35335 +1991 249 2.43887 +1991 250 1.19455 +1991 251 0.00000 +1991 252 0.00000 +1991 253 0.00237 +1991 254 0.32945 +1991 255 21.22690 +1991 256 49.09500 +1991 257 15.68080 +1991 258 6.14102 +1991 259 10.36700 +1991 260 12.93150 +1991 261 25.54060 +1991 262 26.69010 +1991 263 18.82600 +1991 264 4.61228 +1991 265 6.19079 +1991 266 11.87910 +1991 267 13.66380 +1991 268 4.65732 +1991 269 0.62335 +1991 270 26.72090 +1991 271 9.46158 +1991 272 5.21193 +1991 273 7.63372 +1991 274 0.63886 +1991 275 0.22626 +1991 276 4.19544 +1991 277 4.80028 +1991 278 6.74938 +1991 279 2.72548 +1991 280 1.87664 +1991 281 5.61808 +1991 282 20.95800 +1991 283 1.59418 +1991 284 10.28230 +1991 285 10.77330 +1991 286 6.02328 +1991 287 1.32947 +1991 288 0.00296 +1991 289 0.01035 +1991 290 1.77016 +1991 291 0.88878 +1991 292 0.00000 +1991 293 0.58414 +1991 294 0.76603 +1991 295 0.77934 +1991 296 2.62640 +1991 297 3.79616 +1991 298 3.17801 +1991 299 1.31468 +1991 300 29.83540 +1991 301 57.45400 +1991 302 10.14920 +1991 303 0.85772 +1991 304 0.00844 +1991 305 1.67581 +1991 306 9.31387 +1991 307 8.97423 +1991 308 11.51360 +1991 309 9.15046 +1991 310 11.36380 +1991 311 2.83734 +1991 312 9.80652 +1991 313 11.97740 +1991 314 12.41320 +1991 315 7.92164 +1991 316 16.56820 +1991 317 16.01790 +1991 318 0.87796 +1991 319 1.14551 +1991 320 0.35807 +1991 321 0.00160 +1991 322 0.68170 +1991 323 0.36768 +1991 324 5.27655 +1991 325 2.94468 +1991 326 1.57648 +1991 327 0.70092 +1991 328 0.00320 +1991 329 2.27500 +1991 330 2.22293 +1991 331 1.87767 +1991 332 4.55560 +1991 333 0.29239 +1991 334 0.00580 +1991 335 4.93096 +1991 336 1.25594 +1991 337 1.38212 +1991 338 0.18709 +1991 339 7.25576 +1991 340 10.75960 +1991 341 0.42058 +1991 342 0.44669 +1991 343 0.11457 +1991 344 0.04931 +1991 345 0.44234 +1991 346 1.32846 +1991 347 0.38723 +1991 348 0.16533 +1991 349 0.54096 +1991 350 0.37562 +1991 351 0.05076 +1991 352 0.00000 +1991 353 0.00145 +1991 354 0.02756 +1991 355 0.06671 +1991 356 3.85920 +1991 357 4.71341 +1991 358 1.31250 +1991 359 0.10442 +1991 360 0.20594 +1991 361 3.81859 +1991 362 6.01577 +1991 363 13.80230 +1991 364 59.77040 +1991 365 36.68240 +1992 1 7.05107 +1992 2 0.07490 +1992 3 0.11770 +1992 4 0.12438 +1992 5 0.00669 +1992 6 7.85489 +1992 7 8.99841 +1992 8 0.95896 +1992 9 0.50690 +1992 10 0.53498 +1992 11 1.12480 +1992 12 9.24049 +1992 13 9.44378 +1992 14 1.80824 +1992 15 0.02407 +1992 16 12.14950 +1992 17 34.10920 +1992 18 3.37440 +1992 19 0.10432 +1992 20 0.10432 +1992 21 0.34506 +1992 22 0.49753 +1992 23 2.39004 +1992 24 2.33654 +1992 25 3.55764 +1992 26 5.74705 +1992 27 3.08551 +1992 28 2.11184 +1992 29 21.23610 +1992 30 11.25200 +1992 31 0.00594 +1992 32 0.02672 +1992 33 0.16476 +1992 34 0.63531 +1992 35 4.90433 +1992 36 4.08347 +1992 37 2.86481 +1992 38 0.67241 +1992 39 8.88538 +1992 40 1.51553 +1992 41 0.10242 +1992 42 0.00000 +1992 43 0.00000 +1992 44 2.05881 +1992 45 28.82030 +1992 46 20.22140 +1992 47 1.38491 +1992 48 0.77038 +1992 49 0.00297 +1992 50 0.01187 +1992 51 8.45343 +1992 52 6.29072 +1992 53 1.36858 +1992 54 1.10733 +1992 55 0.57445 +1992 56 0.74960 +1992 57 0.40375 +1992 58 1.20530 +1992 59 1.21124 +1992 60 0.50197 +1992 61 0.00292 +1992 62 0.21159 +1992 63 0.24223 +1992 64 0.05107 +1992 65 0.06567 +1992 66 24.17940 +1992 67 16.60460 +1992 68 3.78232 +1992 69 0.08172 +1992 70 0.04524 +1992 71 0.24223 +1992 72 0.38961 +1992 73 0.00146 +1992 74 0.77339 +1992 75 2.16842 +1992 76 3.76919 +1992 77 0.53116 +1992 78 2.35957 +1992 79 1.41107 +1992 80 8.70722 +1992 81 15.66480 +1992 82 1.79777 +1992 83 0.00730 +1992 84 0.01167 +1992 85 0.23056 +1992 86 0.05399 +1992 87 0.00146 +1992 88 0.66249 +1992 89 1.58326 +1992 90 0.00000 +1992 91 1.62884 +1992 92 1.62884 +1992 93 0.13883 +1992 94 0.09220 +1992 95 0.19711 +1992 96 0.07418 +1992 97 0.00106 +1992 98 0.01696 +1992 99 0.35926 +1992 100 8.33919 +1992 101 61.70090 +1992 102 9.90444 +1992 103 0.03391 +1992 104 0.00212 +1992 105 0.00000 +1992 106 0.00212 +1992 107 0.00106 +1992 108 0.00000 +1992 109 0.41436 +1992 110 0.41542 +1992 111 0.00000 +1992 112 0.00212 +1992 113 0.00212 +1992 114 0.01272 +1992 115 0.04239 +1992 116 1.14453 +1992 117 4.68304 +1992 118 0.33276 +1992 119 0.00000 +1992 120 0.00424 +1992 121 0.17855 +1992 122 13.55360 +1992 123 21.01560 +1992 124 0.92728 +1992 125 0.03246 +1992 126 0.00706 +1992 127 2.22576 +1992 128 11.42940 +1992 129 10.19870 +1992 130 0.04375 +1992 131 2.31185 +1992 132 6.97650 +1992 133 0.54056 +1992 134 0.08751 +1992 135 10.85080 +1992 136 1.69649 +1992 137 0.83413 +1992 138 0.14537 +1992 139 0.03811 +1992 140 1.25472 +1992 141 0.48411 +1992 142 0.22441 +1992 143 0.07339 +1992 144 23.43470 +1992 145 18.78560 +1992 146 7.25313 +1992 147 4.05633 +1992 148 46.19480 +1992 149 12.57970 +1992 150 0.06210 +1992 151 0.00141 +1992 152 0.00241 +1992 153 0.00000 +1992 154 0.01304 +1992 155 0.06220 +1992 156 0.41637 +1992 157 37.72210 +1992 158 31.85580 +1992 159 5.36063 +1992 160 0.71435 +1992 161 1.28523 +1992 162 3.07110 +1992 163 12.34560 +1992 164 10.88680 +1992 165 11.87510 +1992 166 4.69845 +1992 167 5.13589 +1992 168 1.60127 +1992 169 3.50452 +1992 170 5.39574 +1992 171 1.89122 +1992 172 0.00100 +1992 173 0.00000 +1992 174 0.00000 +1992 175 0.00201 +1992 176 0.00201 +1992 177 0.00100 +1992 178 0.00201 +1992 179 0.06321 +1992 180 0.09230 +1992 181 0.00702 +1992 182 0.00773 +1992 183 0.07733 +1992 184 3.27363 +1992 185 3.48629 +1992 186 12.36890 +1992 187 11.88040 +1992 188 2.25674 +1992 189 23.75440 +1992 190 6.25212 +1992 191 0.58513 +1992 192 0.30030 +1992 193 0.02062 +1992 194 4.86276 +1992 195 45.41450 +1992 196 25.41320 +1992 197 0.00902 +1992 198 0.00129 +1992 199 0.00129 +1992 200 0.08506 +1992 201 6.00466 +1992 202 24.07790 +1992 203 39.82100 +1992 204 3.80205 +1992 205 4.80218 +1992 206 4.33434 +1992 207 9.33243 +1992 208 7.11048 +1992 209 0.87898 +1992 210 0.77072 +1992 211 4.88725 +1992 212 7.97142 +1992 213 3.06928 +1992 214 0.08356 +1992 215 1.82260 +1992 216 7.61560 +1992 217 5.12676 +1992 218 0.16713 +1992 219 0.00226 +1992 220 1.08407 +1992 221 48.06500 +1992 222 38.18190 +1992 223 7.61335 +1992 224 12.21160 +1992 225 5.00254 +1992 226 30.24790 +1992 227 16.44400 +1992 228 8.87584 +1992 229 4.30467 +1992 230 0.09711 +1992 231 16.00590 +1992 232 13.80610 +1992 233 3.53227 +1992 234 1.18344 +1992 235 0.38168 +1992 236 0.32071 +1992 237 0.39975 +1992 238 23.44760 +1992 239 16.40317 +1992 240 6.71651 +1992 241 4.99351 +1992 242 5.64621 +1992 243 2.20880 +1992 244 10.22870 +1992 245 2.11773 +1992 246 0.88796 +1992 247 0.55561 +1992 248 0.44362 +1992 249 13.12600 +1992 250 7.89057 +1992 251 3.16568 +1992 252 6.72553 +1992 253 6.63535 +1992 254 3.15259 +1992 255 2.44281 +1992 256 0.00073 +1992 257 15.50550 +1992 258 22.50380 +1992 259 3.97729 +1992 260 1.73811 +1992 261 20.20790 +1992 262 6.34300 +1992 263 1.46176 +1992 264 0.18472 +1992 265 0.19999 +1992 266 7.76840 +1992 267 15.21030 +1992 268 6.98734 +1992 269 4.84489 +1992 270 1.30176 +1992 271 1.42176 +1992 272 0.53234 +1992 273 0.70615 +1992 274 10.48510 +1992 275 30.42230 +1992 276 22.60360 +1992 277 7.67045 +1992 278 0.00000 +1992 279 0.00247 +1992 280 0.04201 +1992 281 0.22735 +1992 282 0.51400 +1992 283 2.19191 +1992 284 2.83441 +1992 285 0.86984 +1992 286 8.38461 +1992 287 16.97289 +1992 288 14.89860 +1992 289 9.51639 +1992 290 4.52467 +1992 291 0.57578 +1992 292 0.33113 +1992 293 0.88220 +1992 294 3.07905 +1992 295 13.16630 +1992 296 39.67430 +1992 297 36.62240 +1992 298 22.85810 +1992 299 4.18118 +1992 300 8.17209 +1992 301 14.09050 +1992 302 8.27835 +1992 303 0.74876 +1992 304 0.41021 +1992 305 0.08204 +1992 306 0.13894 +1992 307 0.00981 +1992 308 1.50385 +1992 309 2.22472 +1992 310 0.32039 +1992 311 1.61828 +1992 312 3.49319 +1992 313 0.15692 +1992 314 0.36779 +1992 315 0.82549 +1992 316 2.74617 +1992 317 1.49241 +1992 318 0.97750 +1992 319 33.98220 +1992 320 49.08290 +1992 321 10.04480 +1992 322 7.94101 +1992 323 9.55111 +1992 324 4.71916 +1992 325 11.59600 +1992 326 10.15270 +1992 327 1.48097 +1992 328 3.87896 +1992 329 2.07270 +1992 330 0.95625 +1992 331 1.02981 +1992 332 0.84674 +1992 333 5.58715 +1992 334 8.17966 +1992 335 15.85110 +1992 336 17.03700 +1992 337 40.21100 +1992 338 20.71780 +1992 339 28.00610 +1992 340 14.62090 +1992 341 0.00693 +1992 342 7.53376 +1992 343 14.01210 +1992 344 12.50030 +1992 345 3.12057 +1992 346 10.51150 +1992 347 10.87210 +1992 348 0.00139 +1992 349 0.04438 +1992 350 0.04716 +1992 351 0.66156 +1992 352 0.45352 +1992 353 7.26054 +1992 354 6.78898 +1992 355 0.70040 +1992 356 0.13731 +1992 357 0.01942 +1992 358 3.78768 +1992 359 2.04432 +1992 360 0.28987 +1992 361 1.69759 +1992 362 9.36450 +1992 363 9.65436 +1992 364 7.64194 +1992 365 4.69889 +1992 366 2.77224 +1993 1 0.32306 +1993 2 7.93689 +1993 3 8.63759 +1993 4 3.69777 +1993 5 3.45329 +1993 6 0.06330 +1993 7 2.29637 +1993 8 0.37982 +1993 9 0.00437 +1993 10 0.70507 +1993 11 0.90589 +1993 12 8.80567 +1993 13 9.91675 +1993 14 8.14863 +1993 15 5.24760 +1993 16 3.93352 +1993 17 0.00218 +1993 18 0.07858 +1993 19 0.06549 +1993 20 0.00218 +1993 21 1.36866 +1993 22 0.60029 +1993 23 0.42348 +1993 24 0.01091 +1993 25 4.04703 +1993 26 0.04802 +1993 27 0.00437 +1993 28 0.00218 +1993 29 0.96264 +1993 30 0.84913 +1993 31 0.21825 +1993 32 4.30611 +1993 33 0.83866 +1993 34 0.41933 +1993 35 0.00245 +1993 36 0.40217 +1993 37 0.01471 +1993 38 0.00736 +1993 39 0.12506 +1993 40 2.32717 +1993 41 9.24736 +1993 42 0.55420 +1993 43 0.00000 +1993 44 1.06917 +1993 45 1.07162 +1993 46 0.00245 +1993 47 0.00245 +1993 48 0.12752 +1993 49 20.46140 +1993 50 52.78670 +1993 51 2.08930 +1993 52 0.06376 +1993 53 2.89608 +1993 54 1.77296 +1993 55 2.49392 +1993 56 2.65576 +1993 57 1.21140 +1993 58 0.38500 +1993 59 0.54463 +1993 60 0.28378 +1993 61 4.16214 +1993 62 15.70260 +1993 63 37.81180 +1993 64 3.65764 +1993 65 0.09746 +1993 66 0.08313 +1993 67 0.08886 +1993 68 0.02007 +1993 69 0.63063 +1993 70 12.62400 +1993 71 17.17890 +1993 72 2.21579 +1993 73 0.42137 +1993 74 0.08313 +1993 75 1.63963 +1993 76 1.89475 +1993 77 1.40744 +1993 78 0.00000 +1993 79 0.74529 +1993 80 1.79729 +1993 81 0.00287 +1993 82 0.00287 +1993 83 0.00860 +1993 84 0.00860 +1993 85 0.00000 +1993 86 2.18426 +1993 87 20.60430 +1993 88 6.44100 +1993 89 24.43390 +1993 90 24.45880 +1993 91 7.87090 +1993 92 0.29430 +1993 93 6.71168 +1993 94 21.15690 +1993 95 12.63690 +1993 96 0.40303 +1993 97 1.50093 +1993 98 24.18660 +1993 99 23.27100 +1993 100 1.12652 +1993 101 0.02453 +1993 102 0.08339 +1993 103 0.93440 +1993 104 2.17455 +1993 105 0.29185 +1993 106 0.14879 +1993 107 0.00572 +1993 108 0.02126 +1993 109 0.02126 +1993 110 2.85471 +1993 111 2.60946 +1993 112 0.01145 +1993 113 0.00000 +1993 114 0.00000 +1993 115 0.54364 +1993 116 23.43200 +1993 117 19.23090 +1993 118 1.58595 +1993 119 1.34642 +1993 120 0.26889 +1993 121 2.18066 +1993 122 2.09518 +1993 123 0.22382 +1993 124 1.57449 +1993 125 12.94560 +1993 126 9.64589 +1993 127 0.00000 +1993 128 0.03264 +1993 129 0.04663 +1993 130 0.11968 +1993 131 2.88320 +1993 132 5.62496 +1993 133 1.69417 +1993 134 2.31433 +1993 135 76.93240 +1993 136 43.59610 +1993 137 7.73723 +1993 138 0.25179 +1993 139 0.41033 +1993 140 0.03109 +1993 141 0.00000 +1993 142 0.00155 +1993 143 0.01865 +1993 144 0.11035 +1993 145 18.35300 +1993 146 23.12620 +1993 147 0.06217 +1993 148 0.29531 +1993 149 0.08393 +1993 150 0.00311 +1993 151 0.00000 +1993 152 0.37624 +1993 153 0.47030 +1993 154 1.10365 +1993 155 10.13350 +1993 156 51.17130 +1993 157 5.64575 +1993 158 5.39910 +1993 159 3.73109 +1993 160 0.31354 +1993 161 0.52256 +1993 162 3.28796 +1993 163 26.56070 +1993 164 20.92750 +1993 165 10.72090 +1993 166 0.41178 +1993 167 0.04599 +1993 168 0.01045 +1993 169 0.50375 +1993 170 19.38280 +1993 171 13.33990 +1993 172 0.03344 +1993 173 0.02508 +1993 174 6.03663 +1993 175 18.48610 +1993 176 12.03560 +1993 177 0.14005 +1993 178 3.94638 +1993 179 6.23729 +1993 180 0.27800 +1993 181 0.00353 +1993 182 0.00144 +1993 183 0.00144 +1993 184 0.09236 +1993 185 4.62934 +1993 186 7.80118 +1993 187 2.73749 +1993 188 0.00866 +1993 189 0.00433 +1993 190 0.00144 +1993 191 0.00000 +1993 192 0.00000 +1993 193 0.01154 +1993 194 0.00433 +1993 195 0.00577 +1993 196 0.00722 +1993 197 0.02598 +1993 198 0.03319 +1993 199 0.02886 +1993 200 0.26408 +1993 201 9.41597 +1993 202 9.66418 +1993 203 0.04906 +1993 204 0.19048 +1993 205 0.11545 +1993 206 0.00144 +1993 207 0.00289 +1993 208 0.00577 +1993 209 0.49497 +1993 210 2.12274 +1993 211 1.06209 +1993 212 0.04458 +1993 213 8.82347 +1993 214 10.46750 +1993 215 8.15391 +1993 216 0.11580 +1993 217 0.00115 +1993 218 0.04701 +1993 219 4.24778 +1993 220 17.67440 +1993 221 2.54638 +1993 222 0.28892 +1993 223 0.00115 +1993 224 0.00115 +1993 225 0.01949 +1993 226 3.20676 +1993 227 3.20676 +1993 228 1.87453 +1993 229 17.79830 +1993 230 0.63745 +1993 231 1.18777 +1993 232 0.63287 +1993 233 3.43033 +1993 234 4.56651 +1993 235 0.14790 +1993 236 0.01490 +1993 237 0.04930 +1993 238 0.65465 +1993 239 10.88950 +1993 240 6.86983 +1993 241 0.29236 +1993 242 0.00000 +1993 243 0.00682 +1993 244 0.00223 +1993 245 0.08825 +1993 246 18.18060 +1993 247 17.17410 +1993 248 3.36691 +1993 249 0.02122 +1993 250 0.25693 +1993 251 0.38651 +1993 252 0.05921 +1993 253 2.00965 +1993 254 7.39290 +1993 255 2.27104 +1993 256 0.65461 +1993 257 0.31167 +1993 258 0.07596 +1993 259 4.81242 +1993 260 6.79861 +1993 261 17.65900 +1993 262 4.89285 +1993 263 0.08155 +1993 264 5.44581 +1993 265 10.43140 +1993 266 4.26617 +1993 267 4.72306 +1993 268 1.60638 +1993 269 4.45496 +1993 270 3.47638 +1993 271 0.00112 +1993 272 0.08825 +1993 273 0.08925 +1993 274 0.51114 +1993 275 0.51925 +1993 276 0.85731 +1993 277 0.78970 +1993 278 0.16497 +1993 279 0.30290 +1993 280 1.49555 +1993 281 2.11487 +1993 282 0.03516 +1993 283 17.18400 +1993 284 13.42210 +1993 285 0.65447 +1993 286 0.25422 +1993 287 0.52737 +1993 288 0.05950 +1993 289 0.00270 +1993 290 0.09736 +1993 291 7.28576 +1993 292 19.57200 +1993 293 0.14874 +1993 294 1.81197 +1993 295 0.11088 +1993 296 0.20554 +1993 297 0.32183 +1993 298 0.28397 +1993 299 1.18184 +1993 300 0.38674 +1993 301 0.21906 +1993 302 4.33251 +1993 303 22.92010 +1993 304 10.61230 +1993 305 1.88699 +1993 306 3.03244 +1993 307 1.03987 +1993 308 3.31113 +1993 309 35.47220 +1993 310 27.20600 +1993 311 6.27850 +1993 312 3.43267 +1993 313 8.21460 +1993 314 9.92602 +1993 315 15.92830 +1993 316 9.52947 +1993 317 0.52423 +1993 318 0.06998 +1993 319 0.00368 +1993 320 0.02333 +1993 321 4.94030 +1993 322 8.89106 +1993 323 5.49031 +1993 324 33.81850 +1993 325 8.45032 +1993 326 9.08259 +1993 327 16.56550 +1993 328 8.09183 +1993 329 0.76977 +1993 330 1.23385 +1993 331 1.17983 +1993 332 0.35603 +1993 333 0.06261 +1993 334 1.89960 +1993 335 2.31227 +1993 336 5.66736 +1993 337 0.23319 +1993 338 1.48955 +1993 339 8.27439 +1993 340 19.79640 +1993 341 1.03102 +1993 342 1.47383 +1993 343 0.50045 +1993 344 0.12446 +1993 345 0.05371 +1993 346 0.00393 +1993 347 0.01834 +1993 348 0.55547 +1993 349 0.47031 +1993 350 2.96600 +1993 351 3.18478 +1993 352 0.07467 +1993 353 0.04454 +1993 354 10.97050 +1993 355 9.82027 +1993 356 4.15161 +1993 357 4.41886 +1993 358 0.27118 +1993 359 11.63080 +1993 360 11.96620 +1993 361 5.59923 +1993 362 1.31662 +1993 363 5.14071 +1993 364 6.46519 +1993 365 1.31281 +1994 1 3.49612 +1994 2 2.36377 +1994 3 0.70772 +1994 4 9.78771 +1994 5 2.12315 +1994 6 0.90588 +1994 7 0.34324 +1994 8 0.00000 +1994 9 0.06369 +1994 10 4.23214 +1994 11 8.96322 +1994 12 16.78350 +1994 13 15.44590 +1994 14 5.51310 +1994 15 0.20170 +1994 16 1.08280 +1994 17 0.98726 +1994 18 0.44940 +1994 19 0.00354 +1994 20 0.14154 +1994 21 1.03326 +1994 22 1.39420 +1994 23 4.81601 +1994 24 6.01204 +1994 25 14.61430 +1994 26 0.58033 +1994 27 0.00000 +1994 28 0.00000 +1994 29 0.00354 +1994 30 0.00354 +1994 31 0.00579 +1994 32 0.08589 +1994 33 0.41982 +1994 34 8.47366 +1994 35 5.83312 +1994 36 0.41886 +1994 37 0.09458 +1994 38 0.01351 +1994 39 0.00483 +1994 40 0.14284 +1994 41 2.39251 +1994 42 3.45606 +1994 43 0.73831 +1994 44 0.11195 +1994 45 0.05212 +1994 46 1.92443 +1994 47 16.97920 +1994 48 11.79560 +1994 49 9.49571 +1994 50 10.78610 +1994 51 19.73940 +1994 52 0.43719 +1994 53 0.26733 +1994 54 4.50609 +1994 55 6.09370 +1994 56 5.54648 +1994 57 2.88857 +1994 58 0.81841 +1994 59 1.01409 +1994 60 1.43309 +1994 61 0.00163 +1994 62 0.00163 +1994 63 0.13206 +1994 64 0.42064 +1994 65 1.30918 +1994 66 0.59671 +1994 67 0.00815 +1994 68 0.00652 +1994 69 0.00000 +1994 70 0.00163 +1994 71 0.12554 +1994 72 1.67439 +1994 73 24.85170 +1994 74 18.41010 +1994 75 3.43681 +1994 76 18.93510 +1994 77 22.74200 +1994 78 5.59216 +1994 79 0.39292 +1994 80 0.00489 +1994 81 0.00163 +1994 82 1.62711 +1994 83 1.31245 +1994 84 0.04076 +1994 85 0.00163 +1994 86 0.00489 +1994 87 2.28251 +1994 88 3.00966 +1994 89 0.00000 +1994 90 0.80328 +1994 91 0.60216 +1994 92 10.85560 +1994 93 7.89236 +1994 94 0.00238 +1994 95 0.00476 +1994 96 0.18803 +1994 97 0.26062 +1994 98 1.99451 +1994 99 1.38640 +1994 100 6.96175 +1994 101 9.81785 +1994 102 6.26676 +1994 103 7.83643 +1994 104 39.44510 +1994 105 47.27200 +1994 106 0.04046 +1994 107 0.09877 +1994 108 0.41652 +1994 109 1.63988 +1994 110 6.67019 +1994 111 2.64427 +1994 112 0.72831 +1994 113 0.12614 +1994 114 0.47126 +1994 115 0.45103 +1994 116 0.01190 +1994 117 0.00000 +1994 118 0.00119 +1994 119 0.01190 +1994 120 0.03273 +1994 121 0.13939 +1994 122 1.44001 +1994 123 6.09703 +1994 124 5.10914 +1994 125 0.01576 +1994 126 0.03152 +1994 127 0.71395 +1994 128 1.59274 +1994 129 1.40123 +1994 130 3.37943 +1994 131 4.97944 +1994 132 1.63759 +1994 133 0.00000 +1994 134 1.43517 +1994 135 2.89579 +1994 136 0.97334 +1994 137 0.63273 +1994 138 4.86187 +1994 139 29.48760 +1994 140 13.02920 +1994 141 1.79032 +1994 142 2.09941 +1994 143 6.45340 +1994 144 5.01338 +1994 145 1.00728 +1994 146 14.27770 +1994 147 13.03160 +1994 148 7.86553 +1994 149 0.15273 +1994 150 0.02545 +1994 151 0.00000 +1994 152 0.00191 +1994 153 0.02101 +1994 154 0.02292 +1994 155 0.00573 +1994 156 0.02292 +1994 157 0.02101 +1994 158 0.00191 +1994 159 5.48917 +1994 160 5.22178 +1994 161 31.44910 +1994 162 12.66860 +1994 163 9.36445 +1994 164 3.45318 +1994 165 0.00191 +1994 166 7.47361 +1994 167 8.94426 +1994 168 5.70118 +1994 169 4.45017 +1994 170 1.53559 +1994 171 25.24750 +1994 172 6.40595 +1994 173 2.82862 +1994 174 0.05730 +1994 175 15.59090 +1994 176 16.52860 +1994 177 8.12490 +1994 178 0.48895 +1994 179 0.22919 +1994 180 0.00000 +1994 181 0.18890 +1994 182 2.42895 +1994 183 0.79849 +1994 184 0.00134 +1994 185 6.70273 +1994 186 15.08680 +1994 187 8.00630 +1994 188 4.91016 +1994 189 0.82662 +1994 190 0.03617 +1994 191 0.82796 +1994 192 1.77784 +1994 193 1.05706 +1994 194 0.00134 +1994 195 0.49704 +1994 196 1.96540 +1994 197 35.29420 +1994 198 38.11170 +1994 199 5.72070 +1994 200 0.36843 +1994 201 0.15005 +1994 202 4.59666 +1994 203 8.30774 +1994 204 7.19040 +1994 205 72.40640 +1994 206 68.48090 +1994 207 20.99780 +1994 208 5.40854 +1994 209 20.11360 +1994 210 0.52920 +1994 211 0.10182 +1994 212 5.09957 +1994 213 38.99380 +1994 214 37.51360 +1994 215 4.54949 +1994 216 6.71484 +1994 217 5.31336 +1994 218 2.10909 +1994 219 5.08707 +1994 220 16.75400 +1994 221 10.12410 +1994 222 0.18628 +1994 223 0.37756 +1994 224 0.36881 +1994 225 0.78638 +1994 226 12.24200 +1994 227 1.33772 +1994 228 0.02625 +1994 229 0.35631 +1994 230 0.34131 +1994 231 0.16003 +1994 232 0.00750 +1994 233 0.22004 +1994 234 0.83264 +1994 235 11.95570 +1994 236 31.31260 +1994 237 2.57667 +1994 238 0.31505 +1994 239 0.00500 +1994 240 0.00875 +1994 241 0.17628 +1994 242 0.56259 +1994 243 0.51635 +1994 244 6.36826 +1994 245 8.43227 +1994 246 0.10740 +1994 247 0.87848 +1994 248 0.47779 +1994 249 13.03120 +1994 250 20.83420 +1994 251 6.33384 +1994 252 3.48774 +1994 253 1.20205 +1994 254 2.44266 +1994 255 1.21720 +1994 256 0.05370 +1994 257 0.04268 +1994 258 14.74410 +1994 259 15.10900 +1994 260 3.99445 +1994 261 0.97624 +1994 262 8.75309 +1994 263 22.80040 +1994 264 14.79640 +1994 265 3.89531 +1994 266 5.48978 +1994 267 18.34060 +1994 268 17.03800 +1994 269 8.73519 +1994 270 37.24850 +1994 271 50.61290 +1994 272 15.33480 +1994 273 6.10522 +1994 274 13.71205 +1994 275 0.07101 +1994 276 17.85410 +1994 277 13.83370 +1994 278 4.66945 +1994 279 6.35587 +1994 280 0.40687 +1994 281 13.35010 +1994 282 20.94790 +1994 283 0.56522 +1994 284 7.23566 +1994 285 4.65809 +1994 286 8.90078 +1994 287 9.66411 +1994 288 0.65895 +1994 289 0.03337 +1994 290 0.71505 +1994 291 0.64475 +1994 292 0.45729 +1994 293 0.00639 +1994 294 0.05397 +1994 295 0.76049 +1994 296 15.03870 +1994 297 11.39880 +1994 298 2.28999 +1994 299 0.30817 +1994 300 0.21373 +1994 301 0.27764 +1994 302 0.35433 +1994 303 8.86954 +1994 304 24.28010 +1994 305 1.55377 +1994 306 0.00000 +1994 307 0.18665 +1994 308 0.95849 +1994 309 8.02358 +1994 310 25.63960 +1994 311 21.65430 +1994 312 19.26570 +1994 313 0.76175 +1994 314 0.37583 +1994 315 0.33295 +1994 316 0.41619 +1994 317 0.36322 +1994 318 4.72688 +1994 319 16.49360 +1994 320 2.97132 +1994 321 0.00252 +1994 322 0.10594 +1994 323 0.07063 +1994 324 0.27746 +1994 325 19.29340 +1994 326 4.70670 +1994 327 0.19674 +1994 328 0.80463 +1994 329 6.74223 +1994 330 4.37123 +1994 331 0.17152 +1994 332 0.01261 +1994 333 0.70121 +1994 334 1.02949 +1994 335 0.43232 +1994 336 0.06729 +1994 337 8.50505 +1994 338 8.08619 +1994 339 0.00336 +1994 340 0.00336 +1994 341 0.00168 +1994 342 0.08411 +1994 343 2.08084 +1994 344 4.08431 +1994 345 0.10934 +1994 346 1.28350 +1994 347 1.89581 +1994 348 0.40372 +1994 349 2.95389 +1994 350 3.13388 +1994 351 0.35662 +1994 352 0.23046 +1994 353 0.90164 +1994 354 0.75025 +1994 355 6.19039 +1994 356 4.17851 +1994 357 9.45716 +1994 358 19.14650 +1994 359 0.03364 +1994 360 1.92104 +1994 361 1.50386 +1994 362 1.14219 +1994 363 1.25995 +1994 364 4.50317 +1994 365 2.11139 +1995 1 0.00522 +1995 2 0.43132 +1995 3 0.00174 +1995 4 0.00522 +1995 5 0.00174 +1995 6 0.00174 +1995 7 0.13044 +1995 8 14.84230 +1995 9 33.50570 +1995 10 17.60940 +1995 11 0.16522 +1995 12 2.22096 +1995 13 0.48872 +1995 14 0.68351 +1995 15 0.23305 +1995 16 1.96356 +1995 17 5.01237 +1995 18 11.44390 +1995 19 5.91502 +1995 20 0.00696 +1995 21 0.31479 +1995 22 0.24349 +1995 23 1.03308 +1995 24 0.32871 +1995 25 1.42788 +1995 26 19.25120 +1995 27 18.07030 +1995 28 0.67829 +1995 29 0.55133 +1995 30 0.52524 +1995 31 2.88709 +1995 32 34.98840 +1995 33 29.06710 +1995 34 0.58845 +1995 35 15.80550 +1995 36 15.49280 +1995 37 1.70253 +1995 38 2.20516 +1995 39 2.17452 +1995 40 12.23340 +1995 41 12.89840 +1995 42 1.68261 +1995 43 1.20755 +1995 44 0.01839 +1995 45 0.02758 +1995 46 0.01839 +1995 47 0.01839 +1995 48 0.02145 +1995 49 0.00306 +1995 50 0.02452 +1995 51 8.42529 +1995 52 12.88310 +1995 53 28.56290 +1995 54 11.20360 +1995 55 2.96372 +1995 56 1.91553 +1995 57 5.11984 +1995 58 1.25353 +1995 59 0.68578 +1995 60 0.14623 +1995 61 1.15474 +1995 62 0.44879 +1995 63 0.03026 +1995 64 0.00000 +1995 65 0.00168 +1995 66 0.02521 +1995 67 0.01345 +1995 68 0.01345 +1995 69 10.07500 +1995 70 16.72270 +1995 71 37.40220 +1995 72 0.69251 +1995 73 0.79168 +1995 74 1.95146 +1995 75 0.88076 +1995 76 0.45719 +1995 77 2.26914 +1995 78 1.90608 +1995 79 6.70994 +1995 80 6.87466 +1995 81 0.11598 +1995 82 0.41685 +1995 83 0.42694 +1995 84 0.23196 +1995 85 2.31452 +1995 86 2.37167 +1995 87 35.54820 +1995 88 56.50160 +1995 89 13.45350 +1995 90 17.86130 +1995 91 7.72609 +1995 92 7.87638 +1995 93 30.94080 +1995 94 7.77619 +1995 95 1.97877 +1995 96 15.67310 +1995 97 74.17550 +1995 98 14.30680 +1995 99 9.05134 +1995 100 1.81482 +1995 101 11.22140 +1995 102 1.95600 +1995 103 0.61481 +1995 104 0.89489 +1995 105 1.85809 +1995 106 5.91127 +1995 107 3.22205 +1995 108 2.93286 +1995 109 10.13300 +1995 110 4.34920 +1995 111 5.56515 +1995 112 18.90190 +1995 113 10.33790 +1995 114 21.99420 +1995 115 38.01790 +1995 116 23.01890 +1995 117 0.00000 +1995 118 0.00000 +1995 119 1.14992 +1995 120 7.36182 +1995 121 3.26108 +1995 122 1.85770 +1995 123 0.73871 +1995 124 0.74712 +1995 125 13.06110 +1995 126 7.85486 +1995 127 0.13798 +1995 128 0.11274 +1995 129 0.11274 +1995 130 0.00000 +1995 131 0.02356 +1995 132 0.09760 +1995 133 0.02524 +1995 134 1.91492 +1995 135 3.62454 +1995 136 1.61876 +1995 137 0.03197 +1995 138 0.07572 +1995 139 0.05721 +1995 140 8.53635 +1995 141 20.19750 +1995 142 3.42767 +1995 143 0.00337 +1995 144 0.00168 +1995 145 0.02356 +1995 146 1.07356 +1995 147 33.66920 +1995 148 40.63730 +1995 149 14.18520 +1995 150 6.19403 +1995 151 1.61075 +1995 152 4.25161 +1995 153 1.25327 +1995 154 0.35536 +1995 155 0.05500 +1995 156 0.03807 +1995 157 0.03913 +1995 158 0.00106 +1995 159 4.39650 +1995 160 6.32770 +1995 161 5.49007 +1995 162 30.59990 +1995 163 8.06748 +1995 164 12.93040 +1995 165 14.62890 +1995 166 4.03585 +1995 167 8.82156 +1995 168 25.69680 +1995 169 5.78620 +1995 170 0.80061 +1995 171 0.15335 +1995 172 3.44042 +1995 173 3.00362 +1995 174 0.00317 +1995 175 0.02009 +1995 176 0.07298 +1995 177 6.08234 +1995 178 5.88033 +1995 179 29.52960 +1995 180 11.43490 +1995 181 1.21667 +1995 182 22.86260 +1995 183 24.05350 +1995 184 0.09359 +1995 185 16.58560 +1995 186 10.98470 +1995 187 7.07654 +1995 188 4.41003 +1995 189 5.28946 +1995 190 3.71617 +1995 191 2.83917 +1995 192 35.17540 +1995 193 56.04760 +1995 194 25.64850 +1995 195 20.15170 +1995 196 5.09501 +1995 197 6.06400 +1995 198 3.44589 +1995 199 15.65380 +1995 200 18.50180 +1995 201 7.43719 +1995 202 6.51339 +1995 203 3.57337 +1995 204 0.10247 +1995 205 0.08229 +1995 206 2.60681 +1995 207 2.71250 +1995 208 3.14092 +1995 209 9.28721 +1995 210 0.32595 +1995 211 0.41632 +1995 212 0.03863 +1995 213 13.36260 +1995 214 24.79400 +1995 215 6.16253 +1995 216 16.03620 +1995 217 0.67674 +1995 218 0.07063 +1995 219 4.46491 +1995 220 35.74500 +1995 221 5.07359 +1995 222 3.69059 +1995 223 0.00514 +1995 224 0.22344 +1995 225 0.66261 +1995 226 0.14896 +1995 227 0.00000 +1995 228 0.01798 +1995 229 7.68551 +1995 230 5.41132 +1995 231 0.01284 +1995 232 0.46486 +1995 233 3.80873 +1995 234 3.81001 +1995 235 7.70606 +1995 236 7.72403 +1995 237 0.06677 +1995 238 0.05907 +1995 239 1.45235 +1995 240 3.35543 +1995 241 1.25716 +1995 242 0.22344 +1995 243 1.25468 +1995 244 5.14158 +1995 245 2.52574 +1995 246 0.01638 +1995 247 14.68110 +1995 248 41.80420 +1995 249 54.55740 +1995 250 11.82450 +1995 251 8.73200 +1995 252 3.08593 +1995 253 3.17929 +1995 254 2.92541 +1995 255 0.00164 +1995 256 0.00000 +1995 257 0.00328 +1995 258 0.00819 +1995 259 2.66988 +1995 260 4.50768 +1995 261 3.89181 +1995 262 0.09336 +1995 263 0.91726 +1995 264 6.65178 +1995 265 5.43641 +1995 266 0.00164 +1995 267 0.00000 +1995 268 0.81898 +1995 269 1.05813 +1995 270 3.23171 +1995 271 24.86270 +1995 272 7.77379 +1995 273 19.37010 +1995 274 26.66560 +1995 275 17.30220 +1995 276 4.93689 +1995 277 18.51120 +1995 278 27.45800 +1995 279 6.89053 +1995 280 3.74822 +1995 281 21.99330 +1995 282 18.68040 +1995 283 2.68102 +1995 284 1.95798 +1995 285 4.15023 +1995 286 3.54288 +1995 287 23.10680 +1995 288 2.75910 +1995 289 3.74099 +1995 290 3.00494 +1995 291 0.69267 +1995 292 0.00145 +1995 293 0.01446 +1995 294 3.26234 +1995 295 1.40992 +1995 296 2.30648 +1995 297 1.83651 +1995 298 1.21181 +1995 299 1.22193 +1995 300 11.28800 +1995 301 6.66061 +1995 302 3.81040 +1995 303 5.49507 +1995 304 20.83540 +1995 305 6.66421 +1995 306 3.03223 +1995 307 9.88319 +1995 308 1.30722 +1995 309 0.30406 +1995 310 0.01437 +1995 311 0.47884 +1995 312 5.45515 +1995 313 15.71540 +1995 314 0.44532 +1995 315 0.65361 +1995 316 0.30286 +1995 317 4.28559 +1995 318 0.72903 +1995 319 0.05985 +1995 320 0.31962 +1995 321 0.10534 +1995 322 0.05985 +1995 323 13.13930 +1995 324 5.79392 +1995 325 0.40821 +1995 326 0.03232 +1995 327 14.01670 +1995 328 53.43940 +1995 329 12.20200 +1995 330 12.67240 +1995 331 2.21582 +1995 332 0.06823 +1995 333 0.03831 +1995 334 0.00000 +1995 335 0.00000 +1995 336 0.71419 +1995 337 0.71772 +1995 338 0.02475 +1995 339 0.01414 +1995 340 0.21567 +1995 341 0.19446 +1995 342 0.22981 +1995 343 0.92632 +1995 344 0.68237 +1995 345 2.48198 +1995 346 1.96225 +1995 347 7.03229 +1995 348 10.85780 +1995 349 2.24156 +1995 350 21.38680 +1995 351 13.91610 +1995 352 0.00000 +1995 353 0.42781 +1995 354 6.28981 +1995 355 15.80060 +1995 356 63.00780 +1995 357 39.99110 +1995 358 2.86736 +1995 359 6.67519 +1995 360 6.72469 +1995 361 0.20860 +1995 362 1.38949 +1995 363 0.61873 +1995 364 0.04243 +1995 365 0.03561 +1996 1 0.61272 +1996 2 1.46133 +1996 3 0.53706 +1996 4 0.58750 +1996 5 0.41985 +1996 6 1.68386 +1996 7 0.95543 +1996 8 1.66013 +1996 9 2.84254 +1996 10 0.95691 +1996 11 0.66613 +1996 12 15.74970 +1996 13 31.06620 +1996 14 7.59445 +1996 15 13.59700 +1996 16 11.76030 +1996 17 0.60975 +1996 18 4.38546 +1996 19 3.91369 +1996 20 0.39612 +1996 21 1.13939 +1996 22 1.97761 +1996 23 6.24736 +1996 24 5.72810 +1996 25 11.25740 +1996 26 11.52300 +1996 27 1.91679 +1996 28 1.02515 +1996 29 0.66464 +1996 30 0.11127 +1996 31 0.72522 +1996 32 0.68448 +1996 33 15.45780 +1996 34 12.43470 +1996 35 0.06519 +1996 36 0.00163 +1996 37 22.22600 +1996 38 54.84470 +1996 39 23.70250 +1996 40 0.36017 +1996 41 0.18090 +1996 42 0.01793 +1996 43 0.31942 +1996 44 2.06973 +1996 45 0.33572 +1996 46 0.27542 +1996 47 0.16949 +1996 48 0.59810 +1996 49 6.27928 +1996 50 5.86207 +1996 51 1.50259 +1996 52 14.54520 +1996 53 30.31590 +1996 54 0.01956 +1996 55 0.04889 +1996 56 0.04726 +1996 57 0.09615 +1996 58 0.09126 +1996 59 0.24935 +1996 60 0.14004 +1996 61 3.60792 +1996 62 21.20020 +1996 63 0.24896 +1996 64 0.29369 +1996 65 0.00972 +1996 66 0.17894 +1996 67 0.14004 +1996 68 0.00000 +1996 69 0.09530 +1996 70 0.26063 +1996 71 0.00000 +1996 72 0.00194 +1996 73 0.91997 +1996 74 4.79436 +1996 75 11.34700 +1996 76 5.07249 +1996 77 0.46679 +1996 78 2.61793 +1996 79 0.14782 +1996 80 0.00583 +1996 81 18.44420 +1996 82 22.29720 +1996 83 2.03055 +1996 84 0.00194 +1996 85 0.18672 +1996 86 0.40261 +1996 87 1.87690 +1996 88 0.36760 +1996 89 3.75185 +1996 90 15.83790 +1996 91 0.93083 +1996 92 2.58804 +1996 93 2.73265 +1996 94 12.03270 +1996 95 15.53990 +1996 96 13.15800 +1996 97 20.22400 +1996 98 2.96370 +1996 99 1.27657 +1996 100 5.68472 +1996 101 3.77485 +1996 102 2.25560 +1996 103 2.17416 +1996 104 14.20680 +1996 105 0.47040 +1996 106 0.42054 +1996 107 0.08311 +1996 108 0.18118 +1996 109 9.49281 +1996 110 12.19550 +1996 111 33.45670 +1996 112 3.38590 +1996 113 0.05651 +1996 114 0.10970 +1996 115 0.08311 +1996 116 0.00166 +1996 117 0.00166 +1996 118 0.51362 +1996 119 11.29300 +1996 120 34.58540 +1996 121 4.00529 +1996 122 0.47198 +1996 123 0.00187 +1996 124 0.00187 +1996 125 0.00000 +1996 126 0.00000 +1996 127 0.00373 +1996 128 0.38616 +1996 129 2.71248 +1996 130 0.12313 +1996 131 0.00187 +1996 132 0.00746 +1996 133 0.19775 +1996 134 8.93774 +1996 135 25.49060 +1996 136 3.05760 +1996 137 2.99417 +1996 138 0.00000 +1996 139 0.00373 +1996 140 0.15857 +1996 141 25.22010 +1996 142 73.55020 +1996 143 10.08500 +1996 144 2.56137 +1996 145 5.82417 +1996 146 5.87081 +1996 147 0.14738 +1996 148 0.00000 +1996 149 0.13059 +1996 150 4.65449 +1996 151 4.96230 +1996 152 0.55231 +1996 153 0.28282 +1996 154 0.00000 +1996 155 0.00296 +1996 156 0.00296 +1996 157 2.38102 +1996 158 0.37611 +1996 159 0.03554 +1996 160 8.39724 +1996 161 3.59818 +1996 162 5.93626 +1996 163 0.83708 +1996 164 0.03110 +1996 165 0.00148 +1996 166 0.00592 +1996 167 4.01871 +1996 168 1.51035 +1996 169 0.00148 +1996 170 0.00148 +1996 171 0.01629 +1996 172 1.15497 +1996 173 17.57930 +1996 174 35.94630 +1996 175 9.91055 +1996 176 10.01420 +1996 177 2.07303 +1996 178 6.44267 +1996 179 9.06357 +1996 180 1.27343 +1996 181 8.26694 +1996 182 11.89590 +1996 183 3.78693 +1996 184 3.51912 +1996 185 0.05359 +1996 186 0.03838 +1996 187 0.00087 +1996 188 0.03577 +1996 189 0.03577 +1996 190 0.00785 +1996 191 1.73426 +1996 192 21.29440 +1996 193 9.33343 +1996 194 0.91598 +1996 195 18.90500 +1996 196 26.22760 +1996 197 7.32699 +1996 198 31.02560 +1996 199 5.43745 +1996 200 4.72822 +1996 201 3.96664 +1996 202 6.68406 +1996 203 37.53780 +1996 204 8.97140 +1996 205 0.91162 +1996 206 6.00797 +1996 207 9.16245 +1996 208 1.73164 +1996 209 0.00087 +1996 210 0.08375 +1996 211 0.76157 +1996 212 0.01832 +1996 213 6.73936 +1996 214 38.17030 +1996 215 6.33685 +1996 216 1.97349 +1996 217 5.40346 +1996 218 13.39280 +1996 219 7.25203 +1996 220 0.89349 +1996 221 4.04066 +1996 222 13.28700 +1996 223 2.07498 +1996 224 2.21898 +1996 225 0.10236 +1996 226 1.38968 +1996 227 7.08547 +1996 228 7.40297 +1996 229 0.13446 +1996 230 18.00780 +1996 231 2.66920 +1996 232 47.92410 +1996 233 43.19810 +1996 234 4.15951 +1996 235 0.68010 +1996 236 0.15094 +1996 237 9.31400 +1996 238 20.42540 +1996 239 2.52433 +1996 240 2.88259 +1996 241 4.67305 +1996 242 4.12828 +1996 243 0.25590 +1996 244 0.00000 +1996 245 15.73960 +1996 246 10.89360 +1996 247 32.43640 +1996 248 44.11580 +1996 249 6.50956 +1996 250 11.33510 +1996 251 18.25540 +1996 252 27.93720 +1996 253 18.79160 +1996 254 14.17080 +1996 255 50.44110 +1996 256 4.96246 +1996 257 7.62413 +1996 258 6.79236 +1996 259 0.16507 +1996 260 0.07678 +1996 261 0.08318 +1996 262 0.16379 +1996 263 0.02559 +1996 264 0.09085 +1996 265 0.09085 +1996 266 0.00256 +1996 267 0.01408 +1996 268 0.06782 +1996 269 0.51058 +1996 270 1.63027 +1996 271 8.16542 +1996 272 13.45800 +1996 273 4.52611 +1996 274 0.20072 +1996 275 22.05120 +1996 276 2.00926 +1996 277 0.47849 +1996 278 3.47717 +1996 279 3.35552 +1996 280 0.08921 +1996 281 12.21370 +1996 282 10.42340 +1996 283 3.18116 +1996 284 3.66168 +1996 285 5.53509 +1996 286 9.18055 +1996 287 3.80968 +1996 288 1.03808 +1996 289 0.33657 +1996 290 0.05677 +1996 291 0.00811 +1996 292 0.00203 +1996 293 0.00000 +1996 294 0.01217 +1996 295 5.59997 +1996 296 3.73264 +1996 297 1.23881 +1996 298 0.02636 +1996 299 1.15365 +1996 300 7.67411 +1996 301 5.41952 +1996 302 5.58173 +1996 303 0.33859 +1996 304 0.57987 +1996 305 1.49055 +1996 306 1.62029 +1996 307 2.18032 +1996 308 6.03490 +1996 309 9.72905 +1996 310 4.57940 +1996 311 0.67233 +1996 312 1.93968 +1996 313 1.05735 +1996 314 1.00193 +1996 315 9.07422 +1996 316 20.87420 +1996 317 22.65640 +1996 318 6.32512 +1996 319 2.41513 +1996 320 1.84343 +1996 321 0.09334 +1996 322 4.37669 +1996 323 11.17870 +1996 324 3.22600 +1996 325 0.11084 +1996 326 5.87593 +1996 327 5.73446 +1996 328 0.76275 +1996 329 1.51237 +1996 330 0.55711 +1996 331 3.05099 +1996 332 2.04761 +1996 333 6.59493 +1996 334 4.49190 +1996 335 39.15810 +1996 336 23.34700 +1996 337 7.15434 +1996 338 10.43690 +1996 339 0.01791 +1996 340 1.52220 +1996 341 5.04117 +1996 342 3.63537 +1996 343 0.04656 +1996 344 0.00179 +1996 345 2.75429 +1996 346 2.09705 +1996 347 9.70805 +1996 348 47.90090 +1996 349 19.10630 +1996 350 6.44159 +1996 351 5.53543 +1996 352 0.00716 +1996 353 0.84348 +1996 354 18.05690 +1996 355 19.46090 +1996 356 2.51969 +1996 357 0.01970 +1996 358 0.13431 +1996 359 0.13073 +1996 360 0.04477 +1996 361 0.43517 +1996 362 0.38503 +1996 363 5.75391 +1996 364 88.76570 +1996 365 66.56490 +1996 366 0.54530 +1997 1 5.80486 +1997 2 6.52707 +1997 3 2.37463 +1997 4 4.33810 +1997 5 0.72123 +1997 6 0.24786 +1997 7 1.57077 +1997 8 3.02685 +1997 9 13.51780 +1997 10 32.42830 +1997 11 3.52355 +1997 12 0.01555 +1997 13 0.64542 +1997 14 0.20024 +1997 15 0.54724 +1997 16 0.44129 +1997 17 1.82836 +1997 18 1.82447 +1997 19 0.92050 +1997 20 0.00194 +1997 21 0.00292 +1997 22 0.61042 +1997 23 2.39796 +1997 24 2.73719 +1997 25 1.78850 +1997 26 0.04568 +1997 27 0.00000 +1997 28 0.00000 +1997 29 0.00097 +1997 30 0.00000 +1997 31 0.05530 +1997 32 0.08175 +1997 33 1.50280 +1997 34 13.64310 +1997 35 24.67730 +1997 36 9.24526 +1997 37 2.40208 +1997 38 2.42853 +1997 39 0.61795 +1997 40 0.00962 +1997 41 0.13946 +1997 42 1.78894 +1997 43 0.05771 +1997 44 0.00240 +1997 45 0.00000 +1997 46 0.09137 +1997 47 0.00240 +1997 48 6.22041 +1997 49 39.88080 +1997 50 4.25354 +1997 51 0.94015 +1997 52 0.00240 +1997 53 1.56773 +1997 54 2.98878 +1997 55 3.60433 +1997 56 1.33690 +1997 57 0.05290 +1997 58 0.07935 +1997 59 14.88560 +1997 60 19.22370 +1997 61 11.00960 +1997 62 9.72169 +1997 63 1.48645 +1997 64 12.31330 +1997 65 20.80860 +1997 66 13.25510 +1997 67 11.17830 +1997 68 0.02108 +1997 69 36.37950 +1997 70 46.89710 +1997 71 0.04217 +1997 72 0.01054 +1997 73 0.02987 +1997 74 0.19854 +1997 75 0.00703 +1997 76 0.00527 +1997 77 0.00703 +1997 78 0.00000 +1997 79 0.81175 +1997 80 6.79095 +1997 81 22.82740 +1997 82 21.97880 +1997 83 3.86372 +1997 84 0.05095 +1997 85 0.82054 +1997 86 0.62902 +1997 87 0.00176 +1997 88 0.00176 +1997 89 0.00351 +1997 90 0.00000 +1997 91 0.00000 +1997 92 0.01241 +1997 93 0.01063 +1997 94 0.00177 +1997 95 0.27823 +1997 96 2.96662 +1997 97 8.92467 +1997 98 40.68030 +1997 99 3.27143 +1997 100 0.14000 +1997 101 0.03899 +1997 102 0.01772 +1997 103 16.24730 +1997 104 8.59150 +1997 105 1.91927 +1997 106 1.71901 +1997 107 0.28355 +1997 108 11.08140 +1997 109 11.09740 +1997 110 0.00354 +1997 111 0.00000 +1997 112 4.02106 +1997 113 4.06537 +1997 114 1.93876 +1997 115 2.33041 +1997 116 0.38811 +1997 117 0.39697 +1997 118 0.00354 +1997 119 0.00354 +1997 120 0.01584 +1997 121 0.00792 +1997 122 0.00158 +1997 123 0.00951 +1997 124 0.00317 +1997 125 0.00317 +1997 126 0.00158 +1997 127 0.01743 +1997 128 0.03644 +1997 129 0.00634 +1997 130 0.55131 +1997 131 13.85570 +1997 132 13.36150 +1997 133 0.44992 +1997 134 0.30259 +1997 135 0.08555 +1997 136 0.02218 +1997 137 1.30858 +1997 138 1.45750 +1997 139 0.62102 +1997 140 0.63845 +1997 141 0.91886 +1997 142 18.07770 +1997 143 83.89010 +1997 144 32.84600 +1997 145 1.71098 +1997 146 7.46176 +1997 147 6.38606 +1997 148 1.07570 +1997 149 10.25950 +1997 150 25.62350 +1997 151 20.52490 +1997 152 98.70650 +1997 153 32.87070 +1997 154 0.19751 +1997 155 0.00737 +1997 156 0.00000 +1997 157 0.00000 +1997 158 0.17540 +1997 159 0.15624 +1997 160 14.38290 +1997 161 18.03530 +1997 162 9.13117 +1997 163 0.07075 +1997 164 0.00147 +1997 165 0.00000 +1997 166 0.14150 +1997 167 4.76531 +1997 168 34.02630 +1997 169 4.90533 +1997 170 0.00442 +1997 171 0.07517 +1997 172 0.16508 +1997 173 0.05896 +1997 174 1.44300 +1997 175 2.04733 +1997 176 0.01474 +1997 177 0.05011 +1997 178 0.00000 +1997 179 0.17982 +1997 180 25.38890 +1997 181 55.25730 +1997 182 7.73945 +1997 183 10.13640 +1997 184 25.61680 +1997 185 0.74573 +1997 186 0.00000 +1997 187 0.00144 +1997 188 0.13820 +1997 189 3.54005 +1997 190 19.81070 +1997 191 12.14180 +1997 192 0.10077 +1997 193 2.41858 +1997 194 3.40472 +1997 195 1.10564 +1997 196 0.00144 +1997 197 0.00000 +1997 198 2.82023 +1997 199 0.66367 +1997 200 0.00144 +1997 201 0.05902 +1997 202 0.43765 +1997 203 0.48659 +1997 204 0.16844 +1997 205 0.02159 +1997 206 0.00432 +1997 207 0.21019 +1997 208 0.21019 +1997 209 0.00432 +1997 210 5.55409 +1997 211 4.45133 +1997 212 3.09705 +1997 213 1.22173 +1997 214 0.22960 +1997 215 0.03687 +1997 216 0.03855 +1997 217 0.01173 +1997 218 0.00838 +1997 219 0.01006 +1997 220 0.01341 +1997 221 0.78264 +1997 222 16.14220 +1997 223 16.34500 +1997 224 8.90904 +1997 225 14.97410 +1997 226 3.95846 +1997 227 0.68209 +1997 228 0.69047 +1997 229 1.77309 +1997 230 10.48270 +1997 231 11.99770 +1997 232 9.89950 +1997 233 8.50680 +1997 234 5.29076 +1997 235 0.25641 +1997 236 0.25138 +1997 237 12.52230 +1997 238 9.75369 +1997 239 6.97004 +1997 240 0.78097 +1997 241 0.00335 +1997 242 0.00335 +1997 243 0.63055 +1997 244 1.24476 +1997 245 3.07515 +1997 246 9.95972 +1997 247 7.55759 +1997 248 0.07841 +1997 249 0.03594 +1997 250 3.12252 +1997 251 3.09312 +1997 252 8.69944 +1997 253 40.37880 +1997 254 12.70330 +1997 255 5.27962 +1997 256 0.00572 +1997 257 0.00898 +1997 258 3.19685 +1997 259 4.73156 +1997 260 13.62620 +1997 261 6.68936 +1997 262 0.17234 +1997 263 0.41329 +1997 264 1.88593 +1997 265 35.84320 +1997 266 32.21190 +1997 267 4.94229 +1997 268 0.04002 +1997 269 10.70950 +1997 270 22.68180 +1997 271 16.82060 +1997 272 39.26800 +1997 273 14.91430 +1997 274 0.28779 +1997 275 0.28056 +1997 276 9.25689 +1997 277 25.07650 +1997 278 5.45204 +1997 279 0.68259 +1997 280 0.24729 +1997 281 0.00145 +1997 282 0.75779 +1997 283 0.83588 +1997 284 0.23572 +1997 285 0.34852 +1997 286 9.01249 +1997 287 10.72910 +1997 288 0.64354 +1997 289 0.33985 +1997 290 8.17371 +1997 291 38.71670 +1997 292 16.41110 +1997 293 6.86494 +1997 294 6.09269 +1997 295 0.11858 +1997 296 0.00000 +1997 297 0.02314 +1997 298 2.63202 +1997 299 2.62045 +1997 300 0.06508 +1997 301 0.14172 +1997 302 0.15619 +1997 303 0.05785 +1997 304 0.05981 +1997 305 0.00866 +1997 306 0.15242 +1997 307 0.10738 +1997 308 0.20091 +1997 309 1.50512 +1997 310 2.37460 +1997 311 18.13600 +1997 312 14.88150 +1997 313 2.92191 +1997 314 0.03810 +1997 315 5.47837 +1997 316 12.11200 +1997 317 0.90931 +1997 318 1.22800 +1997 319 41.34500 +1997 320 32.68490 +1997 321 5.95121 +1997 322 0.07967 +1997 323 1.32153 +1997 324 1.07039 +1997 325 0.00000 +1997 326 0.00000 +1997 327 0.04157 +1997 328 0.63045 +1997 329 0.69454 +1997 330 0.00173 +1997 331 0.16801 +1997 332 1.63676 +1997 333 1.08771 +1997 334 2.72310 +1997 335 9.43935 +1997 336 13.68270 +1997 337 19.58910 +1997 338 0.00000 +1997 339 0.12378 +1997 340 0.00000 +1997 341 1.75171 +1997 342 9.27252 +1997 343 1.61987 +1997 344 0.46282 +1997 345 0.30406 +1997 346 0.12109 +1997 347 0.00000 +1997 348 0.01345 +1997 349 13.88190 +1997 350 12.64950 +1997 351 0.00000 +1997 352 0.21796 +1997 353 1.20279 +1997 354 6.70011 +1997 355 1.89433 +1997 356 1.30235 +1997 357 0.93371 +1997 358 21.91120 +1997 359 18.94870 +1997 360 0.00538 +1997 361 0.34173 +1997 362 0.88528 +1997 363 0.15338 +1997 364 0.20450 +1997 365 0.93582 +1998 1 0.57679 +1998 2 0.00147 +1998 3 0.00147 +1998 4 0.00883 +1998 5 0.12654 +1998 6 0.80634 +1998 7 0.35902 +1998 8 0.16186 +1998 9 0.16186 +1998 10 0.00294 +1998 11 1.68918 +1998 12 0.82693 +1998 13 0.27810 +1998 14 0.00441 +1998 15 4.77180 +1998 16 3.60350 +1998 17 0.00294 +1998 18 0.02354 +1998 19 1.84515 +1998 20 9.41559 +1998 21 3.78742 +1998 22 1.80984 +1998 23 2.13797 +1998 24 0.28987 +1998 25 0.01471 +1998 26 0.06474 +1998 27 0.98291 +1998 28 4.02579 +1998 29 2.97373 +1998 30 2.00260 +1998 31 0.08893 +1998 32 0.04550 +1998 33 0.43431 +1998 34 0.80658 +1998 35 0.15511 +1998 36 1.40427 +1998 37 1.24296 +1998 38 0.01241 +1998 39 1.49734 +1998 40 6.42366 +1998 41 3.57789 +1998 42 0.28127 +1998 43 2.51900 +1998 44 2.45696 +1998 45 0.70317 +1998 46 1.19746 +1998 47 1.09819 +1998 48 10.59100 +1998 49 10.81850 +1998 50 3.80125 +1998 51 21.98440 +1998 52 35.25150 +1998 53 24.12490 +1998 54 35.74380 +1998 55 3.86950 +1998 56 0.22750 +1998 57 0.07239 +1998 58 0.04757 +1998 59 0.08593 +1998 60 0.01012 +1998 61 0.06072 +1998 62 2.45510 +1998 63 4.82519 +1998 64 7.72961 +1998 65 10.34870 +1998 66 8.26192 +1998 67 2.07256 +1998 68 4.78066 +1998 69 23.47420 +1998 70 6.52332 +1998 71 14.39060 +1998 72 21.86920 +1998 73 11.50640 +1998 74 1.20225 +1998 75 1.38846 +1998 76 9.37916 +1998 77 13.80160 +1998 78 0.00607 +1998 79 0.00000 +1998 80 0.12954 +1998 81 0.58696 +1998 82 0.47766 +1998 83 0.35622 +1998 84 0.00202 +1998 85 0.75090 +1998 86 3.34768 +1998 87 9.00675 +1998 88 2.89026 +1998 89 0.08501 +1998 90 2.45800 +1998 91 9.76310 +1998 92 3.58363 +1998 93 4.48446 +1998 94 2.38088 +1998 95 0.00000 +1998 96 0.00164 +1998 97 0.23464 +1998 98 25.07560 +1998 99 12.07010 +1998 100 0.06399 +1998 101 0.75972 +1998 102 0.26746 +1998 103 0.05743 +1998 104 3.20295 +1998 105 0.06728 +1998 106 0.12470 +1998 107 0.71541 +1998 108 0.00656 +1998 109 0.00164 +1998 110 0.00164 +1998 111 0.27731 +1998 112 10.68690 +1998 113 12.18340 +1998 114 0.42498 +1998 115 1.24213 +1998 116 1.94277 +1998 117 4.02338 +1998 118 2.29556 +1998 119 0.32981 +1998 120 0.10777 +1998 121 4.81610 +1998 122 0.53124 +1998 123 0.09976 +1998 124 0.08729 +1998 125 0.00000 +1998 126 14.04050 +1998 127 27.87900 +1998 128 0.04489 +1998 129 12.08010 +1998 130 7.88633 +1998 131 3.35580 +1998 132 7.42492 +1998 133 7.27528 +1998 134 0.00249 +1998 135 0.04988 +1998 136 0.50755 +1998 137 0.46640 +1998 138 0.00748 +1998 139 0.36414 +1998 140 1.59871 +1998 141 5.14282 +1998 142 38.49390 +1998 143 3.94441 +1998 144 6.04818 +1998 145 13.89830 +1998 146 5.15904 +1998 147 1.00263 +1998 148 0.03991 +1998 149 0.04115 +1998 150 0.62851 +1998 151 0.00451 +1998 152 3.71525 +1998 153 11.97790 +1998 154 0.01655 +1998 155 0.00000 +1998 156 0.03310 +1998 157 10.77110 +1998 158 16.03470 +1998 159 4.22235 +1998 160 2.32335 +1998 161 0.01204 +1998 162 0.01806 +1998 163 33.16940 +1998 164 60.41000 +1998 165 8.83143 +1998 166 0.00000 +1998 167 19.97870 +1998 168 37.45800 +1998 169 1.59504 +1998 170 1.17371 +1998 171 0.01204 +1998 172 0.01204 +1998 173 0.06621 +1998 174 0.12038 +1998 175 3.25329 +1998 176 14.13870 +1998 177 7.16115 +1998 178 1.58903 +1998 179 0.00301 +1998 180 0.05568 +1998 181 34.70080 +1998 182 71.35280 +1998 183 9.74067 +1998 184 0.04688 +1998 185 0.02149 +1998 186 0.01953 +1998 187 0.25196 +1998 188 3.38882 +1998 189 79.61100 +1998 190 78.52890 +1998 191 41.13860 +1998 192 8.80313 +1998 193 0.34181 +1998 194 31.52680 +1998 195 48.74440 +1998 196 14.07290 +1998 197 13.22720 +1998 198 0.12305 +1998 199 0.06446 +1998 200 0.06446 +1998 201 3.21108 +1998 202 2.78919 +1998 203 5.26781 +1998 204 19.73920 +1998 205 18.79380 +1998 206 15.24090 +1998 207 8.44764 +1998 208 0.25196 +1998 209 0.60550 +1998 210 14.12370 +1998 211 6.06082 +1998 212 6.60478 +1998 213 1.53733 +1998 214 0.10881 +1998 215 0.00311 +1998 216 0.00311 +1998 217 0.14456 +1998 218 0.49275 +1998 219 0.51296 +1998 220 0.22539 +1998 221 17.33810 +1998 222 71.26440 +1998 223 15.72310 +1998 224 5.65813 +1998 225 12.56290 +1998 226 2.51041 +1998 227 0.44146 +1998 228 0.07928 +1998 229 0.05907 +1998 230 9.82400 +1998 231 3.98401 +1998 232 1.76894 +1998 233 0.00000 +1998 234 0.04197 +1998 235 0.23317 +1998 236 0.40104 +1998 237 3.31716 +1998 238 36.28040 +1998 239 31.57670 +1998 240 0.69172 +1998 241 9.83022 +1998 242 3.67468 +1998 243 0.10324 +1998 244 0.60535 +1998 245 0.32223 +1998 246 0.38323 +1998 247 0.38949 +1998 248 12.42140 +1998 249 10.16580 +1998 250 0.52870 +1998 251 0.07352 +1998 252 0.39887 +1998 253 0.30815 +1998 254 0.10637 +1998 255 0.00156 +1998 256 0.04849 +1998 257 3.31612 +1998 258 33.99960 +1998 259 31.47340 +1998 260 1.81917 +1998 261 0.09698 +1998 262 0.66948 +1998 263 0.64602 +1998 264 0.00313 +1998 265 0.00156 +1998 266 0.00469 +1998 267 0.04223 +1998 268 0.21430 +1998 269 19.97490 +1998 270 2.15861 +1998 271 0.18145 +1998 272 15.93930 +1998 273 12.19980 +1998 274 0.11685 +1998 275 1.07758 +1998 276 4.59334 +1998 277 4.53622 +1998 278 0.00260 +1998 279 0.00000 +1998 280 0.06232 +1998 281 1.99417 +1998 282 7.45477 +1998 283 13.24510 +1998 284 59.13180 +1998 285 27.48990 +1998 286 4.42976 +1998 287 22.76680 +1998 288 6.27073 +1998 289 0.22071 +1998 290 0.22331 +1998 291 0.23888 +1998 292 3.52355 +1998 293 13.25810 +1998 294 5.63976 +1998 295 2.71861 +1998 296 0.05712 +1998 297 0.49854 +1998 298 0.49595 +1998 299 1.04123 +1998 300 12.35970 +1998 301 22.02410 +1998 302 0.45180 +1998 303 0.37391 +1998 304 4.64717 +1998 305 4.13407 +1998 306 20.80380 +1998 307 14.48380 +1998 308 1.25774 +1998 309 0.96469 +1998 310 0.16582 +1998 311 0.40986 +1998 312 0.93236 +1998 313 0.02294 +1998 314 0.01460 +1998 315 0.02503 +1998 316 0.00000 +1998 317 0.00104 +1998 318 0.00104 +1998 319 0.00626 +1998 320 0.21797 +1998 321 0.22214 +1998 322 0.51311 +1998 323 0.24300 +1998 324 0.40152 +1998 325 2.18592 +1998 326 2.04409 +1998 327 1.23063 +1998 328 12.93300 +1998 329 9.60722 +1998 330 0.10951 +1998 331 7.86870 +1998 332 33.36250 +1998 333 42.70370 +1998 334 7.89198 +1998 335 9.55117 +1998 336 24.58970 +1998 337 45.34640 +1998 338 5.31182 +1998 339 2.53928 +1998 340 5.01364 +1998 341 3.02742 +1998 342 0.14909 +1998 343 1.35140 +1998 344 0.10580 +1998 345 0.00962 +1998 346 0.00000 +1998 347 0.18516 +1998 348 0.14187 +1998 349 0.00000 +1998 350 0.39676 +1998 351 36.61760 +1998 352 37.69250 +1998 353 0.35829 +1998 354 0.78391 +1998 355 0.65887 +1998 356 0.62520 +1998 357 0.00721 +1998 358 0.00240 +1998 359 0.00000 +1998 360 0.05050 +1998 361 1.22876 +1998 362 1.36823 +1998 363 0.15149 +1998 364 0.02405 +1998 365 0.01912 +1999 1 0.14403 +1999 2 0.28806 +1999 3 0.17094 +1999 4 0.33712 +1999 5 0.03957 +1999 6 0.02849 +1999 7 0.00158 +1999 8 1.47512 +1999 9 1.57641 +1999 10 0.09338 +1999 11 1.10317 +1999 12 2.11771 +1999 13 6.56205 +1999 14 17.65870 +1999 15 13.49290 +1999 16 24.86960 +1999 17 15.64230 +1999 18 6.27716 +1999 19 3.43614 +1999 20 10.56480 +1999 21 12.75370 +1999 22 0.73439 +1999 23 0.13612 +1999 24 0.01741 +1999 25 0.00475 +1999 26 0.03165 +1999 27 0.20101 +1999 28 0.25007 +1999 29 2.21268 +1999 30 11.94180 +1999 31 6.27276 +1999 32 0.08925 +1999 33 0.15438 +1999 34 0.00482 +1999 35 0.00241 +1999 36 0.06030 +1999 37 0.01206 +1999 38 0.00482 +1999 39 0.05307 +1999 40 0.61027 +1999 41 0.00000 +1999 42 0.00241 +1999 43 0.00241 +1999 44 0.00241 +1999 45 0.01688 +1999 46 0.00241 +1999 47 0.01206 +1999 48 0.10131 +1999 49 0.70193 +1999 50 0.95279 +1999 51 0.48242 +1999 52 0.00000 +1999 53 0.45107 +1999 54 0.48725 +1999 55 1.46898 +1999 56 8.63541 +1999 57 11.45520 +1999 58 2.03101 +1999 59 0.00426 +1999 60 0.00185 +1999 61 0.00185 +1999 62 0.45062 +1999 63 5.33733 +1999 64 19.66500 +1999 65 29.32390 +1999 66 11.46320 +1999 67 4.05563 +1999 68 6.14808 +1999 69 7.76590 +1999 70 11.67380 +1999 71 9.19719 +1999 72 0.16067 +1999 73 0.40446 +1999 74 0.17914 +1999 75 0.20315 +1999 76 0.35274 +1999 77 0.26225 +1999 78 0.00185 +1999 79 0.00554 +1999 80 0.27333 +1999 81 0.54851 +1999 82 4.58197 +1999 83 4.09626 +1999 84 0.84215 +1999 85 1.83574 +1999 86 2.18295 +1999 87 3.32429 +1999 88 0.34351 +1999 89 4.50071 +1999 90 4.29862 +1999 91 0.00000 +1999 92 0.00605 +1999 93 0.41170 +1999 94 0.51311 +1999 95 10.92210 +1999 96 14.29290 +1999 97 10.48920 +1999 98 10.41810 +1999 99 0.18466 +1999 100 1.35013 +1999 101 1.27748 +1999 102 0.08325 +1999 103 0.86729 +1999 104 5.17499 +1999 105 9.39338 +1999 106 24.87290 +1999 107 2.07060 +1999 108 0.34359 +1999 109 0.00151 +1999 110 0.00908 +1999 111 0.00605 +1999 112 0.31332 +1999 113 0.37083 +1999 114 0.12412 +1999 115 0.04995 +1999 116 0.99595 +1999 117 0.06054 +1999 118 0.00605 +1999 119 7.58312 +1999 120 63.18140 +1999 121 11.55040 +1999 122 3.87172 +1999 123 0.00132 +1999 124 0.40950 +1999 125 0.68426 +1999 126 0.30646 +1999 127 0.01717 +1999 128 0.03038 +1999 129 0.04095 +1999 130 0.00264 +1999 131 0.00000 +1999 132 0.35402 +1999 133 4.04213 +1999 134 18.32560 +1999 135 12.66930 +1999 136 6.06583 +1999 137 0.00000 +1999 138 0.00132 +1999 139 0.00264 +1999 140 0.00528 +1999 141 0.00264 +1999 142 0.00000 +1999 143 0.00000 +1999 144 0.00132 +1999 145 1.06998 +1999 146 4.07911 +1999 147 1.06865 +1999 148 4.51371 +1999 149 3.80568 +1999 150 3.21521 +1999 151 3.63062 +1999 152 6.21354 +1999 153 1.54330 +1999 154 4.10894 +1999 155 22.43030 +1999 156 10.44000 +1999 157 0.00922 +1999 158 0.34462 +1999 159 4.30488 +1999 160 0.43337 +1999 161 0.00115 +1999 162 0.57744 +1999 163 17.40620 +1999 164 11.54080 +1999 165 13.89090 +1999 166 14.68380 +1999 167 5.93231 +1999 168 0.33886 +1999 169 0.16828 +1999 170 0.00346 +1999 171 0.00231 +1999 172 0.00231 +1999 173 0.00231 +1999 174 0.00000 +1999 175 0.00115 +1999 176 0.10950 +1999 177 0.10950 +1999 178 0.00115 +1999 179 0.00000 +1999 180 0.00000 +1999 181 0.07331 +1999 182 0.17105 +1999 183 33.86790 +1999 184 25.07100 +1999 185 2.39295 +1999 186 0.00349 +1999 187 0.00524 +1999 188 1.48010 +1999 189 1.69828 +1999 190 0.00175 +1999 191 0.00698 +1999 192 0.05585 +1999 193 0.35257 +1999 194 0.14312 +1999 195 0.00349 +1999 196 35.02160 +1999 197 42.63850 +1999 198 21.20140 +1999 199 8.28021 +1999 200 3.57459 +1999 201 8.15105 +1999 202 6.03561 +1999 203 8.95742 +1999 204 7.94334 +1999 205 0.03665 +1999 206 1.43123 +1999 207 0.70864 +1999 208 0.19025 +1999 209 0.00175 +1999 210 0.26530 +1999 211 0.00349 +1999 212 0.00226 +1999 213 5.30072 +1999 214 27.98370 +1999 215 6.71635 +1999 216 5.08588 +1999 217 0.84689 +1999 218 0.43758 +1999 219 0.00226 +1999 220 0.00113 +1999 221 0.69425 +1999 222 1.97420 +1999 223 13.11050 +1999 224 5.47597 +1999 225 0.77453 +1999 226 9.98181 +1999 227 26.83150 +1999 228 9.38480 +1999 229 6.70052 +1999 230 0.00339 +1999 231 0.73948 +1999 232 14.11110 +1999 233 3.78106 +1999 234 0.67390 +1999 235 0.16847 +1999 236 0.15604 +1999 237 0.14360 +1999 238 0.14134 +1999 239 0.00226 +1999 240 0.03505 +1999 241 0.01922 +1999 242 5.58113 +1999 243 5.24825 +1999 244 1.07498 +1999 245 2.05718 +1999 246 2.48570 +1999 247 0.94245 +1999 248 2.41649 +1999 249 17.81810 +1999 250 10.76160 +1999 251 0.08688 +1999 252 0.07510 +1999 253 0.00147 +1999 254 1.35477 +1999 255 41.06560 +1999 256 74.37670 +1999 257 10.41700 +1999 258 16.23810 +1999 259 5.58105 +1999 260 0.47564 +1999 261 6.87250 +1999 262 7.84440 +1999 263 4.23954 +1999 264 1.22224 +1999 265 0.01473 +1999 266 0.11486 +1999 267 0.11486 +1999 268 0.96159 +1999 269 2.48423 +1999 270 0.83348 +1999 271 0.00147 +1999 272 0.00147 +1999 273 0.00174 +1999 274 0.05397 +1999 275 0.00696 +1999 276 0.00348 +1999 277 0.00871 +1999 278 0.29424 +1999 279 6.93990 +1999 280 31.52030 +1999 281 27.89540 +1999 282 5.47566 +1999 283 0.10098 +1999 284 0.30817 +1999 285 0.79915 +1999 286 0.28553 +1999 287 0.59893 +1999 288 0.11839 +1999 289 0.00000 +1999 290 1.03942 +1999 291 1.57567 +1999 292 1.19960 +1999 293 9.27990 +1999 294 6.64218 +1999 295 0.00000 +1999 296 1.17522 +1999 297 1.22049 +1999 298 0.91754 +1999 299 3.52915 +1999 300 8.17432 +1999 301 2.48973 +1999 302 1.39111 +1999 303 0.60415 +1999 304 0.86904 +1999 305 0.50118 +1999 306 2.63676 +1999 307 30.38200 +1999 308 86.76370 +1999 309 64.10680 +1999 310 26.62680 +1999 311 12.56900 +1999 312 17.72160 +1999 313 32.79650 +1999 314 66.30410 +1999 315 17.05500 +1999 316 5.46856 +1999 317 1.03940 +1999 318 0.61228 +1999 319 0.69129 +1999 320 3.05153 +1999 321 23.63950 +1999 322 17.67220 +1999 323 1.77018 +1999 324 7.81399 +1999 325 6.06850 +1999 326 0.07160 +1999 327 0.12591 +1999 328 6.30798 +1999 329 8.23617 +1999 330 6.60177 +1999 331 43.03990 +1999 332 18.97820 +1999 333 3.55271 +1999 334 0.00809 +1999 335 0.95837 +1999 336 0.50168 +1999 337 0.10011 +1999 338 0.05849 +1999 339 0.04837 +1999 340 1.31607 +1999 341 0.95837 +1999 342 3.03034 +1999 343 3.89423 +1999 344 0.73903 +1999 345 9.65795 +1999 346 23.32820 +1999 347 8.82106 +1999 348 5.42627 +1999 349 0.11361 +1999 350 0.32171 +1999 351 1.34082 +1999 352 10.69840 +1999 353 9.80868 +1999 354 18.03130 +1999 355 13.45430 +1999 356 3.45779 +1999 357 3.58602 +1999 358 12.52180 +1999 359 14.08420 +1999 360 0.79414 +1999 361 0.24409 +1999 362 1.48818 +1999 363 2.68951 +1999 364 7.75471 +1999 365 18.27690 +2000 1 14.65310 +2000 2 5.52553 +2000 3 6.61957 +2000 4 6.43789 +2000 5 0.70896 +2000 6 0.71093 +2000 7 3.98517 +2000 8 6.13772 +2000 9 4.92321 +2000 10 1.14342 +2000 11 0.10269 +2000 12 0.10862 +2000 13 0.02370 +2000 14 0.71686 +2000 15 1.92939 +2000 16 2.94445 +2000 17 0.82152 +2000 18 2.83386 +2000 19 6.58600 +2000 20 2.92667 +2000 21 0.37521 +2000 22 0.29622 +2000 23 3.83114 +2000 24 17.99250 +2000 25 13.06340 +2000 26 2.04986 +2000 27 2.28091 +2000 28 2.62650 +2000 29 30.02510 +2000 30 9.26582 +2000 31 1.14058 +2000 32 0.10141 +2000 33 0.05623 +2000 34 0.04518 +2000 35 0.16165 +2000 36 0.22189 +2000 37 0.11346 +2000 38 0.00402 +2000 39 0.34036 +2000 40 0.25904 +2000 41 6.85048 +2000 42 4.49302 +2000 43 2.45485 +2000 44 2.82634 +2000 45 1.09941 +2000 46 9.70493 +2000 47 2.98196 +2000 48 0.30121 +2000 49 0.87652 +2000 50 0.82531 +2000 51 0.24298 +2000 52 0.10241 +2000 53 0.09337 +2000 54 0.00100 +2000 55 0.00502 +2000 56 0.07329 +2000 57 1.67271 +2000 58 0.01807 +2000 59 0.04418 +2000 60 2.10305 +2000 61 46.77560 +2000 62 6.48419 +2000 63 0.00182 +2000 64 0.73506 +2000 65 1.56679 +2000 66 1.39716 +2000 67 2.91652 +2000 68 1.61968 +2000 69 0.38850 +2000 70 0.35750 +2000 71 2.77243 +2000 72 4.78791 +2000 73 8.73314 +2000 74 5.82574 +2000 75 0.08390 +2000 76 0.06931 +2000 77 0.00182 +2000 78 0.00547 +2000 79 0.00000 +2000 80 0.29001 +2000 81 10.82710 +2000 82 3.42541 +2000 83 0.01459 +2000 84 0.06019 +2000 85 0.00365 +2000 86 0.00365 +2000 87 0.87186 +2000 88 2.55720 +2000 89 9.46273 +2000 90 4.14405 +2000 91 0.29667 +2000 92 0.07465 +2000 93 0.39237 +2000 94 1.00677 +2000 95 8.21874 +2000 96 12.58080 +2000 97 11.57400 +2000 98 17.72750 +2000 99 16.25370 +2000 100 26.56830 +2000 101 5.24438 +2000 102 6.89042 +2000 103 0.69670 +2000 104 0.00383 +2000 105 0.00383 +2000 106 0.19714 +2000 107 0.58569 +2000 108 2.61836 +2000 109 36.19390 +2000 110 45.21840 +2000 111 13.03250 +2000 112 10.38730 +2000 113 6.75836 +2000 114 7.94887 +2000 115 5.98127 +2000 116 1.61925 +2000 117 0.00000 +2000 118 0.02297 +2000 119 0.00000 +2000 120 0.01531 +2000 121 0.00893 +2000 122 0.00298 +2000 123 0.00298 +2000 124 0.10116 +2000 125 0.15471 +2000 126 0.09223 +2000 127 10.30450 +2000 128 11.60470 +2000 129 0.09521 +2000 130 0.03273 +2000 131 1.07404 +2000 132 39.15180 +2000 133 9.81659 +2000 134 13.84200 +2000 135 0.23950 +2000 136 1.65122 +2000 137 0.48495 +2000 138 0.04612 +2000 139 0.18297 +2000 140 0.36892 +2000 141 2.87402 +2000 142 2.48576 +2000 143 0.05802 +2000 144 0.57867 +2000 145 0.44181 +2000 146 0.04760 +2000 147 0.00298 +2000 148 0.00149 +2000 149 0.20975 +2000 150 21.81840 +2000 151 42.94370 +2000 152 35.17970 +2000 153 20.93750 +2000 154 23.28520 +2000 155 14.09740 +2000 156 2.57544 +2000 157 0.93442 +2000 158 6.39420 +2000 159 1.40935 +2000 160 0.00193 +2000 161 1.26069 +2000 162 3.99831 +2000 163 2.56772 +2000 164 0.09846 +2000 165 0.00193 +2000 166 0.00000 +2000 167 0.00000 +2000 168 0.03089 +2000 169 0.22009 +2000 170 0.15638 +2000 171 0.00000 +2000 172 0.01351 +2000 173 0.00386 +2000 174 0.17955 +2000 175 0.97110 +2000 176 2.06383 +2000 177 2.58703 +2000 178 1.55994 +2000 179 7.67034 +2000 180 32.09260 +2000 181 2.08893 +2000 182 1.07540 +2000 183 7.21995 +2000 184 12.33250 +2000 185 1.68281 +2000 186 0.09066 +2000 187 0.33833 +2000 188 0.17912 +2000 189 0.09951 +2000 190 0.11941 +2000 191 0.05971 +2000 192 0.00221 +2000 193 0.00000 +2000 194 0.02654 +2000 195 0.31401 +2000 196 0.99730 +2000 197 1.01499 +2000 198 0.16143 +2000 199 1.64080 +2000 200 34.77740 +2000 201 37.41550 +2000 202 35.16440 +2000 203 8.26811 +2000 204 3.52926 +2000 205 0.08403 +2000 206 0.30295 +2000 207 2.69781 +2000 208 4.00469 +2000 209 29.38840 +2000 210 5.50397 +2000 211 0.00000 +2000 212 0.06192 +2000 213 0.38186 +2000 214 0.36457 +2000 215 1.80873 +2000 216 33.15110 +2000 217 9.49935 +2000 218 0.14614 +2000 219 0.00157 +2000 220 0.03614 +2000 221 0.05500 +2000 222 7.18148 +2000 223 14.77780 +2000 224 5.20932 +2000 225 0.03300 +2000 226 0.00314 +2000 227 0.00314 +2000 228 0.00314 +2000 229 0.50129 +2000 230 40.72070 +2000 231 7.04634 +2000 232 0.66472 +2000 233 0.20900 +2000 234 1.40330 +2000 235 2.15130 +2000 236 0.15243 +2000 237 0.34414 +2000 238 46.31820 +2000 239 32.19880 +2000 240 0.68672 +2000 241 0.32215 +2000 242 12.86070 +2000 243 15.70500 +2000 244 4.81346 +2000 245 0.34221 +2000 246 0.70821 +2000 247 0.83902 +2000 248 2.43382 +2000 249 1.43756 +2000 250 19.08600 +2000 251 22.32190 +2000 252 24.82570 +2000 253 16.85700 +2000 254 0.93547 +2000 255 0.54966 +2000 256 6.79936 +2000 257 7.27106 +2000 258 0.35014 +2000 259 0.00000 +2000 260 0.00132 +2000 261 0.00132 +2000 262 0.23255 +2000 263 2.08896 +2000 264 1.32393 +2000 265 0.44263 +2000 266 0.09249 +2000 267 0.24576 +2000 268 21.28600 +2000 269 21.30710 +2000 270 0.46113 +2000 271 0.00661 +2000 272 4.01540 +2000 273 16.52270 +2000 274 12.33390 +2000 275 32.41990 +2000 276 26.13920 +2000 277 9.51644 +2000 278 5.41150 +2000 279 0.06131 +2000 280 0.96731 +2000 281 2.97551 +2000 282 5.60905 +2000 283 2.67033 +2000 284 18.94710 +2000 285 18.30940 +2000 286 2.59267 +2000 287 0.00681 +2000 288 1.70574 +2000 289 2.23708 +2000 290 0.05313 +2000 291 0.01090 +2000 292 0.00272 +2000 293 0.00000 +2000 294 0.00000 +2000 295 0.01499 +2000 296 0.02044 +2000 297 0.00136 +2000 298 1.37331 +2000 299 0.84606 +2000 300 1.97686 +2000 301 0.94551 +2000 302 5.53684 +2000 303 15.99200 +2000 304 3.76025 +2000 305 0.73158 +2000 306 0.98464 +2000 307 0.03566 +2000 308 19.44780 +2000 309 45.56020 +2000 310 11.73740 +2000 311 3.28404 +2000 312 10.44680 +2000 313 0.63725 +2000 314 0.00115 +2000 315 0.01955 +2000 316 0.11158 +2000 317 0.40260 +2000 318 0.61885 +2000 319 0.77299 +2000 320 0.48657 +2000 321 0.11963 +2000 322 0.11733 +2000 323 1.27106 +2000 324 0.24616 +2000 325 4.08234 +2000 326 17.13570 +2000 327 4.64597 +2000 328 0.00000 +2000 329 2.01874 +2000 330 3.93740 +2000 331 0.58779 +2000 332 12.45290 +2000 333 25.58560 +2000 334 9.83028 +2000 335 0.30117 +2000 336 0.00000 +2000 337 2.36537 +2000 338 24.96140 +2000 339 3.18138 +2000 340 2.51373 +2000 341 6.33732 +2000 342 4.57813 +2000 343 12.38220 +2000 344 4.64172 +2000 345 27.65320 +2000 346 36.27320 +2000 347 11.36270 +2000 348 0.52988 +2000 349 1.24415 +2000 350 1.23143 +2000 351 1.30985 +2000 352 0.91775 +2000 353 0.27130 +2000 354 3.09024 +2000 355 1.59387 +2000 356 0.02543 +2000 357 0.00212 +2000 358 3.32127 +2000 359 4.78161 +2000 360 3.28947 +2000 361 2.71509 +2000 362 3.03089 +2000 363 22.29300 +2000 364 20.45540 +2000 365 12.25710 +2000 366 7.15229 +2001 1 2.83170 +2001 2 1.81870 +2001 3 0.05654 +2001 4 0.04240 +2001 5 0.01413 +2001 6 4.60800 +2001 7 5.35715 +2001 8 2.14616 +2001 9 5.77178 +2001 10 17.69930 +2001 11 17.30360 +2001 12 1.13315 +2001 13 0.19789 +2001 14 0.05183 +2001 15 2.33934 +2001 16 0.51357 +2001 17 0.66905 +2001 18 2.56078 +2001 19 0.66199 +2001 20 0.00236 +2001 21 0.09659 +2001 22 0.00000 +2001 23 0.10130 +2001 24 1.09075 +2001 25 5.22758 +2001 26 2.85762 +2001 27 0.00471 +2001 28 4.08500 +2001 29 3.10969 +2001 30 3.62562 +2001 31 5.84798 +2001 32 1.25850 +2001 33 3.46934 +2001 34 0.41091 +2001 35 0.01289 +2001 36 1.51471 +2001 37 3.30498 +2001 38 12.95890 +2001 39 5.64472 +2001 40 0.16114 +2001 41 17.77210 +2001 42 61.25730 +2001 43 10.28230 +2001 44 7.12399 +2001 45 4.68433 +2001 46 5.39174 +2001 47 87.68100 +2001 48 59.02710 +2001 49 1.84666 +2001 50 7.50267 +2001 51 0.45280 +2001 52 0.55915 +2001 53 46.94810 +2001 54 6.12976 +2001 55 0.44313 +2001 56 5.65278 +2001 57 6.39241 +2001 58 1.11992 +2001 59 1.83874 +2001 60 4.65344 +2001 61 12.67850 +2001 62 20.49320 +2001 63 10.39950 +2001 64 0.10962 +2001 65 0.07426 +2001 66 2.75281 +2001 67 32.93120 +2001 68 4.54382 +2001 69 0.04243 +2001 70 0.13437 +2001 71 0.47737 +2001 72 2.44341 +2001 73 1.18104 +2001 74 0.96888 +2001 75 2.17644 +2001 76 1.12446 +2001 77 0.40664 +2001 78 0.09547 +2001 79 0.00177 +2001 80 0.15559 +2001 81 0.29526 +2001 82 0.36598 +2001 83 0.37836 +2001 84 0.32001 +2001 85 0.73019 +2001 86 8.53602 +2001 87 8.02682 +2001 88 0.36068 +2001 89 0.00177 +2001 90 0.38626 +2001 91 45.31200 +2001 92 60.90490 +2001 93 0.79777 +2001 94 0.13042 +2001 95 0.06267 +2001 96 0.00678 +2001 97 0.00508 +2001 98 0.00169 +2001 99 0.17446 +2001 100 0.69445 +2001 101 16.48890 +2001 102 89.41120 +2001 103 2.98613 +2001 104 0.00169 +2001 105 0.00000 +2001 106 0.18970 +2001 107 0.15583 +2001 108 1.21105 +2001 109 1.98172 +2001 110 1.15685 +2001 111 2.22901 +2001 112 0.24560 +2001 113 0.00339 +2001 114 0.00169 +2001 115 0.00169 +2001 116 0.00000 +2001 117 0.42345 +2001 118 2.56946 +2001 119 5.67246 +2001 120 3.87313 +2001 121 34.00700 +2001 122 42.35580 +2001 123 13.66370 +2001 124 46.41110 +2001 125 11.71590 +2001 126 0.60889 +2001 127 0.21011 +2001 128 0.01501 +2001 129 23.51320 +2001 130 31.73550 +2001 131 12.92290 +2001 132 4.24726 +2001 133 1.07843 +2001 134 0.08469 +2001 135 0.08576 +2001 136 0.00858 +2001 137 3.57297 +2001 138 10.58600 +2001 139 6.82649 +2001 140 2.68321 +2001 141 2.98230 +2001 142 1.09129 +2001 143 3.64051 +2001 144 7.59940 +2001 145 3.31676 +2001 146 0.42237 +2001 147 0.25406 +2001 148 1.48257 +2001 149 21.19990 +2001 150 5.87241 +2001 151 0.39162 +2001 152 0.00320 +2001 153 0.00160 +2001 154 0.00160 +2001 155 0.00160 +2001 156 0.00160 +2001 157 0.07669 +2001 158 1.78940 +2001 159 0.24604 +2001 160 18.21670 +2001 161 13.01790 +2001 162 0.00160 +2001 163 0.00160 +2001 164 0.49848 +2001 165 2.16166 +2001 166 10.99040 +2001 167 13.85990 +2001 168 6.98026 +2001 169 0.07190 +2001 170 0.00320 +2001 171 0.00160 +2001 172 0.96660 +2001 173 2.45244 +2001 174 2.85985 +2001 175 2.03704 +2001 176 0.05752 +2001 177 0.00160 +2001 178 4.65564 +2001 179 2.42688 +2001 180 0.04314 +2001 181 0.00119 +2001 182 0.00119 +2001 183 0.00000 +2001 184 0.00597 +2001 185 0.00239 +2001 186 0.00239 +2001 187 0.00119 +2001 188 0.00478 +2001 189 0.00358 +2001 190 0.00239 +2001 191 0.00000 +2001 192 0.00239 +2001 193 0.00239 +2001 194 0.34752 +2001 195 4.72918 +2001 196 26.90980 +2001 197 9.49061 +2001 198 5.82788 +2001 199 8.45640 +2001 200 2.42430 +2001 201 0.37499 +2001 202 2.77541 +2001 203 0.10390 +2001 204 0.09315 +2001 205 0.04538 +2001 206 0.04777 +2001 207 0.06449 +2001 208 0.01433 +2001 209 5.05760 +2001 210 13.00530 +2001 211 0.38455 +2001 212 0.03660 +2001 213 0.01574 +2001 214 0.03836 +2001 215 0.00000 +2001 216 0.74259 +2001 217 0.63538 +2001 218 1.39371 +2001 219 10.00380 +2001 220 8.82549 +2001 221 11.07000 +2001 222 2.34284 +2001 223 1.24519 +2001 224 0.01672 +2001 225 1.35731 +2001 226 4.24356 +2001 227 2.67922 +2001 228 0.08754 +2001 229 6.55543 +2001 230 12.11650 +2001 231 8.06323 +2001 232 7.55965 +2001 233 13.70490 +2001 234 13.15320 +2001 235 19.69780 +2001 236 10.95980 +2001 237 7.16917 +2001 238 3.38640 +2001 239 0.21245 +2001 240 1.30420 +2001 241 6.50330 +2001 242 13.17280 +2001 243 14.98190 +2001 244 12.85530 +2001 245 0.17834 +2001 246 5.30963 +2001 247 49.44700 +2001 248 5.97559 +2001 249 16.99100 +2001 250 3.66391 +2001 251 0.06321 +2001 252 0.04854 +2001 253 0.14899 +2001 254 0.14674 +2001 255 1.46737 +2001 256 2.02610 +2001 257 12.40950 +2001 258 20.75430 +2001 259 6.20585 +2001 260 0.00226 +2001 261 0.00113 +2001 262 0.00564 +2001 263 0.14448 +2001 264 0.27316 +2001 265 0.09594 +2001 266 0.08240 +2001 267 0.00790 +2001 268 0.16818 +2001 269 0.18850 +2001 270 0.26074 +2001 271 0.04854 +2001 272 0.02370 +2001 273 0.07129 +2001 274 0.20136 +2001 275 0.33017 +2001 276 3.25171 +2001 277 10.37300 +2001 278 34.17920 +2001 279 30.83870 +2001 280 3.13415 +2001 281 30.42220 +2001 282 23.65240 +2001 283 4.41357 +2001 284 2.97782 +2001 285 3.52685 +2001 286 1.45577 +2001 287 0.90047 +2001 288 8.37315 +2001 289 1.14060 +2001 290 2.35749 +2001 291 2.14113 +2001 292 28.05470 +2001 293 6.45339 +2001 294 6.76856 +2001 295 9.14231 +2001 296 0.85545 +2001 297 0.85795 +2001 298 2.18490 +2001 299 4.50237 +2001 300 25.45710 +2001 301 21.95030 +2001 302 2.83024 +2001 303 8.69082 +2001 304 22.08420 +2001 305 12.05170 +2001 306 17.45760 +2001 307 17.13270 +2001 308 8.29626 +2001 309 3.05180 +2001 310 19.13600 +2001 311 27.44420 +2001 312 9.61984 +2001 313 1.31959 +2001 314 0.79733 +2001 315 0.01993 +2001 316 6.72551 +2001 317 19.36530 +2001 318 5.13483 +2001 319 0.76743 +2001 320 0.53222 +2001 321 1.95746 +2001 322 0.36677 +2001 323 0.00399 +2001 324 4.41723 +2001 325 45.27860 +2001 326 34.45880 +2001 327 16.58650 +2001 328 0.88305 +2001 329 0.59999 +2001 330 0.33089 +2001 331 1.44517 +2001 332 2.46376 +2001 333 6.05974 +2001 334 23.72260 +2001 335 13.71140 +2001 336 5.54534 +2001 337 4.89365 +2001 338 4.17999 +2001 339 2.45682 +2001 340 21.28380 +2001 341 27.79860 +2001 342 33.27000 +2001 343 18.17530 +2001 344 11.23860 +2001 345 13.53150 +2001 346 13.02770 +2001 347 0.09395 +2001 348 11.11670 +2001 349 15.79440 +2001 350 7.42443 +2001 351 46.35370 +2001 352 58.46790 +2001 353 11.72240 +2001 354 6.37694 +2001 355 2.28490 +2001 356 1.21142 +2001 357 14.42110 +2001 358 3.28242 +2001 359 0.36383 +2001 360 6.66080 +2001 361 29.14200 +2001 362 12.02620 +2001 363 2.17695 +2001 364 0.20990 +2001 365 0.00000 +2002 1 0.00000 +2002 2 0.01120 +2002 3 3.06244 +2002 4 0.55706 +2002 5 12.61930 +2002 6 12.68640 +2002 7 1.24289 +2002 8 2.71812 +2002 9 8.07039 +2002 10 14.55360 +2002 11 23.98720 +2002 12 10.85290 +2002 13 8.08999 +2002 14 17.78960 +2002 15 7.58331 +2002 16 0.92657 +2002 17 7.16062 +2002 18 30.76710 +2002 19 11.49110 +2002 20 10.57580 +2002 21 0.00280 +2002 22 1.28488 +2002 23 0.98815 +2002 24 0.12597 +2002 25 0.55706 +2002 26 0.47588 +2002 27 11.44360 +2002 28 11.72070 +2002 29 0.36951 +2002 30 0.82580 +2002 31 0.82531 +2002 32 0.01510 +2002 33 0.24040 +2002 34 0.25551 +2002 35 7.62618 +2002 36 7.26117 +2002 37 0.00629 +2002 38 2.10573 +2002 39 0.24796 +2002 40 1.46633 +2002 41 10.14350 +2002 42 15.15670 +2002 43 9.14160 +2002 44 1.17181 +2002 45 0.02014 +2002 46 0.06545 +2002 47 0.15985 +2002 48 0.10950 +2002 49 0.00503 +2002 50 3.66394 +2002 51 4.38389 +2002 52 1.25865 +2002 53 12.09440 +2002 54 6.10573 +2002 55 0.21271 +2002 56 0.00378 +2002 57 0.09692 +2002 58 0.20264 +2002 59 3.60417 +2002 60 34.22550 +2002 61 9.10495 +2002 62 0.12952 +2002 63 0.11761 +2002 64 0.10719 +2002 65 0.07890 +2002 66 2.13928 +2002 67 0.53296 +2002 68 1.84302 +2002 69 1.20288 +2002 70 0.80837 +2002 71 0.07444 +2002 72 5.05566 +2002 73 6.29576 +2002 74 1.00935 +2002 75 5.50823 +2002 76 8.33380 +2002 77 0.53147 +2002 78 0.00149 +2002 79 0.03126 +2002 80 0.26797 +2002 81 0.47788 +2002 82 0.29476 +2002 83 0.25606 +2002 84 0.21140 +2002 85 0.01489 +2002 86 0.39897 +2002 87 0.23522 +2002 88 1.99785 +2002 89 12.15380 +2002 90 3.59001 +2002 91 1.67166 +2002 92 0.23091 +2002 93 0.00000 +2002 94 0.41643 +2002 95 18.26980 +2002 96 9.89375 +2002 97 1.51179 +2002 98 0.99076 +2002 99 0.27236 +2002 100 0.24670 +2002 101 0.06908 +2002 102 0.24078 +2002 103 0.33157 +2002 104 0.11052 +2002 105 0.13815 +2002 106 0.15986 +2002 107 0.03553 +2002 108 0.01184 +2002 109 0.00197 +2002 110 0.01974 +2002 111 0.00395 +2002 112 0.00592 +2002 113 6.48334 +2002 114 11.14110 +2002 115 28.69840 +2002 116 51.99900 +2002 117 4.54919 +2002 118 8.58327 +2002 119 1.89073 +2002 120 0.22970 +2002 121 0.21279 +2002 122 0.19490 +2002 123 0.28737 +2002 124 0.19490 +2002 125 0.20683 +2002 126 0.35002 +2002 127 0.45940 +2002 128 0.00099 +2002 129 0.01790 +2002 130 0.13424 +2002 131 0.01492 +2002 132 0.00895 +2002 133 0.00099 +2002 134 0.01293 +2002 135 0.27544 +2002 136 0.17103 +2002 137 0.01293 +2002 138 2.17964 +2002 139 5.08120 +2002 140 9.18692 +2002 141 23.13390 +2002 142 18.51800 +2002 143 10.74110 +2002 144 0.72589 +2002 145 1.11070 +2002 146 6.15908 +2002 147 18.82830 +2002 148 6.31222 +2002 149 0.31820 +2002 150 0.28041 +2002 151 1.95960 +2002 152 3.17440 +2002 153 1.48209 +2002 154 0.31534 +2002 155 0.34387 +2002 156 0.36639 +2002 157 0.01201 +2002 158 0.33486 +2002 159 0.98806 +2002 160 17.22790 +2002 161 5.05441 +2002 162 0.97454 +2002 163 2.09925 +2002 164 10.84160 +2002 165 15.83140 +2002 166 2.35752 +2002 167 0.81087 +2002 168 9.86105 +2002 169 11.69600 +2002 170 23.33800 +2002 171 63.18010 +2002 172 1.38748 +2002 173 0.72528 +2002 174 0.30633 +2002 175 0.05406 +2002 176 0.05406 +2002 177 0.16818 +2002 178 7.41043 +2002 179 24.76750 +2002 180 16.87200 +2002 181 15.23380 +2002 182 0.55949 +2002 183 1.53977 +2002 184 6.05760 +2002 185 16.45900 +2002 186 7.13563 +2002 187 14.86890 +2002 188 5.51300 +2002 189 0.40216 +2002 190 0.35003 +2002 191 2.69506 +2002 192 29.65220 +2002 193 20.36050 +2002 194 0.00093 +2002 195 0.09589 +2002 196 0.75499 +2002 197 5.30541 +2002 198 5.30634 +2002 199 0.00279 +2002 200 0.01862 +2002 201 0.04655 +2002 202 4.61093 +2002 203 44.18220 +2002 204 0.72892 +2002 205 2.16908 +2002 206 0.75127 +2002 207 0.18339 +2002 208 0.01490 +2002 209 0.95886 +2002 210 1.11805 +2002 211 0.03724 +2002 212 0.07413 +2002 213 0.00273 +2002 214 0.40174 +2002 215 9.44641 +2002 216 9.27150 +2002 217 28.60290 +2002 218 6.13408 +2002 219 8.85882 +2002 220 9.29746 +2002 221 0.74199 +2002 222 0.06969 +2002 223 1.00845 +2002 224 0.76796 +2002 225 10.94540 +2002 226 11.42510 +2002 227 8.66752 +2002 228 4.79494 +2002 229 0.43864 +2002 230 0.20087 +2002 231 0.02733 +2002 232 0.44957 +2002 233 0.24460 +2002 234 0.00410 +2002 235 4.33718 +2002 236 12.68490 +2002 237 2.17269 +2002 238 0.28696 +2002 239 0.04509 +2002 240 0.04783 +2002 241 0.00273 +2002 242 0.16808 +2002 243 0.06707 +2002 244 0.00240 +2002 245 9.51224 +2002 246 8.93015 +2002 247 2.67090 +2002 248 2.69725 +2002 249 0.00000 +2002 250 1.00129 +2002 251 1.33425 +2002 252 1.92592 +2002 253 19.39580 +2002 254 20.61740 +2002 255 2.52478 +2002 256 0.51502 +2002 257 0.00240 +2002 258 0.00240 +2002 259 0.01198 +2002 260 0.22517 +2002 261 26.74730 +2002 262 27.19530 +2002 263 7.86898 +2002 264 0.43357 +2002 265 1.24323 +2002 266 3.84466 +2002 267 5.45439 +2002 268 0.75216 +2002 269 1.14741 +2002 270 0.03833 +2002 271 12.35320 +2002 272 20.24380 +2002 273 8.14825 +2002 274 0.00220 +2002 275 0.85395 +2002 276 0.58510 +2002 277 0.00551 +2002 278 0.00110 +2002 279 0.00110 +2002 280 0.01653 +2002 281 0.00992 +2002 282 0.00331 +2002 283 0.00000 +2002 284 8.64640 +2002 285 8.15386 +2002 286 4.42843 +2002 287 3.04888 +2002 288 22.90570 +2002 289 21.14050 +2002 290 7.84093 +2002 291 8.87118 +2002 292 0.87048 +2002 293 0.84954 +2002 294 0.41100 +2002 295 0.00220 +2002 296 0.00000 +2002 297 11.63250 +2002 298 9.72073 +2002 299 9.38576 +2002 300 14.03570 +2002 301 3.36512 +2002 302 3.28358 +2002 303 2.24121 +2002 304 5.42045 +2002 305 10.88990 +2002 306 4.05059 +2002 307 0.03647 +2002 308 10.84190 +2002 309 12.87730 +2002 310 6.60705 +2002 311 3.61396 +2002 312 0.30708 +2002 313 4.11969 +2002 314 0.80513 +2002 315 1.72637 +2002 316 1.15347 +2002 317 0.01248 +2002 318 0.00288 +2002 319 1.06999 +2002 320 22.16840 +2002 321 18.65620 +2002 322 7.41122 +2002 323 3.31264 +2002 324 0.00576 +2002 325 0.64583 +2002 326 0.70917 +2002 327 1.44808 +2002 328 2.83762 +2002 329 2.70711 +2002 330 0.36466 +2002 331 0.18425 +2002 332 0.12379 +2002 333 0.18425 +2002 334 2.98780 +2002 335 7.06765 +2002 336 13.00240 +2002 337 8.20689 +2002 338 0.46820 +2002 339 4.44981 +2002 340 39.29690 +2002 341 25.05700 +2002 342 1.16986 +2002 343 0.10078 +2002 344 1.16859 +2002 345 6.97962 +2002 346 27.83810 +2002 347 0.53837 +2002 348 0.26791 +2002 349 0.00255 +2002 350 2.33462 +2002 351 34.59700 +2002 352 31.30430 +2002 353 9.27724 +2002 354 1.20941 +2002 355 0.16712 +2002 356 0.17733 +2002 357 1.03336 +2002 358 0.24494 +2002 359 4.58632 +2002 360 0.05231 +2002 361 0.00383 +2002 362 0.01276 +2002 363 0.01403 +2002 364 0.02169 +2002 365 0.04062 +2003 1 0.00184 +2003 2 0.00184 +2003 3 0.31605 +2003 4 2.09841 +2003 5 12.24690 +2003 6 9.05698 +2003 7 9.43734 +2003 8 51.57280 +2003 9 36.76630 +2003 10 2.57983 +2003 11 1.72908 +2003 12 3.86056 +2003 13 4.84362 +2003 14 0.99041 +2003 15 0.00000 +2003 16 6.71786 +2003 17 6.28605 +2003 18 0.03307 +2003 19 0.30135 +2003 20 0.20212 +2003 21 0.57330 +2003 22 3.41405 +2003 23 0.12862 +2003 24 1.09698 +2003 25 0.75153 +2003 26 0.28665 +2003 27 0.29400 +2003 28 0.03491 +2003 29 0.09922 +2003 30 0.05512 +2003 31 0.00356 +2003 32 0.00344 +2003 33 0.34186 +2003 34 0.26111 +2003 35 0.01031 +2003 36 0.18038 +2003 37 0.02061 +2003 38 0.03608 +2003 39 0.01890 +2003 40 0.61499 +2003 41 0.47928 +2003 42 0.19240 +2003 43 0.21130 +2003 44 0.51192 +2003 45 0.36590 +2003 46 0.00344 +2003 47 0.03092 +2003 48 0.34873 +2003 49 7.37306 +2003 50 2.76919 +2003 51 0.57548 +2003 52 0.15461 +2003 53 0.47241 +2003 54 4.68289 +2003 55 9.80212 +2003 56 23.34230 +2003 57 45.12480 +2003 58 22.70500 +2003 59 11.25260 +2003 60 9.18660 +2003 61 19.59050 +2003 62 2.63550 +2003 63 0.05961 +2003 64 0.03922 +2003 65 0.88791 +2003 66 3.74931 +2003 67 0.93968 +2003 68 2.02682 +2003 69 34.16420 +2003 70 26.35810 +2003 71 0.04706 +2003 72 0.04863 +2003 73 1.18597 +2003 74 1.94682 +2003 75 2.73119 +2003 76 3.01984 +2003 77 0.14589 +2003 78 0.00000 +2003 79 0.00471 +2003 80 0.42356 +2003 81 1.00871 +2003 82 0.26826 +2003 83 0.58671 +2003 84 2.92415 +2003 85 11.74050 +2003 86 34.11870 +2003 87 30.77420 +2003 88 2.35312 +2003 89 5.35257 +2003 90 5.96067 +2003 91 1.77679 +2003 92 0.93604 +2003 93 0.53105 +2003 94 0.61245 +2003 95 33.63580 +2003 96 31.13150 +2003 97 0.18165 +2003 98 0.00199 +2003 99 0.01489 +2003 100 0.21143 +2003 101 0.81593 +2003 102 0.77722 +2003 103 0.34047 +2003 104 0.21838 +2003 105 0.30771 +2003 106 0.26602 +2003 107 1.94355 +2003 108 2.09839 +2003 109 2.20857 +2003 110 21.30260 +2003 111 13.04400 +2003 112 2.31578 +2003 113 0.01787 +2003 114 0.01390 +2003 115 0.00000 +2003 116 0.03176 +2003 117 0.03176 +2003 118 0.00099 +2003 119 0.80700 +2003 120 0.41632 +2003 121 13.18090 +2003 122 19.54350 +2003 123 0.02618 +2003 124 0.88763 +2003 125 0.39799 +2003 126 0.08641 +2003 127 3.06349 +2003 128 3.28344 +2003 129 0.64936 +2003 130 0.95309 +2003 131 7.71372 +2003 132 4.10037 +2003 133 0.00262 +2003 134 0.00000 +2003 135 0.00000 +2003 136 0.00262 +2003 137 0.05237 +2003 138 2.70478 +2003 139 15.93280 +2003 140 22.60960 +2003 141 46.74580 +2003 142 1.28562 +2003 143 6.28147 +2003 144 8.89199 +2003 145 0.07593 +2003 146 0.11521 +2003 147 0.11783 +2003 148 0.01571 +2003 149 0.10212 +2003 150 0.06284 +2003 151 0.00179 +2003 152 0.05549 +2003 153 0.17005 +2003 154 0.59607 +2003 155 5.24289 +2003 156 14.16240 +2003 157 3.38129 +2003 158 0.05191 +2003 159 41.00150 +2003 160 2.53284 +2003 161 0.00000 +2003 162 0.00000 +2003 163 0.00000 +2003 164 0.03938 +2003 165 9.72144 +2003 166 18.88080 +2003 167 4.62713 +2003 168 14.86050 +2003 169 5.44873 +2003 170 0.06086 +2003 171 0.01969 +2003 172 0.02327 +2003 173 4.74706 +2003 174 5.17666 +2003 175 0.22375 +2003 176 0.00000 +2003 177 0.00537 +2003 178 1.61457 +2003 179 26.04970 +2003 180 25.81530 +2003 181 11.73140 +2003 182 0.36785 +2003 183 3.97194 +2003 184 10.19400 +2003 185 1.04359 +2003 186 0.92517 +2003 187 4.59236 +2003 188 4.66153 +2003 189 0.43492 +2003 190 5.84054 +2003 191 6.80261 +2003 192 1.44939 +2003 193 0.00210 +2003 194 0.00000 +2003 195 0.49885 +2003 196 0.28820 +2003 197 2.19767 +2003 198 0.33222 +2003 199 0.00210 +2003 200 0.00210 +2003 201 0.00210 +2003 202 0.00419 +2003 203 0.00105 +2003 204 0.00105 +2003 205 0.00000 +2003 206 0.00105 +2003 207 0.24733 +2003 208 7.91873 +2003 209 7.15683 +2003 210 0.24838 +2003 211 0.78286 +2003 212 2.85186 +2003 213 9.26513 +2003 214 1.46447 +2003 215 0.66097 +2003 216 0.69370 +2003 217 0.07708 +2003 218 0.09714 +2003 219 0.21539 +2003 220 1.87203 +2003 221 1.22479 +2003 222 6.42065 +2003 223 3.99958 +2003 224 0.01901 +2003 225 0.05174 +2003 226 8.34020 +2003 227 7.01721 +2003 228 0.44663 +2003 229 0.14254 +2003 230 0.00106 +2003 231 6.60754 +2003 232 17.93050 +2003 233 8.03400 +2003 234 11.63760 +2003 235 4.33851 +2003 236 0.41495 +2003 237 0.51526 +2003 238 9.05185 +2003 239 8.87974 +2003 240 0.61662 +2003 241 4.33006 +2003 242 5.75969 +2003 243 6.79197 +2003 244 19.20800 +2003 245 2.71605 +2003 246 18.50370 +2003 247 49.11890 +2003 248 3.22845 +2003 249 2.38832 +2003 250 6.25756 +2003 251 4.66658 +2003 252 3.11227 +2003 253 5.88458 +2003 254 2.40788 +2003 255 2.14374 +2003 256 15.55040 +2003 257 6.97785 +2003 258 6.39208 +2003 259 13.41030 +2003 260 9.34049 +2003 261 3.60388 +2003 262 8.82932 +2003 263 14.70780 +2003 264 3.70905 +2003 265 0.00245 +2003 266 0.40723 +2003 267 0.98321 +2003 268 1.91506 +2003 269 2.78698 +2003 270 29.10620 +2003 271 29.47300 +2003 272 12.04060 +2003 273 18.20570 +2003 274 3.60856 +2003 275 26.96100 +2003 276 46.12800 +2003 277 1.90610 +2003 278 0.30546 +2003 279 0.00000 +2003 280 0.08960 +2003 281 9.84955 +2003 282 12.38830 +2003 283 3.49181 +2003 284 45.71390 +2003 285 27.23800 +2003 286 7.11123 +2003 287 0.00679 +2003 288 0.00136 +2003 289 0.00407 +2003 290 0.00815 +2003 291 0.02579 +2003 292 0.02715 +2003 293 0.66116 +2003 294 1.12004 +2003 295 2.42471 +2003 296 1.59385 +2003 297 0.74941 +2003 298 0.00815 +2003 299 0.44259 +2003 300 24.55530 +2003 301 12.81870 +2003 302 10.34510 +2003 303 8.17153 +2003 304 1.12709 +2003 305 22.09730 +2003 306 14.48740 +2003 307 7.32805 +2003 308 0.50798 +2003 309 0.00595 +2003 310 0.31947 +2003 311 3.00226 +2003 312 2.46451 +2003 313 1.71246 +2003 314 0.46234 +2003 315 1.43862 +2003 316 13.71160 +2003 317 14.23940 +2003 318 4.16705 +2003 319 0.29963 +2003 320 0.38297 +2003 321 0.35122 +2003 322 0.00198 +2003 323 0.00595 +2003 324 0.01587 +2003 325 2.62921 +2003 326 6.70101 +2003 327 5.93507 +2003 328 5.60766 +2003 329 50.59190 +2003 330 30.17340 +2003 331 11.78680 +2003 332 1.41481 +2003 333 0.05953 +2003 334 0.02149 +2003 335 0.02071 +2003 336 1.61030 +2003 337 2.31621 +2003 338 0.75596 +2003 339 1.92442 +2003 340 6.39459 +2003 341 0.03797 +2003 342 20.19350 +2003 343 49.43080 +2003 344 12.69080 +2003 345 10.73360 +2003 346 19.92420 +2003 347 13.31900 +2003 348 3.78498 +2003 349 0.12599 +2003 350 0.04487 +2003 351 0.00173 +2003 352 0.00173 +2003 353 0.27097 +2003 354 3.33796 +2003 355 5.47985 +2003 356 6.20129 +2003 357 15.54900 +2003 358 2.10046 +2003 359 0.79048 +2003 360 0.53677 +2003 361 1.86401 +2003 362 33.02060 +2003 363 24.10790 +2003 364 4.72906 +2003 365 0.00855 +2004 1 0.05130 +2004 2 0.08265 +2004 3 0.05415 +2004 4 0.00000 +2004 5 0.00285 +2004 6 5.93094 +2004 7 2.94410 +2004 8 1.70718 +2004 9 0.53866 +2004 10 0.00000 +2004 11 0.00855 +2004 12 8.76389 +2004 13 11.71940 +2004 14 3.97866 +2004 15 0.55861 +2004 16 0.20805 +2004 17 0.00285 +2004 18 9.65310 +2004 19 29.51510 +2004 20 17.30830 +2004 21 2.92700 +2004 22 0.63841 +2004 23 0.00855 +2004 24 0.27645 +2004 25 0.03135 +2004 26 2.27434 +2004 27 11.76210 +2004 28 10.91850 +2004 29 29.25570 +2004 30 41.88710 +2004 31 18.21380 +2004 32 67.57550 +2004 33 26.07710 +2004 34 24.70940 +2004 35 15.96770 +2004 36 7.13661 +2004 37 3.29245 +2004 38 3.10854 +2004 39 4.32982 +2004 40 3.58170 +2004 41 2.10867 +2004 42 9.31313 +2004 43 3.04962 +2004 44 13.68940 +2004 45 1.09629 +2004 46 3.00856 +2004 47 4.40302 +2004 48 0.68206 +2004 49 2.44077 +2004 50 22.45970 +2004 51 4.60479 +2004 52 3.84774 +2004 53 1.53195 +2004 54 10.29160 +2004 55 0.00000 +2004 56 0.34817 +2004 57 5.96176 +2004 58 67.63450 +2004 59 93.69910 +2004 60 0.61468 +2004 61 8.30461 +2004 62 9.77228 +2004 63 0.60813 +2004 64 0.00140 +2004 65 0.00281 +2004 66 0.03652 +2004 67 0.59409 +2004 68 0.94099 +2004 69 0.32022 +2004 70 0.12219 +2004 71 0.15168 +2004 72 0.93818 +2004 73 0.06741 +2004 74 1.27385 +2004 75 1.83985 +2004 76 8.78915 +2004 77 1.88620 +2004 78 0.00421 +2004 79 0.20505 +2004 80 0.20646 +2004 81 0.00702 +2004 82 0.00000 +2004 83 0.00702 +2004 84 0.07865 +2004 85 1.16711 +2004 86 0.78650 +2004 87 1.35391 +2004 88 0.08427 +2004 89 0.00562 +2004 90 0.00140 +2004 91 0.02417 +2004 92 0.63262 +2004 93 0.91410 +2004 94 0.00711 +2004 95 0.19761 +2004 96 0.91410 +2004 97 0.88567 +2004 98 3.06786 +2004 99 6.16700 +2004 100 0.01137 +2004 101 0.00711 +2004 102 0.55443 +2004 103 0.15354 +2004 104 0.01848 +2004 105 0.01422 +2004 106 0.03554 +2004 107 0.01706 +2004 108 0.01564 +2004 109 0.00995 +2004 110 0.00284 +2004 111 0.08103 +2004 112 0.00000 +2004 113 0.13363 +2004 114 0.35114 +2004 115 8.76573 +2004 116 6.23240 +2004 117 3.03659 +2004 118 13.16140 +2004 119 35.88600 +2004 120 20.67470 +2004 121 23.01000 +2004 122 22.04990 +2004 123 10.02680 +2004 124 8.46533 +2004 125 4.22843 +2004 126 6.17393 +2004 127 0.50685 +2004 128 0.52944 +2004 129 0.11718 +2004 130 0.05647 +2004 131 2.15586 +2004 132 34.32720 +2004 133 25.24350 +2004 134 11.59110 +2004 135 8.59098 +2004 136 0.00141 +2004 137 0.00282 +2004 138 0.11012 +2004 139 0.11295 +2004 140 0.09600 +2004 141 0.09036 +2004 142 22.53140 +2004 143 28.48220 +2004 144 1.39348 +2004 145 0.04941 +2004 146 0.33743 +2004 147 0.82451 +2004 148 34.97670 +2004 149 36.15550 +2004 150 5.68826 +2004 151 3.89806 +2004 152 0.22681 +2004 153 0.07144 +2004 154 0.05358 +2004 155 13.55870 +2004 156 31.27320 +2004 157 2.04130 +2004 158 0.01965 +2004 159 0.00000 +2004 160 0.00179 +2004 161 0.00000 +2004 162 1.10191 +2004 163 0.99654 +2004 164 0.00000 +2004 165 0.00357 +2004 166 0.15716 +2004 167 0.73223 +2004 168 11.81380 +2004 169 60.79620 +2004 170 59.34960 +2004 171 16.15180 +2004 172 14.45700 +2004 173 7.18296 +2004 174 1.70376 +2004 175 0.00179 +2004 176 0.27146 +2004 177 0.16073 +2004 178 24.00630 +2004 179 25.33140 +2004 180 6.64718 +2004 181 25.85290 +2004 182 1.76664 +2004 183 2.09075 +2004 184 0.97233 +2004 185 0.97401 +2004 186 3.19071 +2004 187 12.26910 +2004 188 10.94410 +2004 189 3.55680 +2004 190 0.00000 +2004 191 0.00000 +2004 192 0.00000 +2004 193 0.00168 +2004 194 0.00168 +2004 195 0.08732 +2004 196 15.93000 +2004 197 48.57100 +2004 198 117.19500 +2004 199 39.80160 +2004 200 0.05374 +2004 201 0.83630 +2004 202 6.56950 +2004 203 0.86317 +2004 204 1.77672 +2004 205 0.03023 +2004 206 0.03359 +2004 207 0.00840 +2004 208 8.03890 +2004 209 14.98960 +2004 210 18.42890 +2004 211 0.17129 +2004 212 3.95816 +2004 213 2.22992 +2004 214 0.02252 +2004 215 0.00000 +2004 216 5.62662 +2004 217 32.81970 +2004 218 21.50340 +2004 219 7.08020 +2004 220 2.57530 +2004 221 1.54368 +2004 222 3.21950 +2004 223 4.96290 +2004 224 3.23602 +2004 225 5.08453 +2004 226 3.08736 +2004 227 14.42620 +2004 228 12.37950 +2004 229 4.17042 +2004 230 8.54449 +2004 231 1.73439 +2004 232 0.15767 +2004 233 1.24335 +2004 234 2.83959 +2004 235 3.19998 +2004 236 0.08709 +2004 237 2.77952 +2004 238 2.34555 +2004 239 0.74781 +2004 240 1.19830 +2004 241 1.00609 +2004 242 0.42196 +2004 243 0.07808 +2004 244 12.25300 +2004 245 17.08330 +2004 246 4.55720 +2004 247 2.24937 +2004 248 0.38782 +2004 249 0.20122 +2004 250 0.04946 +2004 251 0.13152 +2004 252 0.07082 +2004 253 1.04094 +2004 254 1.24890 +2004 255 0.74642 +2004 256 20.36910 +2004 257 20.93350 +2004 258 3.59945 +2004 259 7.41136 +2004 260 7.24386 +2004 261 3.30268 +2004 262 3.36338 +2004 263 0.05845 +2004 264 0.06970 +2004 265 0.44515 +2004 266 0.73181 +2004 267 8.87384 +2004 268 36.74200 +2004 269 14.67320 +2004 270 0.26080 +2004 271 10.32960 +2004 272 5.97248 +2004 273 0.75878 +2004 274 10.22470 +2004 275 0.58517 +2004 276 0.20461 +2004 277 21.19910 +2004 278 26.71830 +2004 279 0.67008 +2004 280 27.78640 +2004 281 79.26190 +2004 282 41.25340 +2004 283 7.24915 +2004 284 2.49618 +2004 285 0.09310 +2004 286 0.80103 +2004 287 1.06088 +2004 288 0.72328 +2004 289 11.64410 +2004 290 15.38220 +2004 291 17.40780 +2004 292 4.78264 +2004 293 1.79029 +2004 294 0.34885 +2004 295 0.00102 +2004 296 1.66446 +2004 297 23.75050 +2004 298 17.79550 +2004 299 7.67677 +2004 300 1.37494 +2004 301 0.00921 +2004 302 21.05380 +2004 303 19.18270 +2004 304 0.88696 +2004 305 4.94913 +2004 306 3.13362 +2004 307 1.50177 +2004 308 1.01584 +2004 309 0.03826 +2004 310 0.46105 +2004 311 0.38644 +2004 312 3.11640 +2004 313 4.37138 +2004 314 0.91063 +2004 315 1.60125 +2004 316 8.18797 +2004 317 5.78323 +2004 318 20.47950 +2004 319 29.21270 +2004 320 6.95021 +2004 321 3.05327 +2004 322 3.34597 +2004 323 2.69935 +2004 324 0.09374 +2004 325 0.18940 +2004 326 0.48784 +2004 327 6.65751 +2004 328 11.90320 +2004 329 7.68866 +2004 330 13.86980 +2004 331 3.80702 +2004 332 0.37879 +2004 333 2.29761 +2004 334 1.49220 +2004 335 9.88768 +2004 336 3.96097 +2004 337 1.05915 +2004 338 9.40751 +2004 339 35.92600 +2004 340 1.39717 +2004 341 0.00520 +2004 342 1.11982 +2004 343 1.34690 +2004 344 0.91007 +2004 345 0.28082 +2004 346 0.34843 +2004 347 0.28256 +2004 348 0.07801 +2004 349 5.38414 +2004 350 20.19140 +2004 351 7.49723 +2004 352 12.75660 +2004 353 9.25843 +2004 354 4.19325 +2004 355 10.89480 +2004 356 21.25570 +2004 357 24.96360 +2004 358 17.61720 +2004 359 3.85002 +2004 360 0.45937 +2004 361 0.00520 +2004 362 0.22708 +2004 363 10.53770 +2004 364 80.11720 +2004 365 52.42520 +2004 366 10.32910 +2005 1 4.75159 +2005 2 0.06101 +2005 3 0.32144 +2005 4 2.81107 +2005 5 12.29040 +2005 6 6.01352 +2005 7 6.25608 +2005 8 3.24709 +2005 9 18.94380 +2005 10 11.40350 +2005 11 1.38247 +2005 12 0.78275 +2005 13 0.00298 +2005 14 0.00744 +2005 15 0.00149 +2005 16 0.12947 +2005 17 0.05506 +2005 18 1.75152 +2005 19 3.11911 +2005 20 0.85121 +2005 21 0.01488 +2005 22 0.02232 +2005 23 0.60716 +2005 24 0.52531 +2005 25 0.18304 +2005 26 0.03720 +2005 27 0.06845 +2005 28 0.00744 +2005 29 0.00149 +2005 30 0.35120 +2005 31 2.00832 +2005 32 4.29574 +2005 33 6.63494 +2005 34 11.57230 +2005 35 9.18707 +2005 36 1.83281 +2005 37 6.90541 +2005 38 3.21677 +2005 39 1.29476 +2005 40 1.43287 +2005 41 2.36798 +2005 42 18.52660 +2005 43 0.14386 +2005 44 6.28392 +2005 45 3.17361 +2005 46 0.00288 +2005 47 0.00000 +2005 48 0.01151 +2005 49 0.02877 +2005 50 0.02590 +2005 51 0.01439 +2005 52 0.85167 +2005 53 6.26666 +2005 54 5.18481 +2005 55 0.27622 +2005 56 0.25032 +2005 57 0.36253 +2005 58 1.74074 +2005 59 0.00000 +2005 60 0.01280 +2005 61 0.00256 +2005 62 0.21241 +2005 63 0.01280 +2005 64 0.42483 +2005 65 2.30329 +2005 66 0.02303 +2005 67 0.02303 +2005 68 0.89317 +2005 69 1.05184 +2005 70 0.01536 +2005 71 0.02047 +2005 72 0.02559 +2005 73 0.35061 +2005 74 5.57141 +2005 75 25.77130 +2005 76 38.03760 +2005 77 9.53307 +2005 78 0.83430 +2005 79 3.68783 +2005 80 14.68990 +2005 81 10.54910 +2005 82 19.78780 +2005 83 48.05180 +2005 84 4.68848 +2005 85 6.44666 +2005 86 3.82858 +2005 87 3.38328 +2005 88 20.45580 +2005 89 7.60598 +2005 90 3.64816 +2005 91 1.37471 +2005 92 0.45960 +2005 93 0.24055 +2005 94 0.13614 +2005 95 0.52614 +2005 96 0.25590 +2005 97 0.82606 +2005 98 6.29318 +2005 99 6.12940 +2005 100 2.12298 +2005 101 8.50623 +2005 102 0.91409 +2005 103 0.00102 +2005 104 0.00000 +2005 105 0.09110 +2005 106 0.11260 +2005 107 0.00102 +2005 108 0.00102 +2005 109 0.00205 +2005 110 1.81487 +2005 111 0.09929 +2005 112 0.06142 +2005 113 0.18323 +2005 114 0.37567 +2005 115 0.62441 +2005 116 0.66740 +2005 117 0.08087 +2005 118 0.08189 +2005 119 0.32039 +2005 120 1.00375 +2005 121 5.39770 +2005 122 52.93810 +2005 123 46.80910 +2005 124 0.27994 +2005 125 0.00106 +2005 126 0.00532 +2005 127 0.70146 +2005 128 0.41087 +2005 129 0.08090 +2005 130 0.08941 +2005 131 0.02448 +2005 132 0.01810 +2005 133 0.00106 +2005 134 3.91602 +2005 135 24.58080 +2005 136 20.75630 +2005 137 17.36080 +2005 138 8.08324 +2005 139 6.00974 +2005 140 4.37904 +2005 141 20.68180 +2005 142 15.61620 +2005 143 0.06280 +2005 144 0.00426 +2005 145 0.22566 +2005 146 16.58270 +2005 147 10.18760 +2005 148 10.04920 +2005 149 8.56755 +2005 150 0.42470 +2005 151 6.10204 +2005 152 2.47772 +2005 153 3.88748 +2005 154 1.09854 +2005 155 0.55036 +2005 156 0.02512 +2005 157 0.00546 +2005 158 0.00000 +2005 159 0.00000 +2005 160 0.18891 +2005 161 0.15179 +2005 162 0.45317 +2005 163 0.78623 +2005 164 0.00546 +2005 165 0.00764 +2005 166 0.00328 +2005 167 1.00463 +2005 168 28.37860 +2005 169 25.00440 +2005 170 0.00109 +2005 171 32.64500 +2005 172 40.20490 +2005 173 0.48594 +2005 174 17.57770 +2005 175 21.59630 +2005 176 1.09527 +2005 177 0.00000 +2005 178 0.06334 +2005 179 0.14305 +2005 180 0.43461 +2005 181 0.00293 +2005 182 0.00147 +2005 183 0.01172 +2005 184 1.10487 +2005 185 2.72847 +2005 186 4.59971 +2005 187 6.38742 +2005 188 10.62810 +2005 189 5.95661 +2005 190 0.20954 +2005 191 15.39930 +2005 192 22.26590 +2005 193 0.04103 +2005 194 1.37449 +2005 195 17.75260 +2005 196 7.76192 +2005 197 24.36720 +2005 198 10.32040 +2005 199 8.88290 +2005 200 4.79167 +2005 201 0.76637 +2005 202 0.13774 +2005 203 0.03077 +2005 204 0.25644 +2005 205 0.72681 +2005 206 1.17667 +2005 207 2.50720 +2005 208 5.62984 +2005 209 2.75191 +2005 210 0.00147 +2005 211 3.02300 +2005 212 5.64055 +2005 213 9.29054 +2005 214 0.08531 +2005 215 0.00092 +2005 216 0.00092 +2005 217 0.03211 +2005 218 14.29910 +2005 219 15.43930 +2005 220 3.55642 +2005 221 1.60254 +2005 222 0.02202 +2005 223 4.15543 +2005 224 0.19355 +2005 225 0.28070 +2005 226 0.15503 +2005 227 0.00367 +2005 228 0.39077 +2005 229 1.64933 +2005 230 1.06500 +2005 231 0.00459 +2005 232 0.01376 +2005 233 1.38239 +2005 234 4.84983 +2005 235 33.61860 +2005 236 5.45709 +2005 237 1.63465 +2005 238 0.23667 +2005 239 0.05779 +2005 240 0.00459 +2005 241 0.00092 +2005 242 0.00000 +2005 243 0.00438 +2005 244 0.00000 +2005 245 0.00000 +2005 246 0.19948 +2005 247 0.24990 +2005 248 0.76065 +2005 249 0.58309 +2005 250 0.15783 +2005 251 1.14426 +2005 252 0.84175 +2005 253 0.76284 +2005 254 0.93382 +2005 255 6.31314 +2005 256 11.01070 +2005 257 11.75820 +2005 258 18.65230 +2005 259 14.71530 +2005 260 50.76160 +2005 261 24.09520 +2005 262 6.49070 +2005 263 0.35073 +2005 264 1.75584 +2005 265 9.89936 +2005 266 0.12276 +2005 267 0.21921 +2005 268 2.04300 +2005 269 2.54499 +2005 270 8.21366 +2005 271 4.03778 +2005 272 0.48225 +2005 273 4.87884 +2005 274 22.17740 +2005 275 26.41750 +2005 276 5.59784 +2005 277 10.56790 +2005 278 13.73970 +2005 279 13.31810 +2005 280 20.98010 +2005 281 8.17808 +2005 282 14.55310 +2005 283 14.19600 +2005 284 7.82723 +2005 285 11.54500 +2005 286 25.47820 +2005 287 8.50375 +2005 288 2.71554 +2005 289 1.56545 +2005 290 1.13750 +2005 291 1.20044 +2005 292 14.91660 +2005 293 59.57970 +2005 294 25.61820 +2005 295 0.98332 +2005 296 0.63877 +2005 297 0.95815 +2005 298 0.99276 +2005 299 0.17464 +2005 300 0.56639 +2005 301 0.42322 +2005 302 1.88483 +2005 303 9.60350 +2005 304 7.24586 +2005 305 0.39599 +2005 306 0.30290 +2005 307 0.52242 +2005 308 0.30290 +2005 309 0.86283 +2005 310 8.23096 +2005 311 1.53809 +2005 312 0.16117 +2005 313 0.00973 +2005 314 0.02223 +2005 315 1.00872 +2005 316 1.46307 +2005 317 5.55770 +2005 318 4.27665 +2005 319 0.28066 +2005 320 2.60517 +2005 321 2.13555 +2005 322 0.06391 +2005 323 0.00556 +2005 324 11.59890 +2005 325 20.53150 +2005 326 6.14265 +2005 327 4.34612 +2005 328 5.10614 +2005 329 17.13020 +2005 330 9.33833 +2005 331 3.37353 +2005 332 0.59467 +2005 333 0.03335 +2005 334 0.92945 +2005 335 0.60121 +2005 336 0.01105 +2005 337 0.10389 +2005 338 10.46380 +2005 339 19.18910 +2005 340 15.18620 +2005 341 2.09541 +2005 342 0.49291 +2005 343 17.96570 +2005 344 39.80830 +2005 345 25.28190 +2005 346 16.02830 +2005 347 7.35271 +2005 348 2.57726 +2005 349 20.27660 +2005 350 46.05470 +2005 351 13.13280 +2005 352 5.25288 +2005 353 21.15520 +2005 354 23.41640 +2005 355 14.92640 +2005 356 5.33908 +2005 357 0.39897 +2005 358 0.82777 +2005 359 2.90992 +2005 360 0.46749 +2005 361 3.05469 +2005 362 3.67470 +2005 363 0.54595 +2005 364 0.26745 +2005 365 0.00000 +2006 1 2.82749 +2006 2 2.77849 +2006 3 5.93675 +2006 4 8.94801 +2006 5 8.29381 +2006 6 0.70075 +2006 7 0.00000 +2006 8 0.00490 +2006 9 1.66366 +2006 10 1.07072 +2006 11 0.46308 +2006 12 2.55307 +2006 13 1.56566 +2006 14 0.16661 +2006 15 0.00000 +2006 16 0.08821 +2006 17 0.01470 +2006 18 10.70970 +2006 19 3.81491 +2006 20 1.70532 +2006 21 1.41865 +2006 22 0.98252 +2006 23 91.32260 +2006 24 106.37400 +2006 25 29.63230 +2006 26 0.30872 +2006 27 0.91391 +2006 28 2.70253 +2006 29 2.69518 +2006 30 1.84008 +2006 31 14.20790 +2006 32 10.68510 +2006 33 1.01151 +2006 34 7.61425 +2006 35 18.41630 +2006 36 1.33094 +2006 37 1.19460 +2006 38 19.93680 +2006 39 21.51180 +2006 40 53.05440 +2006 41 29.95060 +2006 42 2.90858 +2006 43 0.88686 +2006 44 0.44018 +2006 45 0.45706 +2006 46 0.22334 +2006 47 1.23225 +2006 48 0.28956 +2006 49 1.51662 +2006 50 0.66482 +2006 51 0.28047 +2006 52 0.51160 +2006 53 0.13374 +2006 54 0.00390 +2006 55 0.00130 +2006 56 0.04804 +2006 57 0.04415 +2006 58 0.01169 +2006 59 0.03664 +2006 60 0.03745 +2006 61 1.08385 +2006 62 0.90078 +2006 63 0.20803 +2006 64 0.25484 +2006 65 6.97427 +2006 66 11.40220 +2006 67 2.19370 +2006 68 0.00312 +2006 69 3.69569 +2006 70 13.82270 +2006 71 0.35678 +2006 72 0.00104 +2006 73 0.00208 +2006 74 0.01872 +2006 75 0.14562 +2006 76 0.62410 +2006 77 2.38613 +2006 78 2.33308 +2006 79 15.06260 +2006 80 23.40360 +2006 81 26.13920 +2006 82 26.57300 +2006 83 1.25859 +2006 84 3.97029 +2006 85 29.43340 +2006 86 32.41140 +2006 87 9.19917 +2006 88 0.00208 +2006 89 0.97463 +2006 90 1.07281 +2006 91 16.37580 +2006 92 15.24290 +2006 93 6.72431 +2006 94 2.23204 +2006 95 0.20103 +2006 96 9.95025 +2006 97 6.41431 +2006 98 19.40260 +2006 99 18.45010 +2006 100 2.09301 +2006 101 0.12776 +2006 102 0.15218 +2006 103 0.04885 +2006 104 0.03382 +2006 105 0.07140 +2006 106 2.13622 +2006 107 15.24100 +2006 108 9.95777 +2006 109 0.07327 +2006 110 0.07703 +2006 111 0.86614 +2006 112 6.41243 +2006 113 6.20012 +2006 114 47.73340 +2006 115 2.29968 +2006 116 2.87084 +2006 117 8.09210 +2006 118 13.57830 +2006 119 18.33540 +2006 120 4.45947 +2006 121 15.50470 +2006 122 20.88880 +2006 123 2.79916 +2006 124 19.41280 +2006 125 6.07483 +2006 126 0.04795 +2006 127 0.00150 +2006 128 5.71220 +2006 129 5.63727 +2006 130 9.70864 +2006 131 6.22617 +2006 132 1.99447 +2006 133 7.15823 +2006 134 6.91697 +2006 135 0.00000 +2006 136 0.00150 +2006 137 0.00000 +2006 138 0.00899 +2006 139 0.01049 +2006 140 1.19578 +2006 141 2.06340 +2006 142 13.96580 +2006 143 24.60200 +2006 144 14.46780 +2006 145 8.06031 +2006 146 31.59690 +2006 147 3.22173 +2006 148 2.42154 +2006 149 0.69679 +2006 150 0.20529 +2006 151 0.00150 +2006 152 0.00000 +2006 153 0.01472 +2006 154 23.20560 +2006 155 2.79986 +2006 156 0.00000 +2006 157 0.00000 +2006 158 0.00000 +2006 159 0.03827 +2006 160 0.02650 +2006 161 0.01766 +2006 162 25.01330 +2006 163 11.56750 +2006 164 1.41318 +2006 165 0.70070 +2006 166 2.75275 +2006 167 7.80781 +2006 168 12.81280 +2006 169 20.60000 +2006 170 13.24850 +2006 171 0.05299 +2006 172 6.43879 +2006 173 13.43345 +2006 174 0.13543 +2006 175 0.01472 +2006 176 0.00000 +2006 177 0.00000 +2006 178 0.00000 +2006 179 0.00589 +2006 180 0.06183 +2006 181 0.00351 +2006 182 0.00468 +2006 183 0.29142 +2006 184 6.84200 +2006 185 12.25850 +2006 186 46.63230 +2006 187 12.33100 +2006 188 4.32335 +2006 189 0.11704 +2006 190 0.03043 +2006 191 0.08661 +2006 192 5.98294 +2006 193 12.00800 +2006 194 3.19863 +2006 195 11.80320 +2006 196 0.06788 +2006 197 0.02692 +2006 198 0.03511 +2006 199 23.24830 +2006 200 27.12340 +2006 201 1.03227 +2006 202 0.00117 +2006 203 0.15683 +2006 204 0.31366 +2006 205 0.00234 +2006 206 0.00234 +2006 207 0.00117 +2006 208 0.00117 +2006 209 0.00000 +2006 210 0.11002 +2006 211 7.88948 +2006 212 13.17190 +2006 213 17.43810 +2006 214 5.27305 +2006 215 2.22311 +2006 216 5.49576 +2006 217 67.13330 +2006 218 60.10390 +2006 219 10.10200 +2006 220 2.04307 +2006 221 0.30006 +2006 222 1.67500 +2006 223 2.53250 +2006 224 3.56204 +2006 225 1.20824 +2006 226 0.46009 +2006 227 0.58545 +2006 228 0.26805 +2006 229 0.00000 +2006 230 0.00133 +2006 231 2.43248 +2006 232 5.13702 +2006 233 3.88610 +2006 234 0.98820 +2006 235 0.10135 +2006 236 5.33039 +2006 237 7.35746 +2006 238 7.73354 +2006 239 0.04534 +2006 240 0.12002 +2006 241 0.07602 +2006 242 0.04801 +2006 243 0.01185 +2006 244 0.01400 +2006 245 0.12279 +2006 246 1.04913 +2006 247 2.24906 +2006 248 11.20000 +2006 249 2.33307 +2006 250 0.02047 +2006 251 21.08270 +2006 252 34.23460 +2006 253 0.63120 +2006 254 0.07217 +2006 255 1.00497 +2006 256 1.08037 +2006 257 0.15080 +2006 258 0.02585 +2006 259 0.05709 +2006 260 0.03231 +2006 261 0.26498 +2006 262 0.67859 +2006 263 0.00539 +2006 264 0.32745 +2006 265 0.09048 +2006 266 0.01077 +2006 267 0.01077 +2006 268 0.01831 +2006 269 0.04201 +2006 270 5.07653 +2006 271 5.87254 +2006 272 1.90114 +2006 273 4.50409 +2006 274 20.59320 +2006 275 25.82770 +2006 276 7.49737 +2006 277 1.15545 +2006 278 0.25943 +2006 279 0.00218 +2006 280 0.05886 +2006 281 2.56162 +2006 282 5.00115 +2006 283 0.95707 +2006 284 0.11991 +2006 285 0.00000 +2006 286 0.01090 +2006 287 0.24199 +2006 288 5.90590 +2006 289 1.97081 +2006 290 0.00872 +2006 291 0.05232 +2006 292 0.81536 +2006 293 0.63877 +2006 294 3.44020 +2006 295 25.85600 +2006 296 17.68930 +2006 297 2.70333 +2006 298 0.08502 +2006 299 0.08502 +2006 300 1.46285 +2006 301 15.00130 +2006 302 17.95970 +2006 303 0.21583 +2006 304 0.00419 +2006 305 1.71786 +2006 306 0.37214 +2006 307 0.06839 +2006 308 0.35202 +2006 309 0.98364 +2006 310 5.04093 +2006 311 22.90950 +2006 312 18.74960 +2006 313 6.88954 +2006 314 0.10058 +2006 315 2.41788 +2006 316 3.36732 +2006 317 0.84284 +2006 318 8.07232 +2006 319 8.65768 +2006 320 4.95845 +2006 321 16.69780 +2006 322 9.68558 +2006 323 0.38018 +2006 324 0.01006 +2006 325 0.76841 +2006 326 0.54714 +2006 327 1.03594 +2006 328 1.23509 +2006 329 0.19110 +2006 330 2.16844 +2006 331 1.07819 +2006 332 0.03822 +2006 333 28.27220 +2006 334 22.57360 +2006 335 4.92287 +2006 336 0.00145 +2006 337 0.62080 +2006 338 1.40985 +2006 339 0.70493 +2006 340 0.00290 +2006 341 5.89178 +2006 342 8.71148 +2006 343 2.39616 +2006 344 0.03916 +2006 345 0.00870 +2006 346 0.18566 +2006 347 0.01886 +2006 348 0.00435 +2006 349 0.00580 +2006 350 0.05222 +2006 351 11.99680 +2006 352 21.64090 +2006 353 31.24880 +2006 354 4.30062 +2006 355 3.08078 +2006 356 7.63234 +2006 357 6.93031 +2006 358 0.33941 +2006 359 0.23207 +2006 360 1.44321 +2006 361 1.79277 +2006 362 0.02321 +2006 363 0.52072 +2006 364 2.93429 +2006 365 20.19250 +2007 1 16.78740 +2007 2 4.60744 +2007 3 0.02274 +2007 4 0.00134 +2007 5 0.00267 +2007 6 0.01471 +2007 7 0.25411 +2007 8 15.31890 +2007 9 38.62760 +2007 10 8.32013 +2007 11 15.23460 +2007 12 15.18110 +2007 13 14.00690 +2007 14 3.74747 +2007 15 4.17411 +2007 16 2.16931 +2007 17 0.67540 +2007 18 0.00134 +2007 19 0.22870 +2007 20 0.30092 +2007 21 0.11502 +2007 22 0.27016 +2007 23 1.34278 +2007 24 2.11715 +2007 25 5.27481 +2007 26 1.40162 +2007 27 4.03100 +2007 28 7.58054 +2007 29 2.55983 +2007 30 0.00267 +2007 31 0.00230 +2007 32 0.00767 +2007 33 1.41686 +2007 34 4.32350 +2007 35 2.88649 +2007 36 2.21211 +2007 37 9.07867 +2007 38 7.44117 +2007 39 2.31284 +2007 40 14.95140 +2007 41 14.37780 +2007 42 1.77660 +2007 43 0.30026 +2007 44 0.89885 +2007 45 3.12055 +2007 46 1.10702 +2007 47 0.15732 +2007 48 0.00288 +2007 49 0.58325 +2007 50 2.30612 +2007 51 2.21019 +2007 52 1.12524 +2007 53 0.01631 +2007 54 0.52761 +2007 55 0.67246 +2007 56 0.92667 +2007 57 0.34630 +2007 58 0.28683 +2007 59 0.06583 +2007 60 0.55091 +2007 61 1.85024 +2007 62 5.54033 +2007 63 1.72551 +2007 64 0.65139 +2007 65 2.02002 +2007 66 2.66795 +2007 67 0.57170 +2007 68 0.00000 +2007 69 0.53359 +2007 70 18.34990 +2007 71 49.42980 +2007 72 19.85720 +2007 73 13.71400 +2007 74 0.46083 +2007 75 0.61328 +2007 76 4.28258 +2007 77 3.04216 +2007 78 0.02425 +2007 79 0.06930 +2007 80 0.25640 +2007 81 0.11781 +2007 82 0.03465 +2007 83 0.25640 +2007 84 0.86622 +2007 85 0.56824 +2007 86 10.32530 +2007 87 41.10720 +2007 88 44.47850 +2007 89 14.45540 +2007 90 0.98587 +2007 91 1.13314 +2007 92 0.62179 +2007 93 0.94742 +2007 94 5.48815 +2007 95 4.63727 +2007 96 0.01309 +2007 97 0.31335 +2007 98 0.30762 +2007 99 1.04069 +2007 100 0.88278 +2007 101 11.01150 +2007 102 11.73720 +2007 103 0.23072 +2007 104 0.37389 +2007 105 4.74608 +2007 106 4.38283 +2007 107 0.00982 +2007 108 0.01554 +2007 109 0.00900 +2007 110 0.00164 +2007 111 0.07527 +2007 112 3.57286 +2007 113 2.22946 +2007 114 0.00736 +2007 115 0.02864 +2007 116 0.11127 +2007 117 12.82370 +2007 118 2.29655 +2007 119 20.85950 +2007 120 37.89300 +2007 121 7.83074 +2007 122 8.57743 +2007 123 0.27076 +2007 124 0.09096 +2007 125 0.01692 +2007 126 0.00000 +2007 127 0.00000 +2007 128 0.00423 +2007 129 0.00846 +2007 130 0.51190 +2007 131 0.67900 +2007 132 0.00000 +2007 133 0.00635 +2007 134 0.01058 +2007 135 0.30037 +2007 136 0.27287 +2007 137 0.03173 +2007 138 0.01481 +2007 139 1.33897 +2007 140 4.07190 +2007 141 2.09201 +2007 142 20.68740 +2007 143 17.74710 +2007 144 0.31306 +2007 145 0.05500 +2007 146 0.05500 +2007 147 0.00000 +2007 148 0.00212 +2007 149 0.00212 +2007 150 0.00000 +2007 151 0.03387 +2007 152 14.00450 +2007 153 3.60540 +2007 154 0.18630 +2007 155 0.73040 +2007 156 1.43115 +2007 157 0.98656 +2007 158 1.36129 +2007 159 0.26040 +2007 160 12.31930 +2007 161 15.83160 +2007 162 1.89903 +2007 163 2.81996 +2007 164 1.97101 +2007 165 0.15031 +2007 166 0.09103 +2007 167 0.01482 +2007 168 0.00212 +2007 169 0.00000 +2007 170 23.42130 +2007 171 33.35680 +2007 172 7.93696 +2007 173 5.13182 +2007 174 1.30201 +2007 175 0.96327 +2007 176 0.45517 +2007 177 0.00000 +2007 178 0.00000 +2007 179 3.62657 +2007 180 58.33420 +2007 181 25.17020 +2007 182 18.00850 +2007 183 5.17514 +2007 184 4.63845 +2007 185 9.21966 +2007 186 22.80870 +2007 187 21.33320 +2007 188 0.03721 +2007 189 0.33203 +2007 190 7.58525 +2007 191 20.35420 +2007 192 2.30992 +2007 193 0.01288 +2007 194 0.01145 +2007 195 0.00000 +2007 196 10.99860 +2007 197 11.16320 +2007 198 4.64275 +2007 199 5.09214 +2007 200 15.70860 +2007 201 14.35620 +2007 202 15.35800 +2007 203 0.00716 +2007 204 0.02576 +2007 205 0.23471 +2007 206 0.53956 +2007 207 0.79717 +2007 208 0.41934 +2007 209 46.78100 +2007 210 44.66570 +2007 211 17.74660 +2007 212 11.15540 +2007 213 2.88446 +2007 214 1.76309 +2007 215 20.74540 +2007 216 18.65500 +2007 217 9.15249 +2007 218 9.21731 +2007 219 2.40966 +2007 220 0.14422 +2007 221 0.31761 +2007 222 1.67072 +2007 223 9.08929 +2007 224 1.38551 +2007 225 0.76001 +2007 226 0.67088 +2007 227 12.13580 +2007 228 41.37260 +2007 229 7.53849 +2007 230 7.11230 +2007 231 1.48760 +2007 232 0.86534 +2007 233 0.13612 +2007 234 0.12802 +2007 235 0.07292 +2007 236 0.03727 +2007 237 0.00000 +2007 238 25.28760 +2007 239 31.44220 +2007 240 0.48452 +2007 241 0.97391 +2007 242 0.44725 +2007 243 0.01066 +2007 244 0.74197 +2007 245 0.08684 +2007 246 5.19381 +2007 247 16.65710 +2007 248 1.85417 +2007 249 0.00152 +2007 250 0.77854 +2007 251 16.38890 +2007 252 23.49020 +2007 253 2.86124 +2007 254 2.12841 +2007 255 0.00305 +2007 256 1.86940 +2007 257 1.67744 +2007 258 15.39250 +2007 259 8.19826 +2007 260 2.52453 +2007 261 5.49090 +2007 262 3.59559 +2007 263 0.56524 +2007 264 17.05620 +2007 265 12.11690 +2007 266 14.44180 +2007 267 16.77440 +2007 268 5.84132 +2007 269 0.20416 +2007 270 0.00152 +2007 271 0.00609 +2007 272 13.33720 +2007 273 23.45630 +2007 274 17.33980 +2007 275 9.96911 +2007 276 1.31878 +2007 277 6.44128 +2007 278 0.70439 +2007 279 0.57525 +2007 280 2.19927 +2007 281 3.11889 +2007 282 13.09190 +2007 283 22.82430 +2007 284 9.66779 +2007 285 10.93570 +2007 286 14.89990 +2007 287 6.34149 +2007 288 5.40230 +2007 289 6.74456 +2007 290 19.45300 +2007 291 12.53620 +2007 292 0.73766 +2007 293 0.79831 +2007 294 0.51656 +2007 295 1.04876 +2007 296 0.88832 +2007 297 0.11349 +2007 298 0.00000 +2007 299 0.03522 +2007 300 0.01174 +2007 301 0.00196 +2007 302 0.00000 +2007 303 0.00000 +2007 304 0.92034 +2007 305 1.04414 +2007 306 1.54222 +2007 307 5.20151 +2007 308 24.80510 +2007 309 0.37524 +2007 310 0.95969 +2007 311 0.52015 +2007 312 0.07102 +2007 313 0.15931 +2007 314 0.50960 +2007 315 3.91649 +2007 316 4.15065 +2007 317 3.77158 +2007 318 0.46737 +2007 319 3.15450 +2007 320 1.78310 +2007 321 0.27351 +2007 322 0.17178 +2007 323 0.00672 +2007 324 0.05566 +2007 325 0.00096 +2007 326 0.74856 +2007 327 9.51723 +2007 328 0.46833 +2007 329 0.00096 +2007 330 0.03167 +2007 331 0.01344 +2007 332 0.14107 +2007 333 2.29558 +2007 334 3.91374 +2007 335 1.31340 +2007 336 1.33377 +2007 337 0.38689 +2007 338 4.15402 +2007 339 35.92000 +2007 340 16.05810 +2007 341 3.67549 +2007 342 12.07720 +2007 343 12.52720 +2007 344 7.74806 +2007 345 3.75491 +2007 346 1.95891 +2007 347 2.21344 +2007 348 1.25435 +2007 349 1.36431 +2007 350 1.83469 +2007 351 11.20570 +2007 352 35.36820 +2007 353 8.56868 +2007 354 2.84062 +2007 355 1.24010 +2007 356 0.91836 +2007 357 2.65531 +2007 358 9.93707 +2007 359 9.16124 +2007 360 1.40911 +2007 361 0.26268 +2007 362 0.23214 +2007 363 0.00815 +2007 364 0.09774 +2007 365 0.21741 +2008 1 0.05071 +2008 2 0.01217 +2008 3 0.10953 +2008 4 0.51519 +2008 5 0.78293 +2008 6 1.55775 +2008 7 6.51293 +2008 8 4.35683 +2008 9 0.32453 +2008 10 0.02028 +2008 11 0.03448 +2008 12 0.00000 +2008 13 0.00000 +2008 14 0.00000 +2008 15 0.00203 +2008 16 0.06288 +2008 17 0.37930 +2008 18 0.37930 +2008 19 1.74030 +2008 20 14.26520 +2008 21 21.17160 +2008 22 5.03632 +2008 23 0.37118 +2008 24 0.33670 +2008 25 0.00203 +2008 26 0.29613 +2008 27 0.44420 +2008 28 0.02028 +2008 29 0.31845 +2008 30 2.99380 +2008 31 3.00475 +2008 32 1.54458 +2008 33 2.09237 +2008 34 3.01373 +2008 35 3.24362 +2008 36 0.00000 +2008 37 0.00000 +2008 38 0.00000 +2008 39 0.15087 +2008 40 5.03067 +2008 41 5.04324 +2008 42 11.45330 +2008 43 10.42950 +2008 44 3.65132 +2008 45 4.65350 +2008 46 2.38512 +2008 47 1.08839 +2008 48 0.17601 +2008 49 2.82335 +2008 50 4.22964 +2008 51 0.38435 +2008 52 3.27056 +2008 53 10.76540 +2008 54 14.57470 +2008 55 14.29280 +2008 56 0.04131 +2008 57 0.16344 +2008 58 1.08839 +2008 59 0.54420 +2008 60 21.40020 +2008 61 20.74150 +2008 62 1.83933 +2008 63 10.72910 +2008 64 7.38537 +2008 65 0.25447 +2008 66 11.82370 +2008 67 4.49072 +2008 68 0.00187 +2008 69 0.10853 +2008 70 2.94891 +2008 71 0.33680 +2008 72 1.87675 +2008 73 6.88578 +2008 74 4.57118 +2008 75 0.00187 +2008 76 0.00000 +2008 77 0.00187 +2008 78 0.24512 +2008 79 0.02620 +2008 80 0.00374 +2008 81 0.00374 +2008 82 0.83078 +2008 83 2.76367 +2008 84 1.78506 +2008 85 0.58941 +2008 86 2.89652 +2008 87 3.74227 +2008 88 0.19460 +2008 89 0.16466 +2008 90 2.31085 +2008 91 13.35080 +2008 92 4.44390 +2008 93 0.01567 +2008 94 0.01741 +2008 95 0.00348 +2008 96 0.27676 +2008 97 2.98523 +2008 98 3.46217 +2008 99 0.00174 +2008 100 0.00000 +2008 101 0.00174 +2008 102 0.01044 +2008 103 0.18625 +2008 104 24.99410 +2008 105 53.74630 +2008 106 35.51290 +2008 107 36.18300 +2008 108 1.58052 +2008 109 0.03133 +2008 110 0.02959 +2008 111 0.02437 +2008 112 0.44387 +2008 113 0.48042 +2008 114 0.03481 +2008 115 0.00174 +2008 116 6.28377 +2008 117 18.33610 +2008 118 12.02100 +2008 119 30.57990 +2008 120 38.00200 +2008 121 1.80643 +2008 122 1.19261 +2008 123 0.67053 +2008 124 23.75210 +2008 125 38.71220 +2008 126 3.23255 +2008 127 0.01001 +2008 128 4.56694 +2008 129 22.67460 +2008 130 18.45620 +2008 131 5.41761 +2008 132 0.68888 +2008 133 0.00167 +2008 134 0.07006 +2008 135 0.00834 +2008 136 0.00167 +2008 137 0.00167 +2008 138 0.00167 +2008 139 0.09841 +2008 140 0.48538 +2008 141 0.18515 +2008 142 0.00500 +2008 143 0.00667 +2008 144 0.02836 +2008 145 0.22351 +2008 146 0.34027 +2008 147 0.18014 +2008 148 0.18181 +2008 149 0.00334 +2008 150 0.01168 +2008 151 0.18181 +2008 152 0.74058 +2008 153 2.85502 +2008 154 1.60040 +2008 155 0.02517 +2008 156 0.00000 +2008 157 0.14573 +2008 158 6.43339 +2008 159 15.33630 +2008 160 0.00000 +2008 161 0.00000 +2008 162 0.00132 +2008 163 0.03975 +2008 164 0.26629 +2008 165 0.74323 +2008 166 1.11286 +2008 167 6.03462 +2008 168 34.75040 +2008 169 10.68740 +2008 170 0.00132 +2008 171 0.00132 +2008 172 3.23392 +2008 173 48.48490 +2008 174 19.83940 +2008 175 6.26646 +2008 176 9.58517 +2008 177 14.14520 +2008 178 7.49061 +2008 179 9.81834 +2008 180 3.09084 +2008 181 0.09804 +2008 182 0.00160 +2008 183 6.95463 +2008 184 9.71536 +2008 185 8.83884 +2008 186 7.91593 +2008 187 1.62029 +2008 188 0.07678 +2008 189 0.07838 +2008 190 0.00160 +2008 191 0.07838 +2008 192 1.16604 +2008 193 15.37920 +2008 194 9.18273 +2008 195 0.00960 +2008 196 0.00480 +2008 197 0.08317 +2008 198 4.57777 +2008 199 11.18370 +2008 200 38.44560 +2008 201 13.58300 +2008 202 4.57457 +2008 203 15.78550 +2008 204 21.07020 +2008 205 7.87274 +2008 206 0.00160 +2008 207 26.62151 +2008 208 27.95467 +2008 209 1.34998 +2008 210 23.42310 +2008 211 85.31730 +2008 212 24.73150 +2008 213 14.93480 +2008 214 17.99500 +2008 215 15.66650 +2008 216 4.82555 +2008 217 2.61191 +2008 218 0.73910 +2008 219 0.66458 +2008 220 11.54710 +2008 221 6.13883 +2008 222 1.04574 +2008 223 0.01466 +2008 224 13.74000 +2008 225 11.40170 +2008 226 5.50357 +2008 227 13.04490 +2008 228 18.57650 +2008 229 13.50300 +2008 230 4.64719 +2008 231 0.93457 +2008 232 0.36039 +2008 233 0.16492 +2008 234 0.38849 +2008 235 1.89724 +2008 236 56.31970 +2008 237 38.47120 +2008 238 7.17113 +2008 239 5.67827 +2008 240 3.73827 +2008 241 0.14904 +2008 242 0.14782 +2008 243 0.02810 +2008 244 1.87842 +2008 245 2.02212 +2008 246 3.07300 +2008 247 2.90160 +2008 248 1.63085 +2008 249 1.45426 +2008 250 0.10214 +2008 251 28.96580 +2008 252 39.71010 +2008 253 15.94500 +2008 254 22.87520 +2008 255 13.45020 +2008 256 2.51899 +2008 257 0.11946 +2008 258 0.01039 +2008 259 0.01385 +2008 260 0.11773 +2008 261 4.63287 +2008 262 2.07406 +2008 263 0.17832 +2008 264 0.02078 +2008 265 0.12292 +2008 266 0.41377 +2008 267 0.50899 +2008 268 0.03116 +2008 269 0.00173 +2008 270 0.79985 +2008 271 1.09762 +2008 272 5.56775 +2008 273 10.13480 +2008 274 1.06292 +2008 275 0.77402 +2008 276 0.00154 +2008 277 0.40478 +2008 278 5.32389 +2008 279 24.49520 +2008 280 29.32620 +2008 281 22.48980 +2008 282 2.43020 +2008 283 0.26882 +2008 284 0.03862 +2008 285 0.09733 +2008 286 0.28891 +2008 287 3.82993 +2008 288 3.49622 +2008 289 12.94670 +2008 290 22.94710 +2008 291 1.55422 +2008 292 6.38836 +2008 293 6.55367 +2008 294 0.39705 +2008 295 0.50674 +2008 296 5.16785 +2008 297 13.87980 +2008 298 21.77140 +2008 299 8.45087 +2008 300 2.37768 +2008 301 0.64888 +2008 302 1.84003 +2008 303 0.76784 +2008 304 0.00463 +2008 305 7.01739 +2008 306 9.35175 +2008 307 0.02271 +2008 308 2.73946 +2008 309 15.84640 +2008 310 3.67051 +2008 311 1.80016 +2008 312 0.05161 +2008 313 0.02890 +2008 314 0.04129 +2008 315 0.00826 +2008 316 0.00206 +2008 317 0.07845 +2008 318 0.11767 +2008 319 0.05367 +2008 320 0.11767 +2008 321 11.18290 +2008 322 7.62797 +2008 323 0.01239 +2008 324 0.11973 +2008 325 0.15690 +2008 326 0.02684 +2008 327 2.07060 +2008 328 11.24270 +2008 329 28.17500 +2008 330 0.69364 +2008 331 0.56152 +2008 332 0.84847 +2008 333 0.26011 +2008 334 0.00619 +2008 335 4.15057 +2008 336 5.39621 +2008 337 0.00235 +2008 338 0.05171 +2008 339 0.14337 +2008 340 0.09166 +2008 341 1.25974 +2008 342 1.83556 +2008 343 10.62320 +2008 344 3.97665 +2008 345 0.52881 +2008 346 0.16217 +2008 347 0.73093 +2008 348 0.58522 +2008 349 2.66050 +2008 350 12.97820 +2008 351 2.79447 +2008 352 0.09871 +2008 353 0.08931 +2008 354 8.32700 +2008 355 8.03556 +2008 356 0.35489 +2008 357 10.87700 +2008 358 19.96790 +2008 359 0.66043 +2008 360 3.60061 +2008 361 3.01304 +2008 362 0.51941 +2008 363 11.65500 +2008 364 13.44820 +2008 365 1.36080 +2008 366 1.39591 +2009 1 2.33355 +2009 2 6.78850 +2009 3 3.62423 +2009 4 0.00198 +2009 5 0.00595 +2009 6 0.00198 +2009 7 0.00198 +2009 8 0.41635 +2009 9 4.07032 +2009 10 5.19645 +2009 11 4.01481 +2009 12 4.13575 +2009 13 2.11149 +2009 14 1.24310 +2009 15 0.00000 +2009 16 0.00198 +2009 17 5.61082 +2009 18 1.16182 +2009 19 0.08525 +2009 20 0.06543 +2009 21 0.15266 +2009 22 0.00397 +2009 23 0.00397 +2009 24 0.31524 +2009 25 0.47385 +2009 26 0.56703 +2009 27 0.21412 +2009 28 0.14275 +2009 29 0.00397 +2009 30 0.01388 +2009 31 0.13454 +2009 32 0.23705 +2009 33 1.50832 +2009 34 0.23705 +2009 35 2.94113 +2009 36 3.50963 +2009 37 0.09440 +2009 38 0.01259 +2009 39 0.72794 +2009 40 10.12820 +2009 41 6.40881 +2009 42 25.79050 +2009 43 21.59900 +2009 44 0.95240 +2009 45 0.00210 +2009 46 0.00420 +2009 47 0.92304 +2009 48 3.78445 +2009 49 3.35020 +2009 50 75.52530 +2009 51 41.59960 +2009 52 2.27612 +2009 53 0.05874 +2009 54 2.22787 +2009 55 2.49220 +2009 56 1.19995 +2009 57 1.48315 +2009 58 65.60690 +2009 59 39.76630 +2009 60 1.47088 +2009 61 0.96516 +2009 62 0.96676 +2009 63 2.55409 +2009 64 20.63850 +2009 65 24.12750 +2009 66 6.22650 +2009 67 0.13879 +2009 68 0.15315 +2009 69 1.20765 +2009 70 0.98112 +2009 71 1.58095 +2009 72 1.48843 +2009 73 0.03829 +2009 74 0.07977 +2009 75 9.01829 +2009 76 9.68035 +2009 77 3.57988 +2009 78 0.08774 +2009 79 0.12922 +2009 80 0.44509 +2009 81 1.00824 +2009 82 0.00479 +2009 83 0.00160 +2009 84 0.00000 +2009 85 0.00160 +2009 86 0.01755 +2009 87 0.01755 +2009 88 0.00000 +2009 89 0.04148 +2009 90 0.07947 +2009 91 0.00208 +2009 92 0.00417 +2009 93 0.00417 +2009 94 0.00625 +2009 95 0.00625 +2009 96 1.23149 +2009 97 4.04245 +2009 98 3.73822 +2009 99 2.37963 +2009 100 0.03959 +2009 101 0.00208 +2009 102 0.00208 +2009 103 0.00208 +2009 104 0.37716 +2009 105 0.43550 +2009 106 0.00000 +2009 107 0.00000 +2009 108 0.62304 +2009 109 23.65250 +2009 110 17.35540 +2009 111 0.00208 +2009 112 0.00000 +2009 113 0.52510 +2009 114 5.39063 +2009 115 7.58272 +2009 116 4.64257 +2009 117 4.16122 +2009 118 15.52800 +2009 119 4.81135 +2009 120 0.43795 +2009 121 5.57388 +2009 122 3.89066 +2009 123 0.00664 +2009 124 0.29860 +2009 125 3.08333 +2009 126 1.64341 +2009 127 5.60927 +2009 128 5.67121 +2009 129 12.02370 +2009 130 15.69760 +2009 131 14.42570 +2009 132 3.51686 +2009 133 1.02409 +2009 134 2.24061 +2009 135 3.21383 +2009 136 6.68866 +2009 137 7.44290 +2009 138 3.26249 +2009 139 3.03025 +2009 140 2.32245 +2009 141 2.08357 +2009 142 2.13444 +2009 143 18.73890 +2009 144 13.95900 +2009 145 0.00885 +2009 146 0.00885 +2009 147 0.00221 +2009 148 0.00442 +2009 149 10.75410 +2009 150 10.52688 +2009 151 0.01355 +2009 152 0.00000 +2009 153 0.00194 +2009 154 0.00194 +2009 155 0.00389 +2009 156 0.18861 +2009 157 0.02333 +2009 158 0.00000 +2009 159 4.76782 +2009 160 39.37140 +2009 161 27.32160 +2009 162 12.48150 +2009 163 32.32860 +2009 164 5.98894 +2009 165 0.15361 +2009 166 0.39861 +2009 167 0.19639 +2009 168 0.00194 +2009 169 0.00194 +2009 170 0.00000 +2009 171 0.00389 +2009 172 0.00000 +2009 173 0.00000 +2009 174 0.00000 +2009 175 0.00389 +2009 176 14.15370 +2009 177 7.15172 +2009 178 29.49360 +2009 179 47.70930 +2009 180 24.57800 +2009 181 3.13041 +2009 182 2.81027 +2009 183 12.21320 +2009 184 11.63750 +2009 185 13.57110 +2009 186 3.23960 +2009 187 1.44913 +2009 188 5.72230 +2009 189 0.53322 +2009 190 0.00318 +2009 191 4.85940 +2009 192 24.73580 +2009 193 0.81308 +2009 194 7.26259 +2009 195 7.63574 +2009 196 9.61808 +2009 197 13.44920 +2009 198 32.31960 +2009 199 1.36856 +2009 200 0.21838 +2009 201 0.74842 +2009 202 1.57528 +2009 203 4.91558 +2009 204 14.33650 +2009 205 1.69612 +2009 206 0.00212 +2009 207 0.00106 +2009 208 0.02756 +2009 209 18.89160 +2009 210 7.31029 +2009 211 0.70919 +2009 212 12.15800 +2009 213 12.89780 +2009 214 2.54294 +2009 215 2.31546 +2009 216 2.30251 +2009 217 0.00000 +2009 218 0.00000 +2009 219 0.07398 +2009 220 0.00000 +2009 221 0.46420 +2009 222 1.05416 +2009 223 1.87530 +2009 224 3.62854 +2009 225 28.07030 +2009 226 83.02740 +2009 227 65.04560 +2009 228 15.18550 +2009 229 0.39947 +2009 230 20.01990 +2009 231 13.11790 +2009 232 0.23118 +2009 233 0.31810 +2009 234 2.44862 +2009 235 3.65258 +2009 236 3.76910 +2009 237 15.67560 +2009 238 7.43462 +2009 239 1.16143 +2009 240 0.28851 +2009 241 9.98126 +2009 242 33.22460 +2009 243 5.36051 +2009 244 1.77578 +2009 245 0.41624 +2009 246 1.69550 +2009 247 0.69810 +2009 248 0.00000 +2009 249 0.00000 +2009 250 0.00000 +2009 251 0.00436 +2009 252 0.04712 +2009 253 2.12396 +2009 254 11.25850 +2009 255 14.46280 +2009 256 1.75397 +2009 257 0.05236 +2009 258 0.05148 +2009 259 3.61876 +2009 260 3.72085 +2009 261 4.16938 +2009 262 1.76007 +2009 263 0.00175 +2009 264 3.50008 +2009 265 9.96358 +2009 266 37.75570 +2009 267 47.57260 +2009 268 18.90790 +2009 269 6.36140 +2009 270 16.02040 +2009 271 23.43420 +2009 272 26.27980 +2009 273 8.04116 +2009 274 2.20156 +2009 275 5.70554 +2009 276 42.78626 +2009 277 39.87458 +2009 278 8.74466 +2009 279 0.01199 +2009 280 0.23868 +2009 281 19.77700 +2009 282 19.00760 +2009 283 0.18528 +2009 284 0.06648 +2009 285 0.42723 +2009 286 7.41339 +2009 287 33.89320 +2009 288 18.45830 +2009 289 12.36580 +2009 290 15.25180 +2009 291 3.38954 +2009 292 3.01571 +2009 293 3.01680 +2009 294 3.86364 +2009 295 11.34020 +2009 296 5.60636 +2009 297 0.06103 +2009 298 3.11707 +2009 299 14.19360 +2009 300 8.93704 +2009 301 2.60155 +2009 302 1.44954 +2009 303 0.43159 +2009 304 0.00482 +2009 305 0.07226 +2009 306 1.00562 +2009 307 1.27540 +2009 308 5.65920 +2009 309 1.62706 +2009 310 0.00602 +2009 311 0.21678 +2009 312 1.92574 +2009 313 1.54035 +2009 314 2.20876 +2009 315 1.90888 +2009 316 0.64673 +2009 317 0.15897 +2009 318 1.51145 +2009 319 2.26777 +2009 320 0.88760 +2009 321 19.31880 +2009 322 3.30832 +2009 323 0.00361 +2009 324 0.30952 +2009 325 3.02771 +2009 326 1.72462 +2009 327 0.01445 +2009 328 0.21558 +2009 329 0.00120 +2009 330 0.00120 +2009 331 1.41871 +2009 332 3.90206 +2009 333 1.54156 +2009 334 17.11130 +2009 335 47.38040 +2009 336 53.10390 +2009 337 6.60668 +2009 338 16.19670 +2009 339 1.37106 +2009 340 3.73470 +2009 341 0.14100 +2009 342 0.00000 +2009 343 0.00000 +2009 344 0.14100 +2009 345 4.94620 +2009 346 0.93692 +2009 347 3.35622 +2009 348 2.06494 +2009 349 1.76995 +2009 350 0.24304 +2009 351 0.01484 +2009 352 0.00000 +2009 353 0.87570 +2009 354 0.84787 +2009 355 4.90538 +2009 356 4.51577 +2009 357 2.86642 +2009 358 0.56586 +2009 359 0.00186 +2009 360 0.00186 +2009 361 5.28015 +2009 362 5.96846 +2009 363 1.12430 +2009 364 0.01670 +2009 365 0.01644 +2010 1 0.00000 +2010 2 0.05342 +2010 3 3.84006 +2010 4 0.00000 +2010 5 0.00000 +2010 6 1.03758 +2010 7 1.09511 +2010 8 0.01027 +2010 9 0.00000 +2010 10 11.96400 +2010 11 5.35841 +2010 12 5.27623 +2010 13 0.10684 +2010 14 0.63076 +2010 15 5.86385 +2010 16 5.77755 +2010 17 3.42503 +2010 18 2.87234 +2010 19 3.82979 +2010 20 57.12420 +2010 21 23.19030 +2010 22 12.55360 +2010 23 4.71943 +2010 24 2.71619 +2010 25 12.11810 +2010 26 23.67320 +2010 27 25.66000 +2010 28 9.20258 +2010 29 5.66866 +2010 30 56.75030 +2010 31 49.36180 +2010 32 3.07907 +2010 33 0.91207 +2010 34 0.34945 +2010 35 3.07248 +2010 36 4.30982 +2010 37 1.18460 +2010 38 3.73620 +2010 39 4.29224 +2010 40 0.20439 +2010 41 2.52963 +2010 42 1.90327 +2010 43 1.39338 +2010 44 1.70766 +2010 45 2.28568 +2010 46 3.60653 +2010 47 6.38451 +2010 48 4.45048 +2010 49 1.50547 +2010 50 0.20659 +2010 51 0.11868 +2010 52 0.13626 +2010 53 0.83515 +2010 54 2.45490 +2010 55 7.68559 +2010 56 5.36035 +2010 57 0.02198 +2010 58 0.59340 +2010 59 0.23842 +2010 60 1.09669 +2010 61 1.05238 +2010 62 0.06647 +2010 63 0.00000 +2010 64 0.00222 +2010 65 0.00222 +2010 66 0.00000 +2010 67 0.21934 +2010 68 0.75328 +2010 69 0.27694 +2010 70 0.25257 +2010 71 0.07311 +2010 72 0.01772 +2010 73 0.00886 +2010 74 0.02216 +2010 75 3.17042 +2010 76 3.17042 +2010 77 0.07090 +2010 78 0.53616 +2010 79 0.09084 +2010 80 0.99256 +2010 81 5.45684 +2010 82 20.95890 +2010 83 15.90530 +2010 84 0.21934 +2010 85 0.00665 +2010 86 0.10856 +2010 87 0.11078 +2010 88 0.05539 +2010 89 0.06425 +2010 90 0.00288 +2010 91 0.00288 +2010 92 0.02596 +2010 93 1.06735 +2010 94 0.60579 +2010 95 11.23030 +2010 96 12.53130 +2010 97 0.54810 +2010 98 0.41252 +2010 99 0.00000 +2010 100 0.02885 +2010 101 0.16731 +2010 102 0.04039 +2010 103 8.51285 +2010 104 0.01154 +2010 105 0.02885 +2010 106 0.00000 +2010 107 0.00000 +2010 108 0.11250 +2010 109 0.07500 +2010 110 0.00288 +2010 111 0.00288 +2010 112 0.03750 +2010 113 0.03750 +2010 114 0.04616 +2010 115 1.58083 +2010 116 8.07437 +2010 117 11.56200 +2010 118 0.07212 +2010 119 0.06923 +2010 120 4.06874 +2010 121 0.78739 +2010 122 0.01668 +2010 123 0.03170 +2010 124 0.00000 +2010 125 0.00000 +2010 126 0.00000 +2010 127 0.00167 +2010 128 0.25857 +2010 129 0.15681 +2010 130 0.37701 +2010 131 34.65690 +2010 132 66.61130 +2010 133 4.49747 +2010 134 13.25720 +2010 135 12.29130 +2010 136 7.57364 +2010 137 1.53141 +2010 138 0.70231 +2010 139 5.64353 +2010 140 24.99970 +2010 141 8.29763 +2010 142 10.72150 +2010 143 132.87900 +2010 144 90.76020 +2010 145 11.19700 +2010 146 6.56604 +2010 147 6.69116 +2010 148 3.32139 +2010 149 2.58571 +2010 150 0.14013 +2010 151 46.39140 +2010 152 31.61120 +2010 153 0.65756 +2010 154 0.03846 +2010 155 0.15136 +2010 156 54.17670 +2010 157 38.57760 +2010 158 9.86711 +2010 159 1.08807 +2010 160 0.11911 +2010 161 22.75150 +2010 162 5.97759 +2010 163 6.78030 +2010 164 2.32999 +2010 165 1.06822 +2010 166 0.01117 +2010 167 0.00620 +2010 168 0.08437 +2010 169 1.80519 +2010 170 25.41280 +2010 171 1.45407 +2010 172 0.11290 +2010 173 0.40818 +2010 174 20.89800 +2010 175 23.95380 +2010 176 11.62890 +2010 177 3.16621 +2010 178 3.81881 +2010 179 11.27650 +2010 180 1.40073 +2010 181 0.11571 +2010 182 0.00202 +2010 183 0.00202 +2010 184 0.20016 +2010 185 20.39240 +2010 186 10.02230 +2010 187 1.11606 +2010 188 0.11525 +2010 189 0.00809 +2010 190 0.01011 +2010 191 0.00404 +2010 192 0.00000 +2010 193 0.00000 +2010 194 0.00000 +2010 195 0.06066 +2010 196 11.58930 +2010 197 15.57230 +2010 198 2.85284 +2010 199 0.05459 +2010 200 0.26082 +2010 201 4.08213 +2010 202 32.09490 +2010 203 8.30376 +2010 204 1.73071 +2010 205 0.00000 +2010 206 0.27093 +2010 207 2.78207 +2010 208 2.45251 +2010 209 0.53175 +2010 210 0.33563 +2010 211 0.79459 +2010 212 7.53190 +2010 213 20.33780 +2010 214 12.15600 +2010 215 40.42980 +2010 216 26.91780 +2010 217 0.24579 +2010 218 16.41560 +2010 219 23.02690 +2010 220 1.23726 +2010 221 0.05832 +2010 222 0.01666 +2010 223 0.07082 +2010 224 7.10698 +2010 225 72.52370 +2010 226 48.80950 +2010 227 6.07384 +2010 228 7.09448 +2010 229 11.93110 +2010 230 5.67809 +2010 231 9.16909 +2010 232 11.19160 +2010 233 1.93921 +2010 234 0.52490 +2010 235 0.12498 +2010 236 9.30448 +2010 237 21.04180 +2010 238 3.75554 +2010 239 7.31736 +2010 240 12.51640 +2010 241 5.66351 +2010 242 8.07763 +2010 243 3.32514 +2010 244 8.92268 +2010 245 10.06580 +2010 246 1.33948 +2010 247 0.01178 +2010 248 5.86662 +2010 249 12.41870 +2010 250 0.18266 +2010 251 47.82660 +2010 252 31.31480 +2010 253 16.46270 +2010 254 45.03570 +2010 255 6.58153 +2010 256 3.94971 +2010 257 7.86799 +2010 258 24.33660 +2010 259 35.11920 +2010 260 29.09740 +2010 261 16.35860 +2010 262 6.28103 +2010 263 8.55541 +2010 264 6.68563 +2010 265 6.62474 +2010 266 2.05833 +2010 267 5.95697 +2010 268 3.55100 +2010 269 0.64617 +2010 270 0.21801 +2010 271 0.27497 +2010 272 8.17242 +2010 273 18.95580 +2010 274 0.02988 +2010 275 0.01793 +2010 276 0.01942 +2010 277 0.20765 +2010 278 1.01434 +2010 279 0.61548 +2010 280 0.71856 +2010 281 6.52676 +2010 282 0.87392 +2010 283 4.93429 +2010 284 0.82163 +2010 285 15.87250 +2010 286 20.87850 +2010 287 11.59250 +2010 288 0.48252 +2010 289 5.51092 +2010 290 5.78430 +2010 291 0.21363 +2010 292 3.20437 +2010 293 2.11683 +2010 294 1.06514 +2010 295 0.00149 +2010 296 0.04780 +2010 297 0.00598 +2010 298 0.00149 +2010 299 1.23245 +2010 300 1.65671 +2010 301 1.23544 +2010 302 0.79176 +2010 303 0.09113 +2010 304 0.03081 +2010 305 0.09667 +2010 306 1.56160 +2010 307 0.86366 +2010 308 11.27540 +2010 309 1.17598 +2010 310 0.01700 +2010 311 1.63702 +2010 312 1.74431 +2010 313 0.32719 +2010 314 0.02443 +2010 315 0.08817 +2010 316 0.02868 +2010 317 0.33888 +2010 318 1.03469 +2010 319 2.17774 +2010 320 0.05630 +2010 321 0.03187 +2010 322 0.03931 +2010 323 6.91246 +2010 324 14.27640 +2010 325 1.69120 +2010 326 8.76513 +2010 327 12.14960 +2010 328 0.08392 +2010 329 0.50141 +2010 330 0.30063 +2010 331 0.58427 +2010 332 0.98476 +2010 333 0.74468 +2010 334 0.62796 +2010 335 1.14200 +2010 336 0.85285 +2010 337 0.52573 +2010 338 0.44979 +2010 339 0.06426 +2010 340 0.07886 +2010 341 7.78956 +2010 342 10.16700 +2010 343 0.63964 +2010 344 0.11975 +2010 345 0.29791 +2010 346 2.25188 +2010 347 10.83300 +2010 348 13.83840 +2010 349 13.26880 +2010 350 17.57980 +2010 351 11.68290 +2010 352 47.99330 +2010 353 46.71110 +2010 354 4.22628 +2010 355 3.80570 +2010 356 1.20626 +2010 357 0.37385 +2010 358 0.37385 +2010 359 0.00000 +2010 360 1.08943 +2010 361 25.03640 +2010 362 12.83070 +2010 363 0.13727 +2010 364 0.64840 +2010 365 0.53279 +2011 1 0.45592 +2011 2 0.00795 +2011 3 0.40821 +2011 4 0.69713 +2011 5 3.61556 +2011 6 3.21000 +2011 7 0.98341 +2011 8 0.29158 +2011 9 0.10868 +2011 10 0.09543 +2011 11 0.51424 +2011 12 1.21402 +2011 13 5.96408 +2011 14 1.88995 +2011 15 0.09012 +2011 16 2.13116 +2011 17 21.81260 +2011 18 26.01930 +2011 19 0.00795 +2011 20 10.47820 +2011 21 32.43400 +2011 22 134.20500 +2011 23 48.48930 +2011 24 3.45386 +2011 25 1.36776 +2011 26 0.04241 +2011 27 23.94110 +2011 28 136.40800 +2011 29 0.00000 +2011 30 1.03908 +2011 31 0.96847 +2011 32 0.01404 +2011 33 0.76796 +2011 34 1.19304 +2011 35 0.94842 +2011 36 0.27270 +2011 37 0.28673 +2011 38 0.99855 +2011 39 0.89628 +2011 40 2.25174 +2011 41 9.42002 +2011 42 6.61687 +2011 43 0.48524 +2011 44 0.43711 +2011 45 1.02461 +2011 46 0.99053 +2011 47 0.32483 +2011 48 0.26668 +2011 49 3.40869 +2011 50 5.44388 +2011 51 1.84671 +2011 52 3.02572 +2011 53 2.83924 +2011 54 5.63637 +2011 55 4.50348 +2011 56 10.05970 +2011 57 10.63310 +2011 58 1.33741 +2011 59 3.34302 +2011 60 8.50950 +2011 61 7.21630 +2011 62 20.81310 +2011 63 38.67740 +2011 64 25.61240 +2011 65 0.53501 +2011 66 0.01425 +2011 67 0.26117 +2011 68 0.32765 +2011 69 0.05857 +2011 70 0.22952 +2011 71 0.68538 +2011 72 0.87216 +2011 73 1.10643 +2011 74 2.03399 +2011 75 0.97030 +2011 76 7.21313 +2011 77 6.68604 +2011 78 0.00475 +2011 79 21.83570 +2011 80 70.29520 +2011 81 0.75345 +2011 82 0.00475 +2011 83 2.68296 +2011 84 16.75780 +2011 85 28.33970 +2011 86 8.14861 +2011 87 0.00158 +2011 88 0.00158 +2011 89 0.00158 +2011 90 2.60202 +2011 91 12.50710 +2011 92 13.21100 +2011 93 26.22470 +2011 94 21.67210 +2011 95 2.20213 +2011 96 1.64843 +2011 97 0.41799 +2011 98 0.00362 +2011 99 1.01692 +2011 100 1.22863 +2011 101 0.28228 +2011 102 0.00000 +2011 103 0.00362 +2011 104 0.66951 +2011 105 8.21139 +2011 106 6.24630 +2011 107 2.81554 +2011 108 0.11581 +2011 109 0.00000 +2011 110 1.21235 +2011 111 6.62448 +2011 112 2.28898 +2011 113 1.49282 +2011 114 24.47310 +2011 115 108.41300 +2011 116 15.97770 +2011 117 0.50484 +2011 118 0.00181 +2011 119 0.00000 +2011 120 2.13308 +2011 121 36.84130 +2011 122 54.55070 +2011 123 3.09416 +2011 124 0.73424 +2011 125 23.60710 +2011 126 17.26760 +2011 127 3.97365 +2011 128 0.52133 +2011 129 0.05174 +2011 130 24.96810 +2011 131 28.84830 +2011 132 1.37098 +2011 133 3.22349 +2011 134 7.81001 +2011 135 8.47261 +2011 136 2.65441 +2011 137 1.84455 +2011 138 1.02475 +2011 139 0.11342 +2011 140 0.12138 +2011 141 0.02388 +2011 142 0.23679 +2011 143 0.14128 +2011 144 1.29338 +2011 145 85.81850 +2011 146 54.99440 +2011 147 1.91619 +2011 148 0.06765 +2011 149 0.06367 +2011 150 0.03781 +2011 151 0.00249 +2011 152 0.00000 +2011 153 0.37730 +2011 154 23.03760 +2011 155 54.35720 +2011 156 3.84770 +2011 157 5.03438 +2011 158 4.60105 +2011 159 1.21159 +2011 160 31.10160 +2011 161 31.35190 +2011 162 11.26790 +2011 163 0.02241 +2011 164 0.00000 +2011 165 0.00125 +2011 166 0.00374 +2011 167 2.89013 +2011 168 47.42880 +2011 169 13.44700 +2011 170 12.38610 +2011 171 7.77011 +2011 172 0.07471 +2011 173 10.48720 +2011 174 16.16160 +2011 175 6.33687 +2011 176 0.01245 +2011 177 0.01619 +2011 178 1.61628 +2011 179 5.77777 +2011 180 0.06475 +2011 181 0.00513 +2011 182 0.00128 +2011 183 0.00641 +2011 184 0.64782 +2011 185 7.43652 +2011 186 15.06160 +2011 187 9.87388 +2011 188 8.43327 +2011 189 7.96761 +2011 190 19.51300 +2011 191 15.41950 +2011 192 14.52800 +2011 193 7.40702 +2011 194 18.92800 +2011 195 7.32235 +2011 196 0.21680 +2011 197 0.00000 +2011 198 0.00128 +2011 199 0.00000 +2011 200 0.13598 +2011 201 6.75149 +2011 202 13.10270 +2011 203 4.29104 +2011 204 11.39530 +2011 205 6.20455 +2011 206 0.22193 +2011 207 3.05312 +2011 208 3.30198 +2011 209 0.19114 +2011 210 0.62730 +2011 211 0.01155 +2011 212 0.02455 +2011 213 0.05660 +2011 214 0.00629 +2011 215 0.00063 +2011 216 0.00566 +2011 217 0.22767 +2011 218 6.12250 +2011 219 2.77981 +2011 220 0.01761 +2011 221 0.23270 +2011 222 14.26760 +2011 223 12.37830 +2011 224 4.15965 +2011 225 0.14905 +2011 226 1.79773 +2011 227 0.92327 +2011 228 0.26227 +2011 229 0.10000 +2011 230 0.14780 +2011 231 0.13459 +2011 232 0.01447 +2011 233 0.00189 +2011 234 0.00126 +2011 235 0.01509 +2011 236 0.01006 +2011 237 0.02641 +2011 238 0.29622 +2011 239 0.29936 +2011 240 1.05721 +2011 241 9.63752 +2011 242 2.88987 +2011 243 0.76384 +2011 244 0.84655 +2011 245 0.30891 +2011 246 0.00338 +2011 247 0.60179 +2011 248 0.42032 +2011 249 0.11141 +2011 250 0.33676 +2011 251 0.33845 +2011 252 0.00169 +2011 253 16.89060 +2011 254 17.69070 +2011 255 4.23445 +2011 256 4.90630 +2011 257 3.71454 +2011 258 3.64195 +2011 259 2.47298 +2011 260 8.40476 +2011 261 8.36509 +2011 262 3.91457 +2011 263 0.00591 +2011 264 0.00338 +2011 265 0.02110 +2011 266 0.58828 +2011 267 6.79944 +2011 268 5.37051 +2011 269 0.29794 +2011 270 0.01266 +2011 271 0.05402 +2011 272 0.05317 +2011 273 1.76822 +2011 274 5.17403 +2011 275 47.86270 +2011 276 35.03290 +2011 277 12.49180 +2011 278 6.35121 +2011 279 0.64165 +2011 280 0.39348 +2011 281 1.14942 +2011 282 10.21580 +2011 283 49.10510 +2011 284 67.07300 +2011 285 8.04269 +2011 286 5.16097 +2011 287 9.84030 +2011 288 7.52512 +2011 289 1.89067 +2011 290 20.49370 +2011 291 14.56040 +2011 292 7.28185 +2011 293 0.00980 +2011 294 8.00187 +2011 295 11.63140 +2011 296 2.68580 +2011 297 0.14694 +2011 298 0.06531 +2011 299 2.38538 +2011 300 0.59104 +2011 301 2.59273 +2011 302 1.96741 +2011 303 1.16085 +2011 304 17.77300 +2011 305 45.65650 +2011 306 3.07174 +2011 307 4.63839 +2011 308 0.48398 +2011 309 4.24113 +2011 310 3.81590 +2011 311 0.00839 +2011 312 0.24339 +2011 313 2.33598 +2011 314 0.11190 +2011 315 0.93439 +2011 316 1.27570 +2011 317 10.56370 +2011 318 10.58600 +2011 319 3.32912 +2011 320 0.05036 +2011 321 0.19863 +2011 322 0.79172 +2011 323 0.48958 +2011 324 2.07021 +2011 325 2.08700 +2011 326 0.28256 +2011 327 9.62368 +2011 328 0.32452 +2011 329 0.00560 +2011 330 0.00000 +2011 331 0.61827 +2011 332 1.98069 +2011 333 0.31892 +2011 334 0.00618 +2011 335 6.76451 +2011 336 13.82300 +2011 337 17.51440 +2011 338 19.06190 +2011 339 11.15030 +2011 340 6.40297 +2011 341 1.37182 +2011 342 2.09490 +2011 343 1.56104 +2011 344 0.63354 +2011 345 11.72470 +2011 346 13.67260 +2011 347 9.13987 +2011 348 39.17300 +2011 349 28.76440 +2011 350 30.71230 +2011 351 24.02210 +2011 352 2.23682 +2011 353 0.67746 +2011 354 1.49346 +2011 355 8.65669 +2011 356 7.65992 +2011 357 0.18077 +2011 358 1.89217 +2011 359 3.43632 +2011 360 1.43095 +2011 361 1.29918 +2011 362 4.62231 +2011 363 38.77600 +2011 364 77.98110 +2011 365 46.87590 +2012 1 13.44920 +2012 2 6.19878 +2012 3 4.72950 +2012 4 1.03468 +2012 5 0.95889 +2012 6 20.08720 +2012 7 54.95850 +2012 8 13.85440 +2012 9 26.68810 +2012 10 14.12200 +2012 11 1.52031 +2012 12 11.75570 +2012 13 1.81726 +2012 14 1.33781 +2012 15 1.01766 +2012 16 0.81970 +2012 17 1.39349 +2012 18 0.55523 +2012 19 0.72845 +2012 20 0.09589 +2012 21 2.60138 +2012 22 1.45380 +2012 23 0.06650 +2012 24 0.00155 +2012 25 0.02784 +2012 26 5.76418 +2012 27 5.76727 +2012 28 0.07269 +2012 29 1.07025 +2012 30 0.59544 +2012 31 0.47044 +2012 32 0.73662 +2012 33 0.62519 +2012 34 0.05416 +2012 35 0.02940 +2012 36 0.00464 +2012 37 0.58186 +2012 38 1.41133 +2012 39 1.36645 +2012 40 0.55401 +2012 41 4.76014 +2012 42 5.43795 +2012 43 15.33430 +2012 44 22.82110 +2012 45 27.81340 +2012 46 14.31600 +2012 47 16.99630 +2012 48 8.77902 +2012 49 2.28258 +2012 50 2.85516 +2012 51 4.82514 +2012 52 16.01520 +2012 53 39.23560 +2012 54 22.44200 +2012 55 0.31414 +2012 56 0.21665 +2012 57 0.16249 +2012 58 36.66210 +2012 59 34.04520 +2012 60 5.41189 +2012 61 7.87949 +2012 62 20.72780 +2012 63 0.31175 +2012 64 0.11525 +2012 65 0.05319 +2012 66 0.42109 +2012 67 1.49523 +2012 68 0.01330 +2012 69 0.06501 +2012 70 14.28440 +2012 71 34.20700 +2012 72 7.88244 +2012 73 0.00591 +2012 74 0.43291 +2012 75 0.72545 +2012 76 0.33982 +2012 77 1.32384 +2012 78 42.76320 +2012 79 23.96940 +2012 80 29.69770 +2012 81 27.74290 +2012 82 2.15714 +2012 83 2.88850 +2012 84 5.29535 +2012 85 0.00148 +2012 86 0.01182 +2012 87 0.00591 +2012 88 0.00295 +2012 89 0.94117 +2012 90 1.01208 +2012 91 0.44276 +2012 92 2.78203 +2012 93 2.59515 +2012 94 0.84569 +2012 95 0.06652 +2012 96 0.10136 +2012 97 0.73272 +2012 98 0.59230 +2012 99 0.17315 +2012 100 0.01689 +2012 101 21.84230 +2012 102 41.36610 +2012 103 1.16560 +2012 104 0.03379 +2012 105 0.23650 +2012 106 0.25234 +2012 107 0.35158 +2012 108 0.46561 +2012 109 0.00211 +2012 110 0.00000 +2012 111 0.00000 +2012 112 0.00211 +2012 113 0.37481 +2012 114 0.37692 +2012 115 0.24917 +2012 116 1.63965 +2012 117 23.92330 +2012 118 5.18291 +2012 119 0.16259 +2012 120 0.91010 +2012 121 0.36291 +2012 122 0.36571 +2012 123 0.00140 +2012 124 0.00000 +2012 125 0.00000 +2012 126 0.00000 +2012 127 0.00837 +2012 128 1.93181 +2012 129 50.69890 +2012 130 9.31988 +2012 131 0.11306 +2012 132 0.01675 +2012 133 4.33262 +2012 134 16.81820 +2012 135 15.28980 +2012 136 6.05088 +2012 137 1.81456 +2012 138 0.62393 +2012 139 0.11585 +2012 140 0.00000 +2012 141 0.00140 +2012 142 0.00000 +2012 143 0.00279 +2012 144 0.00837 +2012 145 0.15912 +2012 146 0.37687 +2012 147 3.95715 +2012 148 22.87050 +2012 149 0.44248 +2012 150 0.00140 +2012 151 0.03769 +2012 152 0.04370 +2012 153 0.00000 +2012 154 0.06410 +2012 155 0.11655 +2012 156 25.28320 +2012 157 41.93210 +2012 158 16.89170 +2012 159 0.94987 +2012 160 0.90519 +2012 161 0.50504 +2012 162 0.14374 +2012 163 0.02137 +2012 164 0.00000 +2012 165 0.03691 +2012 166 0.26612 +2012 167 0.01942 +2012 168 0.00194 +2012 169 20.41340 +2012 170 31.35340 +2012 171 8.17002 +2012 172 10.20180 +2012 173 3.04968 +2012 174 0.16123 +2012 175 10.34170 +2012 176 3.14874 +2012 177 4.51430 +2012 178 3.12349 +2012 179 0.87411 +2012 180 0.39626 +2012 181 0.00000 +2012 182 0.00000 +2012 183 0.00729 +2012 184 32.74010 +2012 185 24.91770 +2012 186 0.26237 +2012 187 0.03644 +2012 188 0.03644 +2012 189 0.00000 +2012 190 0.05102 +2012 191 0.05102 +2012 192 0.00243 +2012 193 0.10446 +2012 194 0.16762 +2012 195 0.06559 +2012 196 22.10930 +2012 197 58.85060 +2012 198 16.79400 +2012 199 0.00243 +2012 200 0.00243 +2012 201 0.01215 +2012 202 0.38140 +2012 203 7.73742 +2012 204 73.74480 +2012 205 49.12840 +2012 206 3.68773 +2012 207 1.63494 +2012 208 0.00972 +2012 209 0.01458 +2012 210 7.29771 +2012 211 49.20120 +2012 212 15.50160 +2012 213 1.65851 +2012 214 3.71901 +2012 215 7.86968 +2012 216 6.59230 +2012 217 4.12870 +2012 218 0.58103 +2012 219 5.28746 +2012 220 12.49700 +2012 221 3.92221 +2012 222 0.21198 +2012 223 2.84033 +2012 224 42.30730 +2012 225 22.72820 +2012 226 4.29674 +2012 227 16.02160 +2012 228 15.77890 +2012 229 1.81338 +2012 230 3.87717 +2012 231 9.20198 +2012 232 25.65530 +2012 233 8.05859 +2012 234 0.58103 +2012 235 3.47408 +2012 236 4.18471 +2012 237 1.66949 +2012 238 0.65132 +2012 239 8.05859 +2012 240 3.44333 +2012 241 0.14388 +2012 242 0.04393 +2012 243 0.06590 +2012 244 0.02208 +2012 245 0.44705 +2012 246 24.02820 +2012 247 14.48390 +2012 248 4.06572 +2012 249 0.31827 +2012 250 1.13693 +2012 251 7.96587 +2012 252 20.53460 +2012 253 11.26440 +2012 254 5.20817 +2012 255 2.24626 +2012 256 0.21708 +2012 257 0.29987 +2012 258 9.84051 +2012 259 71.15930 +2012 260 24.07050 +2012 261 2.27938 +2012 262 0.01840 +2012 263 0.40289 +2012 264 0.75611 +2012 265 0.42129 +2012 266 0.29251 +2012 267 1.57110 +2012 268 1.04495 +2012 269 1.69436 +2012 270 2.59581 +2012 271 11.39690 +2012 272 0.98608 +2012 273 0.84626 +2012 274 2.56557 +2012 275 4.06000 +2012 276 1.40668 +2012 277 4.81625 +2012 278 0.86465 +2012 279 8.03483 +2012 280 1.31634 +2012 281 10.22620 +2012 282 10.71910 +2012 283 0.99887 +2012 284 1.00403 +2012 285 0.00000 +2012 286 24.97430 +2012 287 6.83980 +2012 288 0.62204 +2012 289 0.11357 +2012 290 0.41813 +2012 291 11.35670 +2012 292 4.49104 +2012 293 0.02581 +2012 294 13.97130 +2012 295 12.17230 +2012 296 2.45975 +2012 297 0.31489 +2012 298 0.00000 +2012 299 0.03872 +2012 300 0.03613 +2012 301 0.02581 +2012 302 0.54460 +2012 303 0.17035 +2012 304 0.00000 +2012 305 0.00112 +2012 306 0.26318 +2012 307 7.88865 +2012 308 8.21144 +2012 309 1.18881 +2012 310 1.14832 +2012 311 0.84690 +2012 312 0.44763 +2012 313 0.29130 +2012 314 0.00337 +2012 315 0.50499 +2012 316 10.72850 +2012 317 17.87040 +2012 318 7.15872 +2012 319 6.94165 +2012 320 3.59004 +2012 321 14.16220 +2012 322 19.39430 +2012 323 2.54520 +2012 324 0.00225 +2012 325 0.00000 +2012 326 0.84465 +2012 327 3.99381 +2012 328 3.40897 +2012 329 0.00000 +2012 330 0.01125 +2012 331 0.13046 +2012 332 0.45213 +2012 333 0.00112 +2012 334 0.12034 +2012 335 0.00420 +2012 336 1.12185 +2012 337 2.41177 +2012 338 3.22091 +2012 339 12.15070 +2012 340 14.64650 +2012 341 19.45440 +2012 342 6.74280 +2012 343 1.08667 +2012 344 0.00195 +2012 345 0.15049 +2012 346 1.56746 +2012 347 4.77664 +2012 348 3.59225 +2012 349 0.63715 +2012 350 0.01368 +2012 351 1.15898 +2012 352 3.71538 +2012 353 3.09778 +2012 354 0.27558 +2012 355 3.08996 +2012 356 4.08672 +2012 357 2.59744 +2012 358 9.79562 +2012 359 15.07260 +2012 360 20.18150 +2012 361 16.81790 +2012 362 6.24246 +2012 363 2.60722 +2012 364 15.32860 +2012 365 9.15066 +2012 366 0.00840 +2013 1 0.02240 +2013 2 3.30399 +2013 3 1.92640 +2013 4 0.00280 +2013 5 4.50799 +2013 6 4.60879 +2013 7 0.30240 +2013 8 0.30240 +2013 9 0.10080 +2013 10 0.18480 +2013 11 0.17080 +2013 12 1.54000 +2013 13 3.04079 +2013 14 7.82038 +2013 15 4.95599 +2013 16 2.07760 +2013 17 1.49240 +2013 18 0.03360 +2013 19 0.04480 +2013 20 0.12320 +2013 21 0.07560 +2013 22 0.48440 +2013 23 1.29920 +2013 24 0.11760 +2013 25 0.01960 +2013 26 0.00000 +2013 27 0.00280 +2013 28 0.00000 +2013 29 0.07000 +2013 30 0.00280 +2013 31 0.03586 +2013 32 1.02816 +2013 33 0.79229 +2013 34 25.29340 +2013 35 26.45980 +2013 36 2.29004 +2013 37 0.00107 +2013 38 0.11793 +2013 39 0.07076 +2013 40 0.00214 +2013 41 0.16403 +2013 42 0.16618 +2013 43 0.51783 +2013 44 0.18977 +2013 45 0.00322 +2013 46 0.15546 +2013 47 0.09113 +2013 48 0.42456 +2013 49 0.97455 +2013 50 0.07612 +2013 51 0.00322 +2013 52 0.00214 +2013 53 0.00214 +2013 54 0.00107 +2013 55 0.00214 +2013 56 0.00107 +2013 57 0.03109 +2013 58 0.00322 +2013 59 0.13111 +2013 60 0.11937 +2013 61 0.28374 +2013 62 1.88051 +2013 63 1.23867 +2013 64 1.13887 +2013 65 0.04109 +2013 66 0.00978 +2013 67 0.00000 +2013 68 0.00000 +2013 69 0.00196 +2013 70 0.00196 +2013 71 0.06653 +2013 72 2.45973 +2013 73 1.20540 +2013 74 1.44609 +2013 75 21.10430 +2013 76 19.42730 +2013 77 4.55157 +2013 78 4.47721 +2013 79 0.52443 +2013 80 2.18186 +2013 81 1.87268 +2013 82 0.25439 +2013 83 0.36984 +2013 84 0.10762 +2013 85 0.08806 +2013 86 0.12524 +2013 87 0.23678 +2013 88 0.45203 +2013 89 8.93877 +2013 90 8.08390 +2013 91 0.08783 +2013 92 0.69431 +2013 93 10.30280 +2013 94 3.60748 +2013 95 4.23069 +2013 96 3.96719 +2013 97 0.00105 +2013 98 0.33670 +2013 99 0.21854 +2013 100 0.03764 +2013 101 0.20390 +2013 102 0.20286 +2013 103 0.19763 +2013 104 8.13932 +2013 105 55.11500 +2013 106 35.76740 +2013 107 3.80302 +2013 108 3.14740 +2013 109 25.79510 +2013 110 29.14430 +2013 111 22.36950 +2013 112 9.06263 +2013 113 8.22088 +2013 114 7.31326 +2013 115 0.44231 +2013 116 2.04006 +2013 117 0.41721 +2013 118 0.00105 +2013 119 0.06065 +2013 120 0.09744 +2013 121 0.25628 +2013 122 0.28164 +2013 123 5.19902 +2013 124 21.34470 +2013 125 23.80870 +2013 126 2.09429 +2013 127 0.35105 +2013 128 4.41817 +2013 129 15.48360 +2013 130 11.13480 +2013 131 0.00267 +2013 132 0.00267 +2013 133 0.00133 +2013 134 0.00000 +2013 135 0.00000 +2013 136 21.25120 +2013 137 29.89140 +2013 138 12.74860 +2013 139 7.94736 +2013 140 5.48600 +2013 141 14.05140 +2013 142 13.76840 +2013 143 0.11212 +2013 144 20.46100 +2013 145 37.02450 +2013 146 1.87939 +2013 147 2.88716 +2013 148 0.74882 +2013 149 0.00400 +2013 150 0.00400 +2013 151 0.07996 +2013 152 0.04322 +2013 153 0.01297 +2013 154 11.23300 +2013 155 22.92620 +2013 156 0.03458 +2013 157 0.01081 +2013 158 0.03242 +2013 159 29.69890 +2013 160 26.92200 +2013 161 1.33983 +2013 162 0.80822 +2013 163 0.75636 +2013 164 1.46085 +2013 165 0.51648 +2013 166 33.11980 +2013 167 30.35580 +2013 168 12.04550 +2013 169 16.97480 +2013 170 6.14594 +2013 171 2.84822 +2013 172 0.00000 +2013 173 1.69208 +2013 174 0.69153 +2013 175 0.03674 +2013 176 0.03890 +2013 177 0.00432 +2013 178 0.00216 +2013 179 0.00216 +2013 180 0.08860 +2013 181 0.14207 +2013 182 0.07367 +2013 183 3.52898 +2013 184 6.06171 +2013 185 0.28941 +2013 186 0.71562 +2013 187 0.24029 +2013 188 0.18417 +2013 189 0.76824 +2013 190 11.39380 +2013 191 4.29897 +2013 192 6.34585 +2013 193 4.25513 +2013 194 3.64124 +2013 195 2.17843 +2013 196 0.02105 +2013 197 0.00175 +2013 198 0.00000 +2013 199 0.00526 +2013 200 0.61038 +2013 201 0.47708 +2013 202 0.01052 +2013 203 0.01052 +2013 204 5.09878 +2013 205 2.90632 +2013 206 0.24029 +2013 207 0.00000 +2013 208 0.00000 +2013 209 0.00000 +2013 210 0.00000 +2013 211 0.02280 +2013 212 0.72687 +2013 213 2.36823 +2013 214 1.02598 +2013 215 2.25995 +2013 216 1.34332 +2013 217 0.26802 +2013 218 0.40525 +2013 219 1.92653 +2013 220 0.97345 +2013 221 6.54184 +2013 222 10.09470 +2013 223 2.51832 +2013 224 3.57861 +2013 225 2.63303 +2013 226 0.11150 +2013 227 10.93740 +2013 228 25.07490 +2013 229 10.67470 +2013 230 1.79252 +2013 231 1.86542 +2013 232 10.15370 +2013 233 38.41270 +2013 234 4.79542 +2013 235 2.97931 +2013 236 8.59380 +2013 237 6.55041 +2013 238 0.61323 +2013 239 0.80513 +2013 240 21.51880 +2013 241 34.64750 +2013 242 0.01715 +2013 243 0.44395 +2013 244 0.84888 +2013 245 0.37565 +2013 246 7.31306 +2013 247 9.60357 +2013 248 0.03903 +2013 249 0.83668 +2013 250 1.60019 +2013 251 0.61471 +2013 252 0.13172 +2013 253 3.62970 +2013 254 25.66160 +2013 255 8.76689 +2013 256 12.72590 +2013 257 0.86352 +2013 258 1.98316 +2013 259 0.45615 +2013 260 0.00000 +2013 261 1.96365 +2013 262 21.25860 +2013 263 22.31970 +2013 264 28.38630 +2013 265 1.93681 +2013 266 22.25140 +2013 267 33.77960 +2013 268 2.05878 +2013 269 0.36102 +2013 270 4.36393 +2013 271 2.46370 +2013 272 15.17250 +2013 273 9.93198 +2013 274 0.00000 +2013 275 0.00000 +2013 276 0.06296 +2013 277 0.41430 +2013 278 0.38181 +2013 279 0.01422 +2013 280 6.12925 +2013 281 12.30110 +2013 282 1.37289 +2013 283 12.78450 +2013 284 17.37430 +2013 285 5.47936 +2013 286 0.74737 +2013 287 12.63220 +2013 288 3.31443 +2013 289 2.59549 +2013 290 0.13607 +2013 291 0.07311 +2013 292 0.00000 +2013 293 0.00609 +2013 294 0.13607 +2013 295 2.32538 +2013 296 1.21651 +2013 297 3.76732 +2013 298 3.47893 +2013 299 1.90904 +2013 300 1.38913 +2013 301 0.63973 +2013 302 0.07108 +2013 303 5.54029 +2013 304 6.41964 +2013 305 0.73293 +2013 306 0.00108 +2013 307 0.69281 +2013 308 5.35819 +2013 309 37.84990 +2013 310 25.42920 +2013 311 17.26400 +2013 312 2.76908 +2013 313 0.10192 +2013 314 0.11167 +2013 315 0.15396 +2013 316 0.00108 +2013 317 0.01952 +2013 318 0.02711 +2013 319 0.05204 +2013 320 0.61367 +2013 321 0.82400 +2013 322 11.19990 +2013 323 7.58625 +2013 324 3.88366 +2013 325 3.01629 +2013 326 2.38419 +2013 327 0.11601 +2013 328 0.15721 +2013 329 13.65790 +2013 330 21.92930 +2013 331 46.67440 +2013 332 7.14172 +2013 333 2.75282 +2013 334 3.51069 +2013 335 0.00000 +2013 336 0.20826 +2013 337 15.90960 +2013 338 54.34990 +2013 339 32.97960 +2013 340 3.83919 +2013 341 4.25323 +2013 342 1.44047 +2013 343 0.41528 +2013 344 0.00248 +2013 345 0.14132 +2013 346 0.76238 +2013 347 3.44746 +2013 348 4.39331 +2013 349 2.04294 +2013 350 1.07973 +2013 351 0.20206 +2013 352 0.33718 +2013 353 0.42520 +2013 354 0.00124 +2013 355 0.66817 +2013 356 0.80081 +2013 357 0.09545 +2013 358 4.70942 +2013 359 3.92225 +2013 360 4.31274 +2013 361 2.74086 +2013 362 62.45100 +2013 363 19.90130 +2013 364 4.25819 +2013 365 8.94181 +2014 1 8.94181 +2014 2 0.82435 +2014 3 3.47941 +2014 4 9.27085 +2014 5 5.58316 +2014 6 0.33604 +2014 7 0.74209 +2014 8 6.22724 +2014 9 5.99271 +2014 10 0.24853 +2014 11 0.26078 +2014 12 0.91886 +2014 13 0.91886 +2014 14 0.41830 +2014 15 0.33079 +2014 16 0.57057 +2014 17 0.00175 +2014 18 0.00000 +2014 19 11.22060 +2014 20 18.19870 +2014 21 1.41067 +2014 22 1.03262 +2014 23 0.00350 +2014 24 0.36404 +2014 25 17.85740 +2014 26 18.04640 +2014 27 0.07526 +2014 28 0.00175 +2014 29 0.37454 +2014 30 0.42005 +2014 31 0.01344 +2014 32 0.00215 +2014 33 0.00107 +2014 34 0.30045 +2014 35 0.10301 +2014 36 0.26290 +2014 37 2.36392 +2014 38 34.81920 +2014 39 1.73940 +2014 40 0.52687 +2014 41 5.55193 +2014 42 5.51974 +2014 43 1.24688 +2014 44 0.77903 +2014 45 0.11911 +2014 46 0.02146 +2014 47 0.06546 +2014 48 0.93140 +2014 49 0.56120 +2014 50 0.16632 +2014 51 0.22748 +2014 52 2.33065 +2014 53 1.51943 +2014 54 0.00215 +2014 55 0.00000 +2014 56 0.10087 +2014 57 0.09872 +2014 58 0.00429 +2014 59 0.00227 +2014 60 0.00000 +2014 61 0.88090 +2014 62 0.44215 +2014 63 0.12048 +2014 64 0.12048 +2014 65 0.00114 +2014 66 0.00114 +2014 67 0.06479 +2014 68 0.28075 +2014 69 0.42169 +2014 70 0.13071 +2014 71 0.34895 +2014 72 0.02273 +2014 73 46.73640 +2014 74 47.89360 +2014 75 3.86572 +2014 76 0.28416 +2014 77 0.01137 +2014 78 0.00341 +2014 79 0.27166 +2014 80 1.09686 +2014 81 10.59240 +2014 82 10.37530 +2014 83 0.62970 +2014 84 0.19550 +2014 85 0.00227 +2014 86 0.00227 +2014 87 0.00227 +2014 88 0.00227 +2014 89 0.00114 +2014 90 0.00420 +2014 91 1.22075 +2014 92 3.37876 +2014 93 1.65852 +2014 94 0.19671 +2014 95 0.10800 +2014 96 0.37606 +2014 97 9.56159 +2014 98 13.63270 +2014 99 11.60000 +2014 100 27.71090 +2014 101 10.70330 +2014 102 0.64412 +2014 103 1.10504 +2014 104 1.66817 +2014 105 6.32168 +2014 106 68.67250 +2014 107 48.65650 +2014 108 19.25050 +2014 109 13.47650 +2014 110 4.26202 +2014 111 0.14078 +2014 112 0.01350 +2014 113 1.44832 +2014 114 2.18115 +2014 115 1.54281 +2014 116 0.05978 +2014 117 6.73245 +2014 118 2.95256 +2014 119 0.00000 +2014 120 0.00338 +2014 121 0.00169 +2014 122 0.01859 +2014 123 0.01690 +2014 124 12.25890 +2014 125 12.05440 +2014 126 3.13867 +2014 127 9.38389 +2014 128 7.24750 +2014 129 0.67945 +2014 130 0.03211 +2014 131 0.32113 +2014 132 0.52734 +2014 133 6.03564 +2014 134 3.35332 +2014 135 2.32231 +2014 136 0.00000 +2014 137 0.00000 +2014 138 0.00169 +2014 139 0.07775 +2014 140 0.31099 +2014 141 0.42086 +2014 142 0.30254 +2014 143 4.96575 +2014 144 8.73486 +2014 145 0.56790 +2014 146 0.00169 +2014 147 0.00000 +2014 148 1.37919 +2014 149 12.42620 +2014 150 0.33466 +2014 151 0.11256 +2014 152 3.38860 +2014 153 0.00987 +2014 154 0.00197 +2014 155 0.00987 +2014 156 0.37717 +2014 157 0.39099 +2014 158 2.18798 +2014 159 12.55130 +2014 160 31.22210 +2014 161 51.04620 +2014 162 61.34040 +2014 163 13.03900 +2014 164 0.00197 +2014 165 0.00592 +2014 166 11.31110 +2014 167 18.50300 +2014 168 3.05488 +2014 169 0.99525 +2014 170 0.10071 +2014 171 0.44036 +2014 172 1.60149 +2014 173 0.33175 +2014 174 2.48221 +2014 175 6.79103 +2014 176 24.20800 +2014 177 5.33764 +2014 178 3.52288 +2014 179 0.00197 +2014 180 22.85730 +2014 181 28.18410 +2014 182 8.73578 +2014 183 2.73051 +2014 184 0.72875 +2014 185 1.76192 +2014 186 0.98572 +2014 187 0.00132 +2014 188 0.23325 +2014 189 1.01735 +2014 190 0.72480 +2014 191 2.22710 +2014 192 33.92180 +2014 193 32.32990 +2014 194 1.95036 +2014 195 0.02767 +2014 196 0.07116 +2014 197 0.23721 +2014 198 0.14496 +2014 199 0.04481 +2014 200 1.35867 +2014 201 8.34307 +2014 202 2.57501 +2014 203 0.04085 +2014 204 0.09488 +2014 205 0.10543 +2014 206 0.00527 +2014 207 0.00659 +2014 208 0.00132 +2014 209 2.05579 +2014 210 10.19990 +2014 211 0.78146 +2014 212 0.35650 +2014 213 9.28076 +2014 214 23.52590 +2014 215 13.49880 +2014 216 7.37330 +2014 217 0.49477 +2014 218 1.68257 +2014 219 3.32348 +2014 220 0.34151 +2014 221 0.00333 +2014 222 2.28229 +2014 223 20.67560 +2014 224 4.44464 +2014 225 6.20717 +2014 226 3.56837 +2014 227 0.00000 +2014 228 0.00000 +2014 229 0.00167 +2014 230 8.40283 +2014 231 32.65180 +2014 232 4.33969 +2014 233 0.00333 +2014 234 0.00167 +2014 235 0.00000 +2014 236 0.04331 +2014 237 0.09329 +2014 238 0.15326 +2014 239 0.09329 +2014 240 0.32652 +2014 241 0.31152 +2014 242 0.52143 +2014 243 15.80710 +2014 244 10.49230 +2014 245 1.12776 +2014 246 4.48813 +2014 247 15.34490 +2014 248 13.63430 +2014 249 0.43931 +2014 250 0.00176 +2014 251 0.12413 +2014 252 1.53361 +2014 253 1.73961 +2014 254 10.54950 +2014 255 47.05760 +2014 256 16.32210 +2014 257 1.09254 +2014 258 6.13883 +2014 259 0.85132 +2014 260 2.91579 +2014 261 19.08120 +2014 262 13.40100 +2014 263 7.82122 +2014 264 8.27373 +2014 265 0.50445 +2014 266 0.00088 +2014 267 0.00528 +2014 268 0.00616 +2014 269 0.85572 +2014 270 11.86560 +2014 271 3.84370 +2014 272 0.01321 +2014 273 0.01424 +2014 274 2.86096 +2014 275 10.44200 +2014 276 7.70259 +2014 277 2.06767 +2014 278 3.23074 +2014 279 1.00569 +2014 280 1.15283 +2014 281 2.57691 +2014 282 0.16761 +2014 283 0.21496 +2014 284 0.06270 +2014 285 0.21240 +2014 286 0.24694 +2014 287 0.22135 +2014 288 0.04350 +2014 289 0.55658 +2014 290 6.66107 +2014 291 25.06800 +2014 292 1.99218 +2014 293 0.19704 +2014 294 6.64444 +2014 295 11.81750 +2014 296 5.75391 +2014 297 0.06781 +2014 298 0.00256 +2014 299 7.40958 +2014 300 13.44500 +2014 301 6.30409 +2014 302 6.31817 +2014 303 1.59298 +2014 304 0.90699 +2014 305 0.28787 +2014 306 10.49740 +2014 307 0.91290 +2014 308 10.13660 +2014 309 15.58840 +2014 310 4.50733 +2014 311 0.14591 +2014 312 0.16562 +2014 313 0.08478 +2014 314 7.71531 +2014 315 17.31360 +2014 316 7.02718 +2014 317 1.23626 +2014 318 2.36803 +2014 319 1.59512 +2014 320 17.68430 +2014 321 10.83850 +2014 322 0.54814 +2014 323 0.57377 +2014 324 0.00197 +2014 325 1.56357 +2014 326 1.49850 +2014 327 0.52448 +2014 328 0.41603 +2014 329 1.34076 +2014 330 0.08676 +2014 331 7.32688 +2014 332 3.07390 +2014 333 0.77685 +2014 334 3.06990 +2014 335 1.73390 +2014 336 0.00126 +2014 337 0.79455 +2014 338 0.84618 +2014 339 1.04639 +2014 340 0.04533 +2014 341 1.20630 +2014 342 5.78094 +2014 343 7.64579 +2014 344 20.19490 +2014 345 9.50058 +2014 346 1.03253 +2014 347 29.50530 +2014 348 8.55241 +2014 349 0.02015 +2014 350 39.53480 +2014 351 33.98300 +2014 352 3.44514 +2014 353 10.82150 +2014 354 18.69520 +2014 355 0.27324 +2014 356 0.60693 +2014 357 2.10285 +2014 358 1.85353 +2014 359 0.78699 +2014 360 0.45079 +2014 361 0.66611 +2014 362 2.39246 +2014 363 3.56602 +2014 364 1.81197 +2014 365 11.49090 +2015 1 0.78978 +2015 2 1.67604 +2015 3 2.90300 +2015 4 0.75166 +2015 5 0.00357 +2015 6 0.39429 +2015 7 5.66067 +2015 8 8.70781 +2015 9 2.16921 +2015 10 0.84100 +2015 11 0.00000 +2015 12 2.69335 +2015 13 3.15554 +2015 14 0.58489 +2015 15 0.71711 +2015 16 1.76062 +2015 17 0.90175 +2015 18 0.00119 +2015 19 0.98276 +2015 20 0.98514 +2015 21 0.13103 +2015 22 1.40921 +2015 23 0.65398 +2015 24 0.12865 +2015 25 0.05956 +2015 26 0.04765 +2015 27 0.76953 +2015 28 0.76834 +2015 29 1.82614 +2015 30 3.90362 +2015 31 9.93748 +2015 32 13.34500 +2015 33 1.39946 +2015 34 2.61055 +2015 35 2.67817 +2015 36 0.75829 +2015 37 0.00121 +2015 38 0.00121 +2015 39 0.59287 +2015 40 0.41899 +2015 41 0.00000 +2015 42 0.02898 +2015 43 0.68464 +2015 44 0.45642 +2015 45 0.16784 +2015 46 1.18091 +2015 47 4.30101 +2015 48 0.90681 +2015 49 0.02053 +2015 50 0.00241 +2015 51 1.49123 +2015 52 7.58171 +2015 53 6.73286 +2015 54 3.29036 +2015 55 1.83294 +2015 56 4.18147 +2015 57 6.16172 +2015 58 1.56247 +2015 59 0.00397 +2015 60 0.02801 +2015 61 0.21476 +2015 62 0.66606 +2015 63 2.08066 +2015 64 6.27778 +2015 65 7.27375 +2015 66 5.64284 +2015 67 0.00156 +2015 68 0.02957 +2015 69 1.13293 +2015 70 19.94450 +2015 71 14.25180 +2015 72 2.91324 +2015 73 12.25680 +2015 74 35.36350 +2015 75 3.21825 +2015 76 2.20205 +2015 77 0.50110 +2015 78 0.57580 +2015 79 0.04357 +2015 80 0.18208 +2015 81 3.20580 +2015 82 2.26741 +2015 83 1.13915 +2015 84 2.39035 +2015 85 1.44261 +2015 86 1.51731 +2015 87 7.74996 +2015 88 2.64090 +2015 89 0.14784 +2015 90 0.15569 +2015 91 2.55570 +2015 92 0.68152 +2015 93 0.32313 +2015 94 1.29547 +2015 95 8.43086 +2015 96 2.87883 +2015 97 2.35007 +2015 98 15.50160 +2015 99 11.27740 +2015 100 4.65313 +2015 101 0.91946 +2015 102 15.82480 +2015 103 6.95913 +2015 104 0.50526 +2015 105 0.28788 +2015 106 0.01763 +2015 107 32.40740 +2015 108 19.99910 +2015 109 1.50992 +2015 110 0.44357 +2015 111 1.26022 +2015 112 1.16328 +2015 113 0.13219 +2015 114 0.59045 +2015 115 0.71090 +2015 116 43.25300 +2015 117 35.62410 +2015 118 3.28716 +2015 119 1.68030 +2015 120 0.05326 +2015 121 0.00000 +2015 122 0.00000 +2015 123 0.00852 +2015 124 0.10225 +2015 125 1.09497 +2015 126 5.13825 +2015 127 24.34060 +2015 128 2.24958 +2015 129 0.00426 +2015 130 1.78092 +2015 131 14.20470 +2015 132 7.66264 +2015 133 18.02650 +2015 134 38.15340 +2015 135 2.22615 +2015 136 0.02769 +2015 137 0.09160 +2015 138 0.10438 +2015 139 0.18107 +2015 140 2.75020 +2015 141 5.60052 +2015 142 49.69320 +2015 143 41.43190 +2015 144 0.96715 +2015 145 0.63696 +2015 146 0.26842 +2015 147 0.00000 +2015 148 0.00000 +2015 149 0.06817 +2015 150 0.60713 +2015 151 16.76050 +2015 152 33.44290 +2015 153 21.92970 +2015 154 9.66584 +2015 155 1.88394 +2015 156 5.94183 +2015 157 5.29842 +2015 158 0.02437 +2015 159 0.32658 +2015 160 1.08698 +2015 161 4.18950 +2015 162 2.46642 +2015 163 2.41280 +2015 164 1.20640 +2015 165 1.13085 +2015 166 0.55811 +2015 167 0.00000 +2015 168 0.29734 +2015 169 0.82376 +2015 170 19.76300 +2015 171 17.77190 +2015 172 0.13892 +2015 173 0.00244 +2015 174 0.00975 +2015 175 0.00000 +2015 176 0.20472 +2015 177 0.30708 +2015 178 0.04143 +2015 179 0.04631 +2015 180 0.05606 +2015 181 0.13616 +2015 182 0.01541 +2015 183 2.31342 +2015 184 18.02310 +2015 185 7.78034 +2015 186 0.37123 +2015 187 15.54660 +2015 188 14.29160 +2015 189 0.53436 +2015 190 0.13359 +2015 191 0.00257 +2015 192 0.00257 +2015 193 0.00257 +2015 194 0.20424 +2015 195 21.61980 +2015 196 32.86830 +2015 197 0.05652 +2015 198 19.22670 +2015 199 13.34490 +2015 200 0.62556 +2015 201 0.63841 +2015 202 0.00128 +2015 203 0.00128 +2015 204 0.00128 +2015 205 0.00128 +2015 206 3.08670 +2015 207 14.19400 +2015 208 14.59600 +2015 209 5.01991 +2015 210 0.09762 +2015 211 0.06551 +2015 212 0.23310 +2015 213 1.46123 +2015 214 0.42977 +2015 215 2.97782 +2015 216 21.94900 +2015 217 47.11040 +2015 218 4.63718 +2015 219 9.28309 +2015 220 6.02556 +2015 221 3.19343 +2015 222 0.66870 +2015 223 0.00000 +2015 224 0.00000 +2015 225 15.21250 +2015 226 18.07670 +2015 227 1.03145 +2015 228 0.39335 +2015 229 3.83882 +2015 230 19.57580 +2015 231 8.64499 +2015 232 0.32051 +2015 233 0.23018 +2015 234 2.37322 +2015 235 3.10456 +2015 236 16.55570 +2015 237 6.58499 +2015 238 0.00000 +2015 239 0.00146 +2015 240 0.28700 +2015 241 6.06053 +2015 242 14.89050 +2015 243 53.60990 +2015 244 30.31550 +2015 245 13.73290 +2015 246 2.58560 +2015 247 1.08592 +2015 248 2.53900 +2015 249 0.55779 +2015 250 0.00424 +2015 251 0.10591 +2015 252 13.24430 +2015 253 13.31070 +2015 254 5.00598 +2015 255 0.00282 +2015 256 0.27960 +2015 257 0.24147 +2015 258 0.03389 +2015 259 0.79361 +2015 260 6.62145 +2015 261 4.22931 +2015 262 43.26320 +2015 263 36.34520 +2015 264 9.43298 +2015 265 11.36480 +2015 266 17.92690 +2015 267 7.31056 +2015 268 0.38410 +2015 269 1.07886 +2015 270 9.62080 +2015 271 4.41147 +2015 272 1.01673 +2015 273 1.02997 +2015 274 17.33540 +2015 275 13.64070 +2015 276 0.65060 +2015 277 0.08980 +2015 278 0.00000 +2015 279 0.00183 +2015 280 3.08624 +2015 281 2.46130 +2015 282 0.00367 +2015 283 0.00183 +2015 284 0.14845 +2015 285 3.17971 +2015 286 9.10111 +2015 287 1.20041 +2015 288 0.01649 +2015 289 0.00183 +2015 290 1.01714 +2015 291 0.55530 +2015 292 0.05865 +2015 293 0.05681 +2015 294 1.74105 +2015 295 1.97380 +2015 296 7.75409 +2015 297 2.62074 +2015 298 2.96162 +2015 299 2.06544 +2015 300 0.49116 +2015 301 5.41375 +2015 302 6.61783 +2015 303 0.05681 +2015 304 0.01717 +2015 305 0.00156 +2015 306 0.46361 +2015 307 25.00060 +2015 308 10.27900 +2015 309 0.00312 +2015 310 0.00156 +2015 311 0.00000 +2015 312 0.20293 +2015 313 0.54322 +2015 314 0.01093 +2015 315 6.30791 +2015 316 0.41990 +2015 317 0.00624 +2015 318 4.49093 +2015 319 19.17970 +2015 320 7.37406 +2015 321 0.14361 +2015 322 0.46361 +2015 323 6.07533 +2015 324 17.12860 +2015 325 23.14620 +2015 326 0.01249 +2015 327 0.00000 +2015 328 0.00000 +2015 329 0.16078 +2015 330 5.14655 +2015 331 31.82370 +2015 332 9.09738 +2015 333 0.13893 +2015 334 2.62436 +2015 335 0.38937 +2015 336 0.38353 +2015 337 1.46987 +2015 338 2.01499 +2015 339 0.85467 +2015 340 4.68607 +2015 341 0.63273 +2015 342 0.03115 +2015 343 0.00389 +2015 344 3.73211 +2015 345 8.43376 +2015 346 5.32075 +2015 347 0.00195 +2015 348 0.01752 +2015 349 4.82625 +2015 350 7.17999 +2015 351 4.52838 +2015 352 1.09608 +2015 353 0.00195 +2015 354 0.00000 +2015 355 0.01557 +2015 356 0.74370 +2015 357 1.70934 +2015 358 3.54327 +2015 359 0.42831 +2015 360 0.16938 +2015 361 0.74175 +2015 362 0.48477 +2015 363 1.14864 +2015 364 3.50823 +2015 365 3.63000 +2016 1 28.53300 +2016 2 32.98360 +2016 3 6.89673 +2016 4 0.00261 +2016 5 0.01045 +2016 6 0.28747 +2016 7 16.06970 +2016 8 10.52410 +2016 9 0.01045 +2016 10 1.72484 +2016 11 6.50734 +2016 12 4.14745 +2016 13 0.84413 +2016 14 0.83890 +2016 15 0.00784 +2016 16 0.59847 +2016 17 24.99450 +2016 18 35.11090 +2016 19 0.88594 +2016 20 0.01568 +2016 21 0.05749 +2016 22 0.21691 +2016 23 0.99831 +2016 24 1.82415 +2016 25 2.01492 +2016 26 10.50060 +2016 27 14.01040 +2016 28 8.55101 +2016 29 11.89610 +2016 30 16.36500 +2016 31 15.35380 +2016 32 1.53648 +2016 33 1.25431 +2016 34 0.72746 +2016 35 13.66520 +2016 36 36.27140 +2016 37 13.51090 +2016 38 2.05892 +2016 39 2.29259 +2016 40 2.60782 +2016 41 3.11484 +2016 42 1.23227 +2016 43 1.99279 +2016 44 1.12205 +2016 45 1.09119 +2016 46 4.08919 +2016 47 11.66800 +2016 48 43.31230 +2016 49 40.76400 +2016 50 1.26313 +2016 51 0.00661 +2016 52 0.76493 +2016 53 1.67315 +2016 54 0.80241 +2016 55 0.00220 +2016 56 0.00441 +2016 57 0.09920 +2016 58 4.46835 +2016 59 21.76860 +2016 60 18.26450 +2016 61 1.90153 +2016 62 0.71614 +2016 63 0.11017 +2016 64 0.15302 +2016 65 0.00000 +2016 66 0.12650 +2016 67 0.07141 +2016 68 1.11807 +2016 69 1.65262 +2016 70 1.51592 +2016 71 0.25095 +2016 72 0.00612 +2016 73 2.25858 +2016 74 2.56870 +2016 75 17.16480 +2016 76 19.92530 +2016 77 3.72758 +2016 78 2.32999 +2016 79 2.66460 +2016 80 3.05837 +2016 81 3.35421 +2016 82 6.36157 +2016 83 85.02840 +2016 84 28.87600 +2016 85 8.48142 +2016 86 6.23507 +2016 87 0.69573 +2016 88 0.00204 +2016 89 0.00000 +2016 90 0.08161 +2016 91 3.08747 +2016 92 14.11980 +2016 93 4.49976 +2016 94 3.53531 +2016 95 5.05459 +2016 96 0.50897 +2016 97 0.10699 +2016 98 0.60832 +2016 99 1.59876 +2016 100 3.33355 +2016 101 4.02900 +2016 102 2.78178 +2016 103 4.30106 +2016 104 0.05197 +2016 105 0.00306 +2016 106 0.10393 +2016 107 13.42750 +2016 108 14.60130 +2016 109 0.03363 +2016 110 0.29958 +2016 111 0.94458 +2016 112 1.50553 +2016 113 0.44478 +2016 114 2.09245 +2016 115 0.53649 +2016 116 0.00764 +2016 117 0.43714 +2016 118 0.25525 +2016 119 0.00306 +2016 120 0.00153 +2016 121 0.50759 +2016 122 1.40024 +2016 123 0.78286 +2016 124 0.04296 +2016 125 0.78922 +2016 126 0.86719 +2016 127 0.57760 +2016 128 0.00000 +2016 129 0.00477 +2016 130 0.02546 +2016 131 4.90878 +2016 132 6.11967 +2016 133 0.99130 +2016 134 0.47735 +2016 135 0.08751 +2016 136 5.90804 +2016 137 5.91282 +2016 138 5.29226 +2016 139 3.08529 +2016 140 4.95015 +2016 141 19.99310 +2016 142 10.59880 +2016 143 4.46803 +2016 144 14.40810 +2016 145 14.67860 +2016 146 5.00584 +2016 147 2.77979 +2016 148 18.96370 +2016 149 13.04770 +2016 150 8.05613 +2016 151 1.31272 +2016 152 0.74734 +2016 153 0.19490 +2016 154 0.00147 +2016 155 0.00147 +2016 156 0.00147 +2016 157 0.00147 +2016 158 0.00147 +2016 159 0.38393 +2016 160 8.74539 +2016 161 20.99890 +2016 162 5.51130 +2016 163 2.05739 +2016 164 2.06765 +2016 165 0.00586 +2016 166 0.08499 +2016 167 0.19343 +2016 168 0.07034 +2016 169 0.04396 +2016 170 0.00293 +2016 171 0.01319 +2016 172 1.43461 +2016 173 25.04630 +2016 174 55.78700 +2016 175 5.56112 +2016 176 10.05540 +2016 177 19.81780 +2016 178 11.32890 +2016 179 3.79241 +2016 180 30.22490 +2016 181 26.33440 +2016 182 0.81733 +2016 183 0.00194 +2016 184 0.00194 +2016 185 0.00000 +2016 186 0.00000 +2016 187 0.00194 +2016 188 4.63217 +2016 189 24.12960 +2016 190 1.57253 +2016 191 0.00000 +2016 192 0.00000 +2016 193 0.00000 +2016 194 1.92587 +2016 195 26.01860 +2016 196 4.18371 +2016 197 3.18971 +2016 198 0.82121 +2016 199 0.78044 +2016 200 8.78870 +2016 201 9.69339 +2016 202 0.04465 +2016 203 2.98975 +2016 204 22.71430 +2016 205 15.96020 +2016 206 2.22872 +2016 207 5.89020 +2016 208 0.74356 +2016 209 12.25020 +2016 210 13.35100 +2016 211 6.15811 +2016 212 9.37694 +2016 213 5.95147 +2016 214 3.99043 +2016 215 8.34908 +2016 216 18.41690 +2016 217 12.62500 +2016 218 11.60310 +2016 219 6.91459 +2016 220 0.05157 +2016 221 0.45458 +2016 222 1.68397 +2016 223 4.86480 +2016 224 1.30496 +2016 225 6.00304 +2016 226 1.56403 +2016 227 0.00120 +2016 228 0.00240 +2016 229 0.00120 +2016 230 0.00120 +2016 231 0.00600 +2016 232 0.23628 +2016 233 0.15952 +2016 234 1.03749 +2016 235 0.57812 +2016 236 8.47142 +2016 237 33.23560 +2016 238 29.47550 +2016 239 4.71847 +2016 240 0.01439 +2016 241 4.71128 +2016 242 2.95534 +2016 243 0.14273 +2016 244 0.00623 +2016 245 0.45623 +2016 246 2.13168 +2016 247 6.68309 +2016 248 7.03344 +2016 249 0.16661 +2016 250 1.53531 +2016 251 1.86230 +2016 252 0.65554 +2016 253 0.03737 +2016 254 0.00156 +2016 255 0.00934 +2016 256 0.06228 +2016 257 3.80868 +2016 258 11.47900 +2016 259 3.36179 +2016 260 25.26870 +2016 261 27.64170 +2016 262 4.07183 +2016 263 2.84639 +2016 264 31.52050 +2016 265 34.70320 +2016 266 9.77706 +2016 267 8.45508 +2016 268 18.57470 +2016 269 16.66880 +2016 270 7.63916 +2016 271 9.08259 +2016 272 25.86510 +2016 273 11.76390 +2016 274 6.32879 +2016 275 15.77960 +2016 276 9.07833 +2016 277 5.76404 +2016 278 10.89970 +2016 279 21.05000 +2016 280 14.70310 +2016 281 2.77225 +2016 282 6.30608 +2016 283 4.77536 +2016 284 1.50801 +2016 285 3.31277 +2016 286 0.57837 +2016 287 6.38935 +2016 288 11.12080 +2016 289 3.91840 +2016 290 0.01060 +2016 291 0.00000 +2016 292 0.20894 +2016 293 4.11825 +2016 294 6.36967 +2016 295 6.71336 +2016 296 0.30584 +2016 297 0.68436 +2016 298 9.77934 +2016 299 10.49850 +2016 300 2.38162 +2016 301 0.31644 +2016 302 0.79943 +2016 303 3.14623 +2016 304 3.59893 +2016 305 4.13245 +2016 306 12.04640 +2016 307 3.96683 +2016 308 0.27799 +2016 309 1.58910 +2016 310 15.83180 +2016 311 51.63590 +2016 312 8.60203 +2016 313 0.00197 +2016 314 0.02366 +2016 315 2.26141 +2016 316 37.63960 +2016 317 1.45109 +2016 318 0.79258 +2016 319 18.28060 +2016 320 16.61460 +2016 321 15.61890 +2016 322 6.44906 +2016 323 2.24761 +2016 324 1.66599 +2016 325 0.00000 +2016 326 0.00394 +2016 327 0.00394 +2016 328 0.00394 +2016 329 11.50420 +2016 330 10.26610 +2016 331 5.20105 +2016 332 4.00627 +2016 333 0.10252 +2016 334 0.21885 +2016 335 6.20427 +2016 336 8.59623 +2016 337 1.73185 +2016 338 1.15148 +2016 339 7.26303 +2016 340 10.13340 +2016 341 3.81972 +2016 342 13.36530 +2016 343 8.55914 +2016 344 9.47143 +2016 345 5.04908 +2016 346 0.98274 +2016 347 0.05377 +2016 348 2.64785 +2016 349 4.15348 +2016 350 1.80602 +2016 351 0.00185 +2016 352 0.01113 +2016 353 5.75369 +2016 354 5.75369 +2016 355 0.00371 +2016 356 3.22822 +2016 357 9.99247 +2016 358 0.02596 +2016 359 0.00742 +2016 360 0.56925 +2016 361 0.58594 +2016 362 0.03152 +2016 363 0.16503 +2016 364 0.23920 +2016 365 0.25588 +2016 366 2.02025 +2017 1 5.22914 +2017 2 13.75000 +2017 3 1.85068 +2017 4 0.00000 +2017 5 0.00404 +2017 6 0.00404 +2017 7 0.00404 +2017 8 0.07064 +2017 9 0.37942 +2017 10 0.00605 +2017 11 0.02624 +2017 12 3.35222 +2017 13 0.00202 +2017 14 2.70034 +2017 15 1.70134 +2017 16 0.00000 +2017 17 0.01009 +2017 18 3.14838 +2017 19 3.09187 +2017 20 4.75890 +2017 21 27.97220 +2017 22 2.12516 +2017 23 0.22806 +2017 24 0.81939 +2017 25 0.71242 +2017 26 0.00000 +2017 27 0.00000 +2017 28 0.05853 +2017 29 0.04440 +2017 30 0.11907 +2017 31 0.10494 +2017 32 0.66285 +2017 33 2.03226 +2017 34 0.00728 +2017 35 0.00364 +2017 36 0.00182 +2017 37 0.34417 +2017 38 3.59471 +2017 39 3.39439 +2017 40 0.47165 +2017 41 0.24038 +2017 42 0.87591 +2017 43 3.38893 +2017 44 1.04345 +2017 45 0.25130 +2017 46 37.16710 +2017 47 102.36500 +2017 48 39.55450 +2017 49 13.90720 +2017 50 2.09236 +2017 51 1.17092 +2017 52 1.27290 +2017 53 0.93236 +2017 54 0.30411 +2017 55 0.84860 +2017 56 0.71930 +2017 57 1.70994 +2017 58 7.95060 +2017 59 9.04061 +2017 60 1.64272 +2017 61 0.19184 +2017 62 0.39819 +2017 63 0.17572 +2017 64 0.00000 +2017 65 30.15900 +2017 66 93.07570 +2017 67 24.51830 +2017 68 24.36680 +2017 69 72.82790 +2017 70 22.52580 +2017 71 5.25219 +2017 72 0.02902 +2017 73 0.00645 +2017 74 0.00161 +2017 75 0.03708 +2017 76 0.09673 +2017 77 0.00161 +2017 78 0.00645 +2017 79 0.00322 +2017 80 0.43043 +2017 81 1.50247 +2017 82 3.42408 +2017 83 0.87698 +2017 84 6.61925 +2017 85 29.69800 +2017 86 12.01980 +2017 87 56.72790 +2017 88 24.45060 +2017 89 2.87114 +2017 90 0.00175 +2017 91 0.41206 +2017 92 4.77355 +2017 93 44.44430 +2017 94 130.73000 +2017 95 34.78370 +2017 96 0.43650 +2017 97 0.05936 +2017 98 0.02095 +2017 99 0.63904 +2017 100 4.33531 +2017 101 45.65080 +2017 102 112.28000 +2017 103 56.42540 +2017 104 7.60032 +2017 105 17.73760 +2017 106 22.00480 +2017 107 2.12662 +2017 108 1.44394 +2017 109 0.34920 +2017 110 0.00698 +2017 111 0.00349 +2017 112 0.24095 +2017 113 0.70888 +2017 114 0.40507 +2017 115 0.01397 +2017 116 0.00349 +2017 117 0.11349 +2017 118 21.39190 +2017 119 44.18590 +2017 120 1.63610 +2017 121 0.00328 +2017 122 0.04913 +2017 123 3.52113 +2017 124 0.06551 +2017 125 0.00000 +2017 126 0.00164 +2017 127 0.01638 +2017 128 0.58467 +2017 129 1.10711 +2017 130 11.64270 +2017 131 61.82130 +2017 132 16.51170 +2017 133 0.00164 +2017 134 0.02948 +2017 135 0.30134 +2017 136 25.54540 +2017 137 11.00720 +2017 138 0.52080 +2017 139 3.09532 +2017 140 1.12840 +2017 141 0.00000 +2017 142 0.06878 +2017 143 4.00918 +2017 144 0.82378 +2017 145 0.85162 +2017 146 34.63320 +2017 147 16.39540 +2017 148 6.50345 +2017 149 1.07272 +2017 150 1.12185 +2017 151 0.10252 +2017 152 0.40104 +2017 153 0.36924 +2017 154 0.00177 +2017 155 5.69941 +2017 156 8.04030 +2017 157 0.21907 +2017 158 0.00177 +2017 159 0.00000 +2017 160 0.12367 +2017 161 0.12544 +2017 162 0.04770 +2017 163 2.57057 +2017 164 3.10058 +2017 165 0.00530 +2017 166 0.19434 +2017 167 1.61301 +2017 168 4.24187 +2017 169 1.98048 +2017 170 0.01060 +2017 171 0.23144 +2017 172 32.87140 +2017 173 48.99620 +2017 174 18.03110 +2017 175 1.81265 +2017 176 0.65368 +2017 177 0.04417 +2017 178 0.00000 +2017 179 0.00177 +2017 180 0.00707 +2017 181 12.39540 +2017 182 45.49250 +2017 183 6.09460 +2017 184 3.72368 +2017 185 0.07777 +2017 186 11.19090 +2017 187 11.27950 +2017 188 2.51742 +2017 189 12.03550 +2017 190 1.83200 +2017 191 0.32915 +2017 192 1.94051 +2017 193 2.72992 +2017 194 14.72830 +2017 195 3.72910 +2017 196 0.00362 +2017 197 0.13925 +2017 198 0.64021 +2017 199 0.74871 +2017 200 30.53090 +2017 201 42.35660 +2017 202 9.66275 +2017 203 2.48848 +2017 204 0.29478 +2017 205 0.52989 +2017 206 0.16457 +2017 207 6.39120 +2017 208 6.93374 +2017 209 0.60223 +2017 210 0.00181 +2017 211 0.00000 +2017 212 1.81751 +2017 213 3.10863 +2017 214 0.98340 +2017 215 0.00131 +2017 216 0.00000 +2017 217 1.32254 +2017 218 6.34559 +2017 219 3.69657 +2017 220 32.94440 +2017 221 24.14620 +2017 222 4.06060 +2017 223 2.25749 +2017 224 3.50670 +2017 225 10.94700 +2017 226 9.72397 +2017 227 5.31374 +2017 228 6.36392 +2017 229 3.69003 +2017 230 16.73340 +2017 231 14.95520 +2017 232 4.97067 +2017 233 1.04363 +2017 234 0.69139 +2017 235 0.19249 +2017 236 0.60104 +2017 237 2.66211 +2017 238 4.89734 +2017 239 34.97930 +2017 240 21.20130 +2017 241 5.34648 +2017 242 11.26650 +2017 243 8.34747 +2017 244 27.21610 +2017 245 11.19930 +2017 246 1.10617 +2017 247 1.76584 +2017 248 11.65420 +2017 249 15.43940 +2017 250 8.97693 +2017 251 13.33780 +2017 252 5.34285 +2017 253 4.00168 +2017 254 0.89299 +2017 255 1.23206 +2017 256 5.29753 +2017 257 0.74192 +2017 258 16.51870 +2017 259 11.91440 +2017 260 13.55100 +2017 261 3.41754 +2017 262 0.30382 +2017 263 13.25730 +2017 264 10.27610 +2017 265 0.86446 +2017 266 0.86614 +2017 267 0.56232 +2017 268 15.88920 +2017 269 35.11380 +2017 270 5.87495 +2017 271 4.14604 +2017 272 3.93286 +2017 273 15.42250 +2017 274 8.45798 +2017 275 0.47184 +2017 276 0.11048 +2017 277 2.66205 +2017 278 6.12089 +2017 279 6.61482 +2017 280 34.83540 +2017 281 29.43460 +2017 282 11.64130 +2017 283 7.48701 +2017 284 0.34835 +2017 285 0.39255 +2017 286 0.50823 +2017 287 0.17288 +2017 288 0.00910 +2017 289 0.01170 +2017 290 0.46274 +2017 291 0.67201 +2017 292 1.11395 +2017 293 1.17634 +2017 294 2.26040 +2017 295 22.62740 +2017 296 11.67500 +2017 297 0.14688 +2017 298 1.54290 +2017 299 19.19460 +2017 300 22.50260 +2017 301 19.17770 +2017 302 3.28986 +2017 303 1.55719 +2017 304 1.50591 +2017 305 3.10066 +2017 306 9.98607 +2017 307 17.03590 +2017 308 6.03695 +2017 309 0.83069 +2017 310 0.06071 +2017 311 16.88630 +2017 312 0.00000 +2017 313 0.29763 +2017 314 2.13374 +2017 315 1.97826 +2017 316 3.61003 +2017 317 10.28670 +2017 318 10.84930 +2017 319 7.28373 +2017 320 1.90867 +2017 321 3.49157 +2017 322 5.14703 +2017 323 0.02961 +2017 324 0.67225 +2017 325 0.73444 +2017 326 0.07404 +2017 327 0.86771 +2017 328 1.66731 +2017 329 1.78280 +2017 330 6.31681 +2017 331 9.98755 +2017 332 10.93520 +2017 333 17.50080 +2017 334 12.42210 +2017 335 5.43488 +2017 336 4.22732 +2017 337 0.50070 +2017 338 1.02738 +2017 339 0.14380 +2017 340 0.44352 +2017 341 1.32710 +2017 342 1.18850 +2017 343 1.16771 +2017 344 5.50244 +2017 345 4.92552 +2017 346 0.00347 +2017 347 3.50140 +2017 348 0.06584 +2017 349 0.03292 +2017 350 1.34096 +2017 351 8.95014 +2017 352 8.29351 +2017 353 1.98892 +2017 354 0.00000 +2017 355 1.71518 +2017 356 6.56967 +2017 357 1.75676 +2017 358 0.99792 +2017 359 11.48480 +2017 360 3.85483 +2017 361 1.80701 +2017 362 0.72592 +2017 363 0.37595 +2017 364 0.09875 +2017 365 7.77680 +2018 1 14.30590 +2018 2 18.83820 +2018 3 62.94460 +2018 4 96.23050 +2018 5 21.49670 +2018 6 23.58560 +2018 7 1.22170 +2018 8 0.49860 +2018 9 0.81289 +2018 10 0.15832 +2018 11 1.25478 +2018 12 5.76348 +2018 13 4.18496 +2018 14 3.32481 +2018 15 4.19914 +2018 16 2.83802 +2018 17 18.94220 +2018 18 15.75680 +2018 19 1.19334 +2018 20 1.27368 +2018 21 14.16180 +2018 22 22.94290 +2018 23 8.33448 +2018 24 0.22449 +2018 25 9.18754 +2018 26 8.85199 +2018 27 4.40236 +2018 28 3.98174 +2018 29 2.60172 +2018 30 0.39463 +2018 31 41.31200 +2018 32 53.92890 +2018 33 2.16747 +2018 34 2.23755 +2018 35 21.59710 +2018 36 13.60800 +2018 37 1.46667 +2018 38 1.02116 +2018 39 23.05880 +2018 40 23.73950 +2018 41 47.14370 +2018 42 70.41020 +2018 43 30.16690 +2018 44 24.85580 +2018 45 19.52470 +2018 46 0.00250 +2018 47 1.64688 +2018 48 1.74699 +2018 49 8.86760 +2018 50 13.90330 +2018 51 3.81184 +2018 52 2.52037 +2018 53 2.85075 +2018 54 1.92219 +2018 55 0.65825 +2018 56 3.12356 +2018 57 3.35132 +2018 58 0.74835 +2018 59 1.79858 +2018 60 4.63862 +2018 61 2.35507 +2018 62 0.93331 +2018 63 0.34890 +2018 64 0.66291 +2018 65 12.97730 +2018 66 12.41910 +2018 67 5.35735 +2018 68 0.05757 +2018 69 0.03315 +2018 70 30.45020 +2018 71 33.30240 +2018 72 0.30529 +2018 73 0.04710 +2018 74 1.19324 +2018 75 0.87748 +2018 76 0.00523 +2018 77 0.09246 +2018 78 1.12171 +2018 79 2.02885 +2018 80 3.47853 +2018 81 4.20424 +2018 82 10.02390 +2018 83 20.29900 +2018 84 5.26838 +2018 85 1.31186 +2018 86 5.16371 +2018 87 8.24798 +2018 88 2.24168 +2018 89 0.02093 +2018 90 0.05746 +2018 91 0.20343 +2018 92 0.00000 +2018 93 0.98158 +2018 94 0.56619 +2018 95 0.82794 +2018 96 0.60744 +2018 97 1.97454 +2018 98 2.12249 +2018 99 17.88610 +2018 100 24.91930 +2018 101 1.69002 +2018 102 4.10414 +2018 103 22.68300 +2018 104 5.66897 +2018 105 24.22790 +2018 106 5.63483 +2018 107 2.95754 +2018 108 0.16929 +2018 109 0.12376 +2018 110 1.19639 +2018 111 0.86208 +2018 112 0.01992 +2018 113 0.32293 +2018 114 0.04979 +2018 115 0.00854 +2018 116 0.47656 +2018 117 41.96030 +2018 118 90.11460 +2018 119 27.67910 +2018 120 1.29638 +2018 121 0.11572 +2018 122 0.00087 +2018 123 0.00174 +2018 124 0.04089 +2018 125 1.03972 +2018 126 0.32888 +2018 127 0.00000 +2018 128 0.00174 +2018 129 0.52290 +2018 130 4.43729 +2018 131 21.44770 +2018 132 28.85890 +2018 133 3.50633 +2018 134 4.69569 +2018 135 10.64080 +2018 136 4.93148 +2018 137 0.42981 +2018 138 2.29782 +2018 139 2.65715 +2018 140 4.66089 +2018 141 6.12345 +2018 142 12.84900 +2018 143 3.18440 +2018 144 14.47770 +2018 145 2.67803 +2018 146 0.99969 +2018 147 0.09745 +2018 148 0.00087 +2018 149 0.00087 +2018 150 0.00174 +2018 151 0.62325 +2018 152 1.35542 +2018 153 25.30520 +2018 154 19.09540 +2018 155 18.88510 +2018 156 7.06755 +2018 157 9.89184 +2018 158 0.60812 +2018 159 0.00151 +2018 160 0.00303 +2018 161 9.10673 +2018 162 25.35060 +2018 163 11.56950 +2018 164 1.30096 +2018 165 0.06354 +2018 166 1.33273 +2018 167 3.11474 +2018 168 13.41350 +2018 169 12.45900 +2018 170 0.24507 +2018 171 0.00000 +2018 172 0.00000 +2018 173 0.02118 +2018 174 1.44467 +2018 175 7.36404 +2018 176 1.96808 +2018 177 0.89101 +2018 178 0.00756 +2018 179 0.00908 +2018 180 0.00454 +2018 181 9.75944 +2018 182 10.03380 +2018 183 0.02041 +2018 184 0.00227 +2018 185 0.00000 +2018 186 0.00000 +2018 187 0.19047 +2018 188 7.24475 +2018 189 27.85890 +2018 190 11.82520 +2018 191 1.48296 +2018 192 0.10431 +2018 193 10.97480 +2018 194 11.02930 +2018 195 29.01760 +2018 196 29.01080 +2018 197 2.28113 +2018 198 0.00227 +2018 199 6.28105 +2018 200 4.70059 +2018 201 0.72107 +2018 202 11.78430 +2018 203 0.90248 +2018 204 0.05215 +2018 205 0.70293 +2018 206 2.42626 +2018 207 2.90470 +2018 208 2.77545 +2018 209 3.36728 +2018 210 2.63033 +2018 211 2.17909 +2018 212 6.70577 +2018 213 4.03930 +2018 214 8.50102 +2018 215 18.45030 +2018 216 57.13980 +2018 217 25.25920 +2018 218 1.25843 +2018 219 8.06980 +2018 220 5.93889 +2018 221 0.08423 +2018 222 0.02137 +2018 223 0.00000 +2018 224 1.46587 +2018 225 28.96150 +2018 226 7.87117 +2018 227 0.11943 +2018 228 6.47822 +2018 229 3.81427 +2018 230 0.24138 +2018 231 15.06980 +2018 232 16.67640 +2018 233 8.35015 +2018 234 7.59082 +2018 235 1.29740 +2018 236 0.14583 +2018 237 0.05154 +2018 238 0.00000 +2018 239 0.06914 +2018 240 26.21460 +2018 241 29.79880 +2018 242 13.81510 +2018 243 2.54554 +2018 244 21.62580 +2018 245 16.13390 +2018 246 11.52450 +2018 247 20.97720 +2018 248 17.23920 +2018 249 1.15464 +2018 250 0.59925 +2018 251 0.02010 +2018 252 0.01644 +2018 253 0.01644 +2018 254 0.00000 +2018 255 0.00183 +2018 256 0.00000 +2018 257 0.00000 +2018 258 0.55905 +2018 259 4.08144 +2018 260 7.07949 +2018 261 6.10024 +2018 262 2.24169 +2018 263 1.25147 +2018 264 0.99752 +2018 265 0.00183 +2018 266 4.64414 +2018 267 10.74070 +2018 268 3.45844 +2018 269 1.72100 +2018 270 1.97495 +2018 271 0.76550 +2018 272 0.22106 +2018 273 0.94559 +2018 274 9.46565 +2018 275 0.01219 +2018 276 1.44397 +2018 277 1.21245 +2018 278 0.70310 +2018 279 1.71205 +2018 280 1.13081 +2018 281 2.19338 +2018 282 0.09627 +2018 283 6.76536 +2018 284 23.03900 +2018 285 7.19428 +2018 286 0.47280 +2018 287 0.27661 +2018 288 0.00244 +2018 289 0.00244 +2018 290 0.02437 +2018 291 0.02315 +2018 292 0.00000 +2018 293 0.00000 +2018 294 0.09139 +2018 295 0.17791 +2018 296 0.18278 +2018 297 0.72747 +2018 298 1.02723 +2018 299 5.32869 +2018 300 15.30250 +2018 301 14.92840 +2018 302 16.83780 +2018 303 7.50136 +2018 304 5.41548 +2018 305 3.85648 +2018 306 3.94419 +2018 307 4.96277 +2018 308 0.07922 +2018 309 0.00000 +2018 310 0.02264 +2018 311 2.88033 +2018 312 4.24976 +2018 313 4.67417 +2018 314 0.95917 +2018 315 1.61842 +2018 316 3.29060 +2018 317 2.05132 +2018 318 0.74979 +2018 319 0.59135 +2018 320 0.32538 +2018 321 0.24899 +2018 322 0.52627 +2018 323 6.09453 +2018 324 18.57220 +2018 325 12.17770 +2018 326 0.13864 +2018 327 7.54602 +2018 328 19.76900 +2018 329 16.76420 +2018 330 13.79900 +2018 331 13.66880 +2018 332 9.00033 +2018 333 3.44338 +2018 334 32.54810 +2018 335 28.11780 +2018 336 18.77130 +2018 337 17.41650 +2018 338 1.99954 +2018 339 5.52379 +2018 340 3.99691 +2018 341 0.00109 +2018 342 0.00980 +2018 343 0.49771 +2018 344 7.30879 +2018 345 11.90470 +2018 346 13.60580 +2018 347 8.43380 +2018 348 10.71110 +2018 349 3.73117 +2018 350 1.46699 +2018 351 0.33108 +2018 352 0.35068 +2018 353 13.67120 +2018 354 4.37482 +2018 355 0.87671 +2018 356 9.07745 +2018 357 50.76940 +2018 358 58.14360 +2018 359 6.57475 +2018 360 10.06310 +2018 361 14.72320 +2018 362 6.91454 +2018 363 1.70331 +2018 364 0.02941 +2018 365 6.09123 +2019 1 5.35122 +2019 2 0.34506 +2019 3 0.08555 +2019 4 0.93678 +2019 5 0.21530 +2019 6 0.00428 +2019 7 0.00428 +2019 8 0.46768 +2019 9 1.14638 +2019 10 0.40066 +2019 11 1.55275 +2019 12 4.49998 +2019 13 17.36260 +2019 14 15.16820 +2019 15 11.84310 +2019 16 1.21055 +2019 17 0.58032 +2019 18 0.71435 +2019 19 0.74287 +2019 20 0.12833 +2019 21 0.12975 +2019 22 0.05276 +2019 23 6.93676 +2019 24 7.58552 +2019 25 1.57842 +2019 26 0.09838 +2019 27 0.13118 +2019 28 0.00143 +2019 29 0.11549 +2019 30 0.01996 +2019 31 0.04166 +2019 32 0.18517 +2019 33 0.08333 +2019 34 0.00463 +2019 35 0.00154 +2019 36 0.29781 +2019 37 0.36879 +2019 38 0.31016 +2019 39 0.34565 +2019 40 0.02160 +2019 41 0.08178 +2019 42 0.18208 +2019 43 0.01543 +2019 44 0.02315 +2019 45 0.18208 +2019 46 0.20832 +2019 47 0.56322 +2019 48 1.56005 +2019 49 0.00463 +2019 50 0.04012 +2019 51 1.60325 +2019 52 12.71650 +2019 53 19.62940 +2019 54 2.34084 +2019 55 1.11410 +2019 56 0.00309 +2019 57 0.04321 +2019 58 0.00000 +2019 59 0.03233 +2019 60 0.03233 +2019 61 0.00000 +2019 62 0.00000 +2019 63 0.00323 +2019 64 0.00323 +2019 65 3.20674 +2019 66 14.85060 +2019 67 14.84090 +2019 68 4.50948 +2019 69 1.16697 +2019 70 0.44933 +2019 71 0.23275 +2019 72 1.06999 +2019 73 1.91370 +2019 74 0.65299 +2019 75 0.99241 +2019 76 5.74110 +2019 77 4.49008 +2019 78 2.75418 +2019 79 0.75966 +2019 80 12.52630 +2019 81 10.28610 +2019 82 5.24328 +2019 83 1.93956 +2019 84 0.82755 +2019 85 1.06999 +2019 86 16.37960 +2019 87 12.54250 +2019 88 3.14532 +2019 89 6.09668 +2019 90 16.85630 +2019 91 7.25987 +2019 92 0.09279 +2019 93 0.00703 +2019 94 0.09700 +2019 95 3.43452 +2019 96 5.09906 +2019 97 2.16081 +2019 98 0.58906 +2019 99 0.03796 +2019 100 9.62875 +2019 101 10.66070 +2019 102 0.17854 +2019 103 0.01828 +2019 104 0.00141 +2019 105 0.00141 +2019 106 0.00281 +2019 107 0.00141 +2019 108 0.00281 +2019 109 0.00422 +2019 110 0.87585 +2019 111 15.61770 +2019 112 15.26200 +2019 113 4.14448 +2019 114 0.83649 +2019 115 0.22634 +2019 116 0.21229 +2019 117 5.30432 +2019 118 12.26330 +2019 119 4.14167 +2019 120 0.00141 +2019 121 0.00179 +2019 122 0.00358 +2019 123 0.03764 +2019 124 0.04481 +2019 125 0.01613 +2019 126 0.00538 +2019 127 0.57174 +2019 128 1.38185 +2019 129 7.50968 +2019 130 0.32261 +2019 131 15.30070 +2019 132 16.63060 +2019 133 0.24375 +2019 134 1.74031 +2019 135 1.03415 +2019 136 0.07348 +2019 137 0.04660 +2019 138 0.61117 +2019 139 0.06452 +2019 140 0.02688 +2019 141 0.01434 +2019 142 0.00000 +2019 143 0.05198 +2019 144 0.45166 +2019 145 0.19894 +2019 146 5.57760 +2019 147 19.46060 +2019 148 7.83408 +2019 149 1.48401 +2019 150 18.61470 +2019 151 9.52298 +2019 152 0.85550 +2019 153 0.00000 +2019 154 0.77803 +2019 155 29.95840 +2019 156 23.46180 +2019 157 5.62282 +2019 158 0.50314 +2019 159 0.04248 +2019 160 0.03582 +2019 161 0.62309 +2019 162 20.18550 +2019 163 22.49130 +2019 164 1.00628 +2019 165 0.94047 +2019 166 0.26823 +2019 167 0.20992 +2019 168 0.00167 +2019 169 0.00250 +2019 170 0.31738 +2019 171 10.02110 +2019 172 1.82679 +2019 173 5.96519 +2019 174 3.01050 +2019 175 0.00417 +2019 176 0.00417 +2019 177 0.00167 +2019 178 0.03249 +2019 179 0.03665 +2019 180 0.00250 +2019 181 2.40541 +2019 182 3.61403 +2019 183 6.99609 +2019 184 74.41860 +2019 185 61.39420 +2019 186 0.70330 +2019 187 0.00739 +2019 188 0.24231 +2019 189 0.27482 +2019 190 1.31943 +2019 191 1.78929 +2019 192 8.89324 +2019 193 9.61575 +2019 194 10.02950 +2019 195 11.21440 +2019 196 11.30310 +2019 197 4.70445 +2019 198 1.62971 +2019 199 16.13750 +2019 200 14.38960 +2019 201 1.10076 +2019 202 0.02807 +2019 203 0.64420 +2019 204 1.56027 +2019 205 2.14537 +2019 206 3.89476 +2019 207 1.17907 +2019 208 0.38120 +2019 209 1.01358 +2019 210 1.80406 +2019 211 1.67256 +2019 212 0.67579 +2019 213 1.33327 +2019 214 1.55632 +2019 215 4.37517 +2019 216 3.71519 +2019 217 1.82014 +2019 218 2.36444 +2019 219 6.54569 +2019 220 10.58630 +2019 221 16.77910 +2019 222 31.33030 +2019 223 18.91800 +2019 224 9.29796 +2019 225 1.93250 +2019 226 0.14065 +2019 227 0.21056 +2019 228 3.18005 +2019 229 4.48586 +2019 230 0.00666 +2019 231 2.90124 +2019 232 25.05420 +2019 233 11.21130 +2019 234 30.61450 +2019 235 7.42788 +2019 236 0.50601 +2019 237 2.11393 +2019 238 0.36869 +2019 239 0.13899 +2019 240 0.56760 +2019 241 0.98706 +2019 242 0.74903 +2019 243 0.00117 +2019 244 0.00467 +2019 245 9.96736 +2019 246 43.85940 +2019 247 13.64340 +2019 248 7.06153 +2019 249 0.36877 +2019 250 14.66920 +2019 251 15.99960 +2019 252 13.99470 +2019 253 0.11553 +2019 254 0.09453 +2019 255 0.37811 +2019 256 4.88507 +2019 257 5.93187 +2019 258 0.10503 +2019 259 1.28020 +2019 260 1.11565 +2019 261 1.60930 +2019 262 0.68036 +2019 263 0.07819 +2019 264 0.00000 +2019 265 0.06419 +2019 266 19.26250 +2019 267 13.79280 +2019 268 6.70093 +2019 269 2.00608 +2019 270 0.98495 +2019 271 0.84724 +2019 272 10.98030 +2019 273 9.93106 +2019 274 7.23408 +2019 275 2.57712 +2019 276 0.31424 +2019 277 0.70138 +2019 278 3.63000 +2019 279 0.30614 +2019 280 0.55722 +2019 281 0.05021 +2019 282 3.23962 +2019 283 28.78400 +2019 284 10.28090 +2019 285 2.15759 +2019 286 5.86858 +2019 287 35.81240 +2019 288 11.78410 +2019 289 0.36284 +2019 290 1.97455 +2019 291 8.41330 +2019 292 0.64145 +2019 293 2.09766 +2019 294 2.73262 +2019 295 6.42741 +2019 296 2.44915 +2019 297 1.85630 +2019 298 0.29967 +2019 299 0.00000 +2019 300 1.79637 +2019 301 3.02581 +2019 302 0.20896 +2019 303 0.12796 +2019 304 0.06695 +2019 305 0.06695 +2019 306 0.00000 +2019 307 0.00000 +2019 308 0.00167 +2019 309 0.00167 +2019 310 0.00000 +2019 311 0.27783 +2019 312 1.56486 +2019 313 33.08140 +2019 314 16.56080 +2019 315 1.40084 +2019 316 1.40252 +2019 317 9.36574 +2019 318 1.14310 +2019 319 0.92051 +2019 320 1.91465 +2019 321 19.86450 +2019 322 2.29457 +2019 323 0.57406 +2019 324 0.05188 +2019 325 0.02343 +2019 326 0.00167 +2019 327 0.03013 +2019 328 0.46528 +2019 329 2.39667 +2019 330 0.13891 +2019 331 0.05188 +2019 332 4.74145 +2019 333 6.47200 +2019 334 4.31671 +2019 335 3.39469 +2019 336 11.06910 +2019 337 7.46487 +2019 338 0.00247 +2019 339 0.83820 +2019 340 3.57959 +2019 341 33.77930 +2019 342 20.59990 +2019 343 0.02712 +2019 344 0.32788 +2019 345 18.44770 +2019 346 15.69890 +2019 347 0.34021 +2019 348 2.66497 +2019 349 25.82880 +2019 350 45.77540 +2019 351 28.98680 +2019 352 0.70261 +2019 353 7.57335 +2019 354 8.25130 +2019 355 1.13896 +2019 356 2.15959 +2019 357 4.93056 +2019 358 13.65270 +2019 359 15.77780 +2019 360 3.98390 +2019 361 0.00247 +2019 362 0.00000 +2019 363 0.17503 +2019 364 0.05670 +2019 365 0.02037 +2020 1 0.00470 +2020 2 0.19747 +2020 3 0.01567 +2020 4 0.42471 +2020 5 2.01700 +2020 6 0.01097 +2020 7 3.99324 +2020 8 3.27076 +2020 9 0.00000 +2020 10 0.00000 +2020 11 0.00000 +2020 12 2.55298 +2020 13 8.25918 +2020 14 0.95286 +2020 15 0.00157 +2020 16 0.00157 +2020 17 1.60952 +2020 18 1.62206 +2020 19 0.02508 +2020 20 0.26329 +2020 21 0.41688 +2020 22 0.06426 +2020 23 0.36673 +2020 24 0.32128 +2020 25 0.00157 +2020 26 0.06112 +2020 27 0.25702 +2020 28 0.89487 +2020 29 0.86823 +2020 30 0.30717 +2020 31 0.00807 +2020 32 0.02024 +2020 33 0.01012 +2020 34 0.07758 +2020 35 0.17877 +2020 36 0.00675 +2020 37 0.30695 +2020 38 2.73215 +2020 39 0.08433 +2020 40 0.02698 +2020 41 0.00000 +2020 42 0.00000 +2020 43 0.00337 +2020 44 0.00000 +2020 45 0.55317 +2020 46 1.65278 +2020 47 1.32560 +2020 48 3.85199 +2020 49 5.73413 +2020 50 2.52639 +2020 51 2.01707 +2020 52 18.14680 +2020 53 11.60990 +2020 54 0.88036 +2020 55 0.00337 +2020 56 0.11131 +2020 57 0.74881 +2020 58 0.30020 +2020 59 0.33393 +2020 60 0.40099 +2020 61 0.46223 +2020 62 0.33100 +2020 63 11.44200 +2020 64 8.23704 +2020 65 0.00000 +2020 66 0.00146 +2020 67 0.00437 +2020 68 3.11022 +2020 69 4.33360 +2020 70 4.69813 +2020 71 4.49691 +2020 72 0.16769 +2020 73 0.16769 +2020 74 0.00146 +2020 75 0.00292 +2020 76 0.13123 +2020 77 0.00146 +2020 78 0.41411 +2020 79 0.73782 +2020 80 0.35724 +2020 81 8.90487 +2020 82 17.71640 +2020 83 5.27264 +2020 84 0.08166 +2020 85 0.61971 +2020 86 8.27933 +2020 87 8.39015 +2020 88 0.37183 +2020 89 2.98482 +2020 90 3.31436 +2020 91 0.39709 +2020 92 0.65978 +2020 93 0.16342 +2020 94 0.01985 +2020 95 0.00305 +2020 96 0.00153 +2020 97 0.00000 +2020 98 5.67232 +2020 99 6.39930 +2020 100 1.09811 +2020 101 0.00611 +2020 102 0.37113 +2020 103 13.59890 +2020 104 3.27296 +2020 105 0.38946 +2020 106 0.99426 +2020 107 6.12897 +2020 108 25.55140 +2020 109 2.08321 +2020 110 0.54524 +2020 111 0.07789 +2020 112 0.00305 +2020 113 0.94997 +2020 114 1.96103 +2020 115 0.22756 +2020 116 0.00153 +2020 117 0.01985 +2020 118 0.00916 +2020 119 0.00458 +2020 120 0.01375 +2020 121 0.00462 +2020 122 0.69037 +2020 123 34.22100 +2020 124 53.44960 +2020 125 8.05019 +2020 126 1.13418 +2020 127 0.02003 +2020 128 0.02157 +2020 129 0.00154 +2020 130 0.06164 +2020 131 0.12636 +2020 132 0.02620 +2020 133 0.02312 +2020 134 0.00000 +2020 135 0.03236 +2020 136 0.06010 +2020 137 0.03544 +2020 138 0.00925 +2020 139 0.01233 +2020 140 0.01387 +2020 141 0.00154 +2020 142 0.00000 +2020 143 0.00000 +2020 144 9.65283 +2020 145 29.09720 +2020 146 0.94617 +2020 147 0.08630 +2020 148 0.03853 +2020 149 1.37765 +2020 150 1.36224 +2020 151 0.47463 +2020 152 25.46420 +2020 153 10.72430 +2020 154 9.22350 +2020 155 17.68360 +2020 156 13.67360 +2020 157 4.28449 +2020 158 0.11457 +2020 159 0.03063 +2020 160 0.06126 +2020 161 0.03290 +2020 162 0.04424 +2020 163 0.53655 +2020 164 0.75662 +2020 165 0.00340 +2020 166 0.00227 +2020 167 0.18717 +2020 168 0.56605 +2020 169 24.84140 +2020 170 36.51850 +2020 171 19.62110 +2020 172 19.61650 +2020 173 0.64772 +2020 174 0.01815 +2020 175 1.33174 +2020 176 41.79780 +2020 177 10.95570 +2020 178 21.80700 +2020 179 12.90110 +2020 180 9.50369 +2020 181 6.86176 +2020 182 0.12614 +2020 183 0.08073 +2020 184 0.08241 +2020 185 0.08241 +2020 186 5.95547 +2020 187 32.50700 +2020 188 11.52080 +2020 189 5.97229 +2020 190 1.22440 +2020 191 0.00336 +2020 192 0.03868 +2020 193 0.53988 +2020 194 4.13738 +2020 195 8.46817 +2020 196 20.73900 +2020 197 22.33850 +2020 198 7.78029 +2020 199 6.92422 +2020 200 2.91971 +2020 201 4.16093 +2020 202 18.92600 +2020 203 10.06930 +2020 204 0.60547 +2020 205 0.59033 +2020 206 0.01514 +2020 207 0.01009 +2020 208 0.00168 +2020 209 0.16987 +2020 210 0.34814 +2020 211 0.00168 +2020 212 0.24723 +2020 213 1.13479 +2020 214 1.39568 +2020 215 0.15209 +2020 216 0.07721 +2020 217 0.00117 +2020 218 0.47849 +2020 219 22.37530 +2020 220 4.37656 +2020 221 0.12401 +2020 222 0.10763 +2020 223 20.13850 +2020 224 16.13750 +2020 225 0.00702 +2020 226 0.66918 +2020 227 0.51124 +2020 228 0.00000 +2020 229 0.00000 +2020 230 0.47966 +2020 231 23.18250 +2020 232 22.58010 +2020 233 15.68590 +2020 234 6.60169 +2020 235 26.07450 +2020 236 31.32850 +2020 237 12.17970 +2020 238 2.82879 +2020 239 4.14258 +2020 240 3.07798 +2020 241 2.98907 +2020 242 2.62055 +2020 243 0.00117 +2020 244 0.97917 +2020 245 1.21748 +2020 246 0.84948 +2020 247 0.00162 +2020 248 0.00324 +2020 249 1.79622 +2020 250 12.42930 +2020 251 0.36151 +2020 252 0.02432 +2020 253 1.01646 +2020 254 1.45903 +2020 255 0.39070 +2020 256 0.00000 +2020 257 0.33071 +2020 258 1.23045 +2020 259 0.70357 +2020 260 0.05350 +2020 261 7.47022 +2020 262 2.91319 +2020 263 0.41015 +2020 264 0.98403 +2020 265 0.51877 +2020 266 4.29440 +2020 267 16.84690 +2020 268 8.01330 +2020 269 1.09427 +2020 270 25.27360 +2020 271 4.96231 +2020 272 4.93313 +2020 273 0.62414 +2020 274 4.44321 +2020 275 3.10036 +2020 276 0.42096 +2020 277 0.03999 +2020 278 0.00210 +2020 279 0.05683 +2020 280 0.28204 +2020 281 0.73878 +2020 282 0.57040 +2020 283 0.27573 +2020 284 0.93032 +2020 285 3.97805 +2020 286 29.54910 +2020 287 10.74500 +2020 288 7.88454 +2020 289 5.72924 +2020 290 0.05472 +2020 291 0.11997 +2020 292 5.08096 +2020 293 5.79238 +2020 294 8.26130 +2020 295 7.00053 +2020 296 1.64384 +2020 297 2.75938 +2020 298 1.94272 +2020 299 1.51545 +2020 300 2.02902 +2020 301 2.60362 +2020 302 1.77013 +2020 303 4.08961 +2020 304 11.61420 +2020 305 15.40570 +2020 306 0.00000 +2020 307 2.37986 +2020 308 4.19556 +2020 309 40.48040 +2020 310 38.95000 +2020 311 3.38985 +2020 312 22.34280 +2020 313 30.92360 +2020 314 25.88830 +2020 315 24.06450 +2020 316 10.45160 +2020 317 0.00324 +2020 318 0.05026 +2020 319 0.13293 +2020 320 0.26911 +2020 321 0.18968 +2020 322 4.58464 +2020 323 4.58464 +2020 324 0.00000 +2020 325 0.21399 +2020 326 2.09130 +2020 327 1.06672 +2020 328 8.06365 +2020 329 50.03220 +2020 330 25.84940 +2020 331 8.26792 +2020 332 0.06971 +2020 333 6.04044 +2020 334 7.68916 +2020 335 12.56980 +2020 336 0.00135 +2020 337 0.70865 +2020 338 0.00000 +2020 339 0.27048 +2020 340 0.28400 +2020 341 0.68431 +2020 342 5.03630 +2020 343 1.61746 +2020 344 19.16070 +2020 345 1.85142 +2020 346 0.46387 +2020 347 0.19610 +2020 348 0.91286 +2020 349 0.10008 +2020 350 0.02029 +2020 351 0.01082 +2020 352 0.01082 +2020 353 0.27994 +2020 354 0.02029 +2020 355 1.18605 +2020 356 3.04964 +2020 357 5.32571 +2020 358 9.46267 +2020 359 0.53555 +2020 360 0.01082 +2020 361 8.88926 +2020 362 9.43698 +2020 363 1.02646 +2020 364 0.15552 +2020 365 0.10549 +2020 366 0.69718 +2021 1 18.63700 +2021 2 25.25830 +2021 3 12.58310 +2021 4 2.67708 +2021 5 0.30120 +2021 6 2.16555 +2021 7 18.68250 +2021 8 9.01795 +2021 9 4.65438 +2021 10 0.77119 +2021 11 0.87245 +2021 12 0.85428 +2021 13 0.39987 +2021 14 0.03376 +2021 15 0.50114 +2021 16 6.11626 +2021 17 6.49017 +2021 18 3.20938 +2021 19 5.35936 +2021 20 1.85916 +2021 21 0.28822 +2021 22 0.05583 +2021 23 0.94776 +2021 24 0.37261 +2021 25 0.00389 +2021 26 0.00260 +2021 27 0.10386 +2021 28 0.15709 +2021 29 0.12853 +2021 30 0.00909 +2021 31 0.00000 +2021 32 0.00153 +2021 33 0.30340 +2021 34 0.00919 +2021 35 0.00613 +2021 36 0.00306 +2021 37 0.00153 +2021 38 0.39381 +2021 39 2.36286 +2021 40 9.47289 +2021 41 2.93595 +2021 42 0.00766 +2021 43 0.19154 +2021 44 0.05976 +2021 45 23.48460 +2021 46 47.45180 +2021 47 3.07693 +2021 48 0.00153 +2021 49 0.00000 +2021 50 0.00153 +2021 51 0.04750 +2021 52 0.03371 +2021 53 1.24885 +2021 54 3.24395 +2021 55 1.81122 +2021 56 1.22434 +2021 57 1.20595 +2021 58 1.47104 +2021 59 1.40943 +2021 60 4.45968 +2021 61 13.05150 +2021 62 29.11410 +2021 63 19.39540 +2021 64 5.19294 +2021 65 6.13807 +2021 66 1.45150 +2021 67 0.00150 +2021 68 1.13145 +2021 69 18.04160 +2021 70 10.08390 +2021 71 0.00150 +2021 72 0.19383 +2021 73 1.22160 +2021 74 1.19906 +2021 75 0.74378 +2021 76 0.39067 +2021 77 0.00601 +2021 78 0.00601 +2021 79 0.00601 +2021 80 0.00751 +2021 81 0.00000 +2021 82 0.00301 +2021 83 0.18181 +2021 84 0.34259 +2021 85 0.73326 +2021 86 0.55596 +2021 87 6.16211 +2021 88 22.40210 +2021 89 18.12420 +2021 90 7.17622 +2021 91 2.32809 +2021 92 0.92484 +2021 93 0.00291 +2021 94 0.02908 +2021 95 0.00145 +2021 96 0.34173 +2021 97 0.69363 +2021 98 2.50550 +2021 99 20.15160 +2021 100 28.99420 +2021 101 2.67854 +2021 102 2.34845 +2021 103 8.88920 +2021 104 9.11314 +2021 105 0.17741 +2021 106 4.30573 +2021 107 0.02472 +2021 108 0.19631 +2021 109 16.38530 +2021 110 33.88160 +2021 111 0.26756 +2021 112 0.48714 +2021 113 4.51222 +2021 114 0.03926 +2021 115 0.03199 +2021 116 1.17786 +2021 117 0.26320 +2021 118 0.13233 +2021 119 0.07271 +2021 120 0.14782 +2021 121 0.00000 +2021 122 0.00000 +2021 123 0.00368 +2021 124 0.00000 +2021 125 0.00552 +2021 126 0.12521 +2021 127 0.94277 +2021 128 6.95843 +2021 129 16.21300 +2021 130 5.23677 +2021 131 11.20820 +2021 132 9.76831 +2021 133 0.00921 +2021 134 17.62530 +2021 135 0.15651 +2021 136 10.26550 +2021 137 5.30859 +2021 138 1.08639 +2021 139 0.44560 +2021 140 0.00000 +2021 141 0.00000 +2021 142 0.38300 +2021 143 0.39221 +2021 144 0.01289 +2021 145 0.00000 +2021 146 0.00184 +2021 147 1.73454 +2021 148 27.57410 +2021 149 25.35340 +2021 150 7.33774 +2021 151 0.40145 +2021 152 0.01426 +2021 153 0.01426 +2021 154 0.00408 +2021 155 0.19767 +2021 156 18.45460 +2021 157 22.27960 +2021 158 1.23085 +2021 159 0.51353 +2021 160 0.28326 +2021 161 0.19156 +2021 162 0.02242 +2021 163 0.83959 +2021 164 17.97780 +2021 165 19.39400 +2021 166 3.29925 +2021 167 1.11673 +2021 168 0.95982 +2021 169 22.49970 +2021 170 31.66790 +2021 171 4.44655 +2021 172 1.87277 +2021 173 0.00000 +2021 174 0.00815 +2021 175 0.15895 +2021 176 0.94759 +2021 177 22.72180 +2021 178 17.32970 +2021 179 2.23346 +2021 180 0.03464 +2021 181 0.00217 +2021 182 0.00000 +2021 183 0.00000 +2021 184 0.00217 +2021 185 0.00217 +2021 186 1.96785 +2021 187 24.60130 +2021 188 0.05858 +2021 189 0.29724 +2021 190 0.36884 +2021 191 0.11716 +2021 192 0.10848 +2021 193 0.12801 +2021 194 0.00217 +2021 195 0.00000 +2021 196 0.58146 +2021 197 40.22260 +2021 198 43.14290 +2021 199 13.82700 +2021 200 0.33846 +2021 201 16.75380 +2021 202 24.10010 +2021 203 2.31498 +2021 204 0.57712 +2021 205 3.40847 +2021 206 24.52320 +2021 207 8.23805 +2021 208 0.80927 +2021 209 0.07594 +2021 210 0.25818 +2021 211 0.63570 +2021 212 0.72151 +2021 213 0.74681 +2021 214 5.23529 +2021 215 0.24094 +2021 216 11.65130 +2021 217 12.80260 +2021 218 5.53401 +2021 219 8.30537 +2021 220 8.97805 +2021 221 0.17444 +2021 222 0.02944 +2021 223 0.20060 +2021 224 5.03359 +2021 225 2.53370 +2021 226 0.13628 +2021 227 0.56692 +2021 228 11.43220 +2021 229 17.50580 +2021 230 3.12351 +2021 231 0.09376 +2021 232 0.14609 +2021 233 0.12320 +2021 234 0.04034 +2021 235 0.37395 +2021 236 0.13301 +2021 237 0.22023 +2021 238 2.95016 +2021 239 23.53810 +2021 240 28.55530 +2021 241 2.12377 +2021 242 1.92971 +2021 243 0.01473 +2021 244 0.06187 +2021 245 0.09281 +2021 246 0.11196 +2021 247 0.03094 +2021 248 0.13553 +2021 249 21.20140 +2021 250 18.11660 +2021 251 1.63371 +2021 252 3.73882 +2021 253 7.19774 +2021 254 0.36534 +2021 255 1.05771 +2021 256 9.54003 +2021 257 12.53340 +2021 258 52.26540 +2021 259 22.16920 +2021 260 0.68501 +2021 261 0.66438 +2021 262 1.00468 +2021 263 0.12816 +2021 264 1.15199 +2021 265 40.81180 +2021 266 5.76143 +2021 267 0.01326 +2021 268 5.59792 +2021 269 5.49774 +2021 270 4.72877 +2021 271 1.61161 +2021 272 5.24731 +2021 273 4.26566 +2021 274 0.00910 +2021 275 0.35623 +2021 276 17.13890 +2021 277 9.60912 +2021 278 6.37459 +2021 279 17.54980 +2021 280 19.44810 +2021 281 0.33005 +2021 282 0.69994 +2021 283 0.36989 +2021 284 12.72410 +2021 285 2.23071 +2021 286 0.51329 +2021 287 0.00228 +2021 288 0.00114 +2021 289 7.03584 +2021 290 23.80140 +2021 291 0.26063 +2021 292 0.67946 +2021 293 0.69198 +2021 294 0.00910 +2021 295 0.02845 +2021 296 6.05251 +2021 297 2.46630 +2021 298 2.60629 +2021 299 1.90407 +2021 300 19.48910 +2021 301 44.42640 +2021 302 17.01140 +2021 303 19.88860 +2021 304 0.29016 +2021 305 0.16926 +2021 306 8.95262 +2021 307 0.67704 +2021 308 6.02080 +2021 309 15.06210 +2021 310 10.28450 +2021 311 1.57170 +2021 312 1.56565 +2021 313 2.52076 +2021 314 1.50520 +2021 315 0.71129 +2021 316 11.48750 +2021 317 13.99210 +2021 318 5.39817 +2021 319 2.50262 +2021 320 7.14920 +2021 321 3.61692 +2021 322 0.20754 +2021 323 0.04030 +2021 324 0.54405 +2021 325 1.82760 +2021 326 2.03716 +2021 327 0.51382 +2021 328 0.60450 +2021 329 0.37479 +2021 330 0.00000 +2021 331 0.00000 +2021 332 0.00000 +2021 333 7.45951 +2021 334 21.48300 +2021 335 15.85400 +2021 336 2.25007 +2021 337 6.46233 +2021 338 4.60368 +2021 339 2.44452 +2021 340 2.33341 +2021 341 0.96468 +2021 342 0.69447 +2021 343 0.11364 +2021 344 0.53285 +2021 345 33.55660 +2021 346 36.80170 +2021 347 27.59180 +2021 348 38.88260 +2021 349 8.42704 +2021 350 2.99505 +2021 351 0.22728 +2021 352 0.00000 +2021 353 0.00000 +2021 354 0.15404 +2021 355 0.07576 +2021 356 0.00000 +2021 357 0.00758 +2021 358 1.29297 +2021 359 1.45459 +2021 360 0.13132 +2021 361 2.58594 +2021 362 1.48742 +2021 363 0.96468 +2021 364 0.00253 +2021 365 0.00097 +2022 1 0.00193 +2022 2 0.00097 +2022 3 0.00193 +2022 4 0.00193 +2022 5 10.52550 +2022 6 13.60680 +2022 7 2.29602 +2022 8 0.48551 +2022 9 0.27757 +2022 10 0.00097 +2022 11 0.02031 +2022 12 0.00580 +2022 13 0.00097 +2022 14 0.00193 +2022 15 0.00000 +2022 16 0.00097 +2022 17 0.00290 +2022 18 0.01257 +2022 19 0.41297 +2022 20 0.11316 +2022 21 0.01161 +2022 22 0.02998 +2022 23 5.26130 +2022 24 8.87071 +2022 25 5.21198 +2022 26 0.79016 +2022 27 0.00774 +2022 28 0.20987 +2022 29 0.00870 +2022 30 0.06480 +2022 31 0.36817 +2022 32 2.43640 +2022 33 1.83337 +2022 34 0.36044 +2022 35 1.40708 +2022 36 22.47520 +2022 37 90.76730 +2022 38 12.57360 +2022 39 0.47827 +2022 40 3.35136 +2022 41 10.54970 +2022 42 16.41370 +2022 43 13.00690 +2022 44 6.42892 +2022 45 5.19859 +2022 46 0.01040 +2022 47 0.81444 +2022 48 1.02932 +2022 49 2.75525 +2022 50 2.51265 +2022 51 4.06876 +2022 52 3.83309 +2022 53 1.56304 +2022 54 1.23033 +2022 55 0.06585 +2022 56 0.62037 +2022 57 0.76592 +2022 58 0.02426 +2022 59 0.78905 +2022 60 2.20270 +2022 61 0.00350 +2022 62 0.00175 +2022 63 0.00175 +2022 64 0.01050 +2022 65 0.00525 +2022 66 0.00350 +2022 67 0.61410 +2022 68 0.00700 +2022 69 0.14521 +2022 70 0.00175 +2022 71 0.00350 +2022 72 0.00000 +2022 73 0.12597 +2022 74 0.12597 +2022 75 0.00000 +2022 76 0.26943 +2022 77 11.66080 +2022 78 8.59385 +2022 79 46.03450 +2022 80 30.31990 +2022 81 53.02930 +2022 82 34.67280 +2022 83 15.20370 +2022 84 0.02449 +2022 85 0.19070 +2022 86 0.00350 +2022 87 0.65609 +2022 88 0.41115 +2022 89 0.00525 +2022 90 0.10246 +2022 91 0.97312 +2022 92 0.67059 +2022 93 0.01156 +2022 94 2.04838 +2022 95 8.25903 +2022 96 2.23144 +2022 97 0.00000 +2022 98 0.00000 +2022 99 0.00000 +2022 100 0.00000 +2022 101 1.56663 +2022 102 15.23850 +2022 103 1.94817 +2022 104 0.00193 +2022 105 0.39118 +2022 106 0.00193 +2022 107 4.67870 +2022 108 7.37840 +2022 109 5.38205 +2022 110 5.30497 +2022 111 41.40500 +2022 112 10.09740 +2022 113 0.32181 +2022 114 0.34493 +2022 115 0.13103 +2022 116 0.13874 +2022 117 0.07708 +2022 118 0.00771 +2022 119 0.09249 +2022 120 1.82907 +2022 121 1.64837 +2022 122 0.22100 +2022 123 0.07670 +2022 124 0.08970 +2022 125 0.00130 +2022 126 0.00000 +2022 127 0.01300 +2022 128 2.33086 +2022 129 2.22166 +2022 130 0.00130 +2022 131 0.00130 +2022 132 0.00130 +2022 133 0.67339 +2022 134 8.80605 +2022 135 3.51644 +2022 136 2.42836 +2022 137 3.24605 +2022 138 7.89997 +2022 139 13.57960 +2022 140 3.65294 +2022 141 0.12090 +2022 142 0.08190 +2022 143 0.01950 +2022 144 0.01690 +2022 145 0.59539 +2022 146 0.59539 +2022 147 0.00000 +2022 148 0.50569 +2022 149 68.26970 +2022 150 38.85120 +2022 151 21.39350 +2022 152 17.75430 +2022 153 7.81737 +2022 154 2.37826 +2022 155 0.00135 +2022 156 12.96260 +2022 157 26.76350 +2022 158 19.85900 +2022 159 5.80885 +2022 160 9.56991 +2022 161 15.91920 +2022 162 7.42731 +2022 163 16.73580 +2022 164 7.13613 +2022 165 0.43610 +2022 166 0.19367 +2022 167 2.08436 +2022 168 27.41770 +2022 169 49.38270 +2022 170 0.00000 +2022 171 0.00135 +2022 172 0.00000 +2022 173 0.00000 +2022 174 0.30067 +2022 175 9.17715 +2022 176 2.55703 +2022 177 0.03115 +2022 178 0.00135 +2022 179 7.15915 +2022 180 7.96499 +2022 181 0.00254 +2022 182 0.00254 +2022 183 0.17530 +2022 184 0.09400 +2022 185 19.15040 +2022 186 19.49080 +2022 187 1.80123 +2022 188 56.32840 +2022 189 27.47570 +2022 190 4.68725 +2022 191 16.96810 +2022 192 71.01760 +2022 193 13.30980 +2022 194 10.99030 +2022 195 28.23280 +2022 196 0.58432 +2022 197 0.02541 +2022 198 0.25151 +2022 199 7.74350 +2022 200 26.61190 +2022 201 6.32081 +2022 202 0.79264 +2022 203 0.00000 +2022 204 0.13719 +2022 205 19.21900 +2022 206 54.43060 +2022 207 15.80460 +2022 208 14.28530 +2022 209 5.20298 +2022 210 0.41664 +2022 211 4.35445 +2022 212 1.06254 +2022 213 0.22038 +2022 214 0.48995 +2022 215 0.25186 +2022 216 0.01377 +2022 217 0.01968 +2022 218 19.06670 +2022 219 19.40720 +2022 220 6.62319 +2022 221 2.99677 +2022 222 0.01968 +2022 223 0.23612 +2022 224 0.23612 +2022 225 0.00197 +2022 226 0.00394 +2022 227 1.76107 +2022 228 9.09458 +2022 229 40.49670 +2022 230 19.40520 +2022 231 11.30620 +2022 232 3.48868 +2022 233 5.86366 +2022 234 4.64764 +2022 235 0.04722 +2022 236 20.49330 +2022 237 33.31270 +2022 238 10.48970 +2022 239 0.55292 +2022 240 0.05509 +2022 241 0.05509 +2022 242 0.00000 +2022 243 0.02528 +2022 244 0.46002 +2022 245 6.22290 +2022 246 6.79076 +2022 247 34.31100 +2022 248 30.54490 +2022 249 0.01685 +2022 250 1.08012 +2022 251 6.70988 +2022 252 36.53700 +2022 253 8.16239 +2022 254 19.57690 +2022 255 13.26980 +2022 256 3.20834 +2022 257 0.92846 +2022 258 0.24265 +2022 259 0.36734 +2022 260 0.05392 +2022 261 13.26300 +2022 262 30.88530 +2022 263 27.77470 +2022 264 24.33890 +2022 265 33.95210 +2022 266 1.38006 +2022 267 0.20558 +2022 268 0.03707 +2022 269 0.26455 +2022 270 0.86275 +2022 271 3.68689 +2022 272 40.06210 +2022 273 76.71400 +2022 274 51.91150 +2022 275 23.94920 +2022 276 8.55994 +2022 277 2.03501 +2022 278 2.67985 +2022 279 0.25794 +2022 280 0.01650 +2022 281 0.02999 +2022 282 0.25644 +2022 283 0.51288 +2022 284 1.27769 +2022 285 12.27750 +2022 286 14.12810 +2022 287 0.00150 +2022 288 0.00000 +2022 289 1.30618 +2022 290 3.88856 +2022 291 0.02549 +2022 292 0.67484 +2022 293 0.65234 +2022 294 0.04949 +2022 295 0.00000 +2022 296 0.00000 +2022 297 0.18596 +2022 298 1.04975 +2022 299 0.88329 +2022 300 1.20421 +2022 301 6.97632 +2022 302 52.36440 +2022 303 29.11850 +2022 304 3.35225 +2022 305 0.49663 +2022 306 3.72472 +2022 307 1.68464 +2022 308 0.03408 +2022 309 0.23614 +2022 310 0.74494 +2022 311 4.51105 +2022 312 7.54925 +2022 313 2.04007 +2022 314 44.10020 +2022 315 46.42510 +2022 316 3.29138 +2022 317 3.85861 +2022 318 2.52453 +2022 319 4.53539 +2022 320 13.34810 +2022 321 27.38520 +2022 322 41.00350 +2022 323 39.86660 +2022 324 17.28710 +2022 325 39.35780 +2022 326 45.90410 +2022 327 21.29170 +2022 328 15.27380 +2022 329 1.23914 +2022 330 10.68000 +2022 331 12.07250 +2022 332 0.28970 +2022 333 29.04310 +2022 334 14.62430 +2022 335 0.16726 +2022 336 0.08867 +2022 337 0.06952 +2022 338 0.00403 +2022 339 0.00101 +2022 340 0.71237 +2022 341 0.91792 +2022 342 18.02990 +2022 343 28.33870 +2022 344 31.40280 +2022 345 12.17980 +2022 346 10.70670 +2022 347 22.77570 +2022 348 47.17160 +2022 349 19.01030 +2022 350 13.06150 +2022 351 19.67530 +2022 352 6.97055 +2022 353 16.80970 +2022 354 12.85790 +2022 355 12.78740 +2022 356 10.39640 +2022 357 0.90684 +2022 358 1.05092 +2022 359 6.90405 +2022 360 5.45211 +2022 361 0.23275 +2022 362 1.14060 +2022 363 0.14409 +2022 364 0.10076 +2022 365 0.00837 +2023 1 1.45767 +2023 2 3.15828 +2023 3 10.92930 +2023 4 20.31370 +2023 5 16.43770 +2023 6 23.67520 +2023 7 27.56710 +2023 8 14.33060 +2023 9 39.27290 +2023 10 29.02000 +2023 11 17.81750 +2023 12 3.55207 +2023 13 1.14486 +2023 14 1.12580 +2023 15 0.66373 +2023 16 3.92681 +2023 17 1.87369 +2023 18 3.01855 +2023 19 1.90386 +2023 20 1.24172 +2023 21 7.84727 +2023 22 3.34406 +2023 23 2.81530 +2023 24 2.27701 +2023 25 1.19726 +2023 26 51.17400 +2023 27 106.91800 +2023 28 56.79980 +2023 29 12.81410 +2023 30 9.71778 +2023 31 59.90460 +2023 32 32.11820 +2023 33 25.32820 +2023 34 4.89837 +2023 35 2.48516 +2023 36 6.60111 +2023 37 1.92757 +2023 38 0.19785 +2023 39 0.13190 +2023 40 0.51562 +2023 41 0.60855 +2023 42 16.84450 +2023 43 95.70410 +2023 44 91.31840 +2023 45 3.08172 +2023 46 13.40910 +2023 47 13.54100 +2023 48 0.21584 +2023 49 2.35326 +2023 50 1.34600 +2023 51 0.99826 +2023 52 1.75070 +2023 53 18.33740 +2023 54 46.39070 +2023 55 30.44250 +2023 56 4.05600 +2023 57 15.87020 +2023 58 8.85844 +2023 59 1.70994 +2023 60 0.17499 +2023 61 0.24727 +2023 62 0.44698 +2023 63 12.88250 +2023 64 17.91910 +2023 65 0.17309 +2023 66 0.00761 +2023 67 0.02092 +2023 68 8.82928 +2023 69 2.78079 +2023 70 0.01902 +2023 71 1.12221 +2023 72 0.56300 +2023 73 0.00000 +2023 74 0.38992 +2023 75 18.79030 +2023 76 17.33330 +2023 77 1.04042 +2023 78 0.91108 +2023 79 5.99714 +2023 80 4.80836 +2023 81 0.01331 +2023 82 0.00190 +2023 83 0.08179 +2023 84 0.34047 +2023 85 7.03756 +2023 86 6.95387 +2023 87 1.19829 +2023 88 0.00000 +2023 89 0.00000 +2023 90 7.53052 +2023 91 7.38889 +2023 92 0.79819 +2023 93 0.02250 +2023 94 0.00000 +2023 95 0.64861 +2023 96 0.69494 +2023 97 0.13105 +2023 98 4.46748 +2023 99 15.81560 +2023 100 22.03030 +2023 101 25.65860 +2023 102 7.65230 +2023 103 0.52683 +2023 104 0.26606 +2023 105 0.09795 +2023 106 0.26474 +2023 107 1.21383 +2023 108 2.51768 +2023 109 1.76449 +2023 110 5.70647 +2023 111 16.83220 +2023 112 9.52401 +2023 113 1.30120 +2023 114 0.03045 +2023 115 0.42094 +2023 116 0.18796 +2023 117 0.04103 +2023 118 0.30842 +2023 119 8.71391 +2023 120 51.08580 +2023 121 40.70600 +2023 122 20.08050 +2023 123 24.84220 +2023 124 10.92690 +2023 125 11.90650 +2023 126 11.38100 +2023 127 9.29422 +2023 128 41.01520 +2023 129 50.31590 +2023 130 5.99432 +2023 131 0.02595 +2023 132 0.00216 +2023 133 0.02162 +2023 134 0.72226 +2023 135 0.90823 +2023 136 0.47141 +2023 137 0.22706 +2023 138 33.04660 +2023 139 19.82320 +2023 140 11.82210 +2023 141 8.16974 +2023 142 14.55550 +2023 143 0.00432 +2023 144 0.00216 +2023 145 0.00216 +2023 146 0.02811 +2023 147 2.12353 +2023 148 21.82990 +2023 149 13.00710 +2023 150 0.94283 +2023 151 0.07015 +2023 152 2.12910 +2023 153 1.44360 +2023 154 0.43567 +2023 155 42.09090 +2023 156 12.59370 +2023 157 0.01600 +2023 158 0.01600 +2023 159 0.00246 +2023 160 0.00369 +2023 161 0.00246 +2023 162 0.00123 +2023 163 0.00123 +2023 164 0.00123 +2023 165 0.00123 +2023 166 1.30699 +2023 167 6.97310 +2023 168 9.06405 +2023 169 11.09710 +2023 170 6.82296 +2023 171 11.10700 +2023 172 33.64220 +2023 173 17.90410 +2023 174 8.70468 +2023 175 3.27241 +2023 176 1.31684 +2023 177 1.51006 +2023 178 0.05292 +2023 179 1.41530 +2023 180 6.13254 +2023 181 7.71593 +2023 182 3.01909 +2023 183 3.88947 +2023 184 3.25831 +2023 185 0.42718 +2023 186 0.12281 +2023 187 3.46229 +2023 188 33.80590 +2023 189 20.52280 +2023 190 2.89521 +2023 191 0.64291 +2023 192 1.35950 +2023 193 0.88853 +2023 194 1.45989 +2023 195 1.24950 +2023 196 0.71873 +2023 197 0.81912 +2023 198 0.14097 +2023 199 0.07796 +2023 200 0.74757 +2023 201 12.83780 +2023 202 1.04445 +2023 203 0.01175 +2023 204 0.01602 +2023 205 0.31718 +2023 206 1.11067 +2023 207 0.85329 +2023 208 0.58524 +2023 209 0.00107 +2023 210 0.00214 +2023 211 0.03631 +2023 212 1.13013 +2023 213 8.98382 +2023 214 0.77163 +2023 215 0.00088 +2023 216 0.00088 +2023 217 0.05814 +2023 218 0.38758 +2023 219 0.85531 +2023 220 0.14622 +2023 221 3.34460 +2023 222 2.15633 +2023 223 0.02995 +2023 224 0.16560 +2023 225 5.49564 +2023 226 5.40051 +2023 227 5.47979 +2023 228 4.77334 +2023 229 0.00000 +2023 230 3.14200 +2023 231 27.01750 +2023 232 5.04905 +2023 233 1.16449 +2023 234 0.00088 +2023 235 0.00264 +2023 236 0.00000 +2023 237 0.02114 +2023 238 0.30918 +2023 239 0.43955 +2023 240 0.15591 +2023 241 0.65271 +2023 242 1.40056 +2023 243 0.00358 +2023 244 0.05946 +2023 245 0.09189 +2023 246 0.82160 +2023 247 8.11061 +2023 248 11.40780 +2023 249 3.69180 +2023 250 0.84322 +2023 251 0.01351 +2023 252 1.57293 +2023 253 18.83200 +2023 254 15.67530 +2023 255 0.10000 +2023 256 0.08378 +2023 257 5.02150 +2023 258 1.96482 +2023 259 0.11892 +2023 260 1.22429 +2023 261 0.00000 +2023 262 0.02973 +2023 263 0.08378 +2023 264 1.46483 +2023 265 13.58620 +2023 266 38.97740 +2023 267 74.61440 +2023 268 41.84760 +2023 269 4.44584 +2023 270 6.41876 +2023 271 7.05929 +2023 272 13.51320 +2023 273 4.18207 +2023 274 3.94073 +2023 275 3.87162 +2023 276 0.00453 +2023 277 0.00000 +2023 278 0.04985 +2023 279 7.41805 +2023 280 25.30320 +2023 281 10.08410 +2023 282 0.46908 +2023 283 0.28666 +2023 284 0.28439 +2023 285 0.29119 +2023 286 1.29280 +2023 287 2.47230 +2023 288 0.42036 +2023 289 7.37046 +2023 290 8.45478 +2023 291 1.36645 +2023 292 0.09971 +2023 293 0.11104 +2023 294 3.44672 +2023 295 3.42859 +2023 296 4.21153 +2023 297 6.98409 +2023 298 1.65085 +2023 299 3.69259 +2023 300 0.06005 +2023 301 0.51554 +2023 302 24.20860 +2023 303 34.71080 +2023 304 14.01850 +2023 305 4.78436 +2023 306 15.84440 +2023 307 12.64750 +2023 308 0.62756 +2023 309 9.56652 +2023 310 18.99090 +2023 311 11.30930 +2023 312 0.88340 +2023 313 1.14361 +2023 314 0.01531 +2023 315 0.00437 +2023 316 0.00000 +2023 317 0.89433 +2023 318 1.14361 +2023 319 0.33018 +2023 320 4.87401 +2023 321 20.43410 +2023 322 23.93930 +2023 323 10.01480 +2023 324 1.16110 +2023 325 1.20921 +2023 326 2.45122 +2023 327 14.47110 +2023 328 16.78680 +2023 329 1.66840 +2023 330 0.36954 +2023 331 4.38420 +2023 332 4.81934 +2023 333 0.34330 +2023 334 0.23701 +2023 335 1.77569 +2023 336 13.91590 +2023 337 27.33700 +2023 338 18.95890 +2023 339 8.46840 +2023 340 0.87280 +2023 341 1.89796 +2023 342 1.47473 +2023 343 1.12486 +2023 344 3.62663 +2023 345 1.99577 +2023 346 1.29039 +2023 347 0.38561 +2023 348 0.00752 +2023 349 0.00188 +2023 350 0.12791 +2023 351 1.76629 +2023 352 2.76888 +2023 353 0.24265 +2023 354 0.00564 +2023 355 0.22008 +2023 356 1.39949 +2023 357 11.94270 +2023 358 33.20020 +2023 359 19.94080 +2023 360 8.67720 +2023 361 4.50319 +2023 362 20.65560 +2023 363 11.74140 +2023 364 27.14140 +2023 365 27.57680 diff --git a/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.slr b/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.slr new file mode 100644 index 00000000..fa57fe02 --- /dev/null +++ b/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.slr @@ -0,0 +1,16074 @@ +IDera5.slr: Solar radiation data - file written by R +nbyr tstep lat lon elev + 44 1 -38.136 176.250 280.000 +1980 1 18.04188 +1980 2 22.19927 +1980 3 25.56023 +1980 4 23.32601 +1980 5 32.00152 +1980 6 22.02785 +1980 7 20.10588 +1980 8 19.08991 +1980 9 19.75778 +1980 10 30.45177 +1980 11 6.37594 +1980 12 27.62631 +1980 13 25.73692 +1980 14 17.53367 +1980 15 6.35452 +1980 16 23.54236 +1980 17 25.59876 +1980 18 21.63050 +1980 19 8.52984 +1980 20 8.33598 +1980 21 5.12334 +1980 22 20.70723 +1980 23 16.64366 +1980 24 19.57997 +1980 25 30.69913 +1980 26 30.31569 +1980 27 24.81477 +1980 28 23.11070 +1980 29 26.92423 +1980 30 22.04556 +1980 31 28.33307 +1980 32 29.54785 +1980 33 27.93563 +1980 34 27.89614 +1980 35 18.34047 +1980 36 24.27823 +1980 37 26.12356 +1980 38 15.54284 +1980 39 27.97468 +1980 40 14.33143 +1980 41 25.87887 +1980 42 20.83372 +1980 43 18.25183 +1980 44 7.76751 +1980 45 7.97318 +1980 46 17.48356 +1980 47 20.49123 +1980 48 11.58728 +1980 49 21.08419 +1980 50 22.42953 +1980 51 13.87964 +1980 52 13.69267 +1980 53 15.86753 +1980 54 18.39059 +1980 55 13.74140 +1980 56 19.37226 +1980 57 17.78656 +1980 58 23.63083 +1980 59 15.71340 +1980 60 6.93315 +1980 61 6.68789 +1980 62 18.01751 +1980 63 19.93429 +1980 64 13.86901 +1980 65 17.89560 +1980 66 16.79314 +1980 67 18.75070 +1980 68 20.37727 +1980 69 20.32906 +1980 70 16.50249 +1980 71 14.61707 +1980 72 21.31756 +1980 73 13.72568 +1980 74 2.76755 +1980 75 15.30032 +1980 76 15.54517 +1980 77 20.52311 +1980 78 13.94453 +1980 79 14.84628 +1980 80 20.20352 +1980 81 19.54731 +1980 82 12.67955 +1980 83 7.68112 +1980 84 12.03034 +1980 85 15.64739 +1980 86 17.51570 +1980 87 13.88491 +1980 88 13.14645 +1980 89 13.10023 +1980 90 12.19510 +1980 91 15.88162 +1980 92 9.96209 +1980 93 14.45187 +1980 94 13.67565 +1980 95 13.47183 +1980 96 8.37691 +1980 97 8.15723 +1980 98 11.01393 +1980 99 11.68258 +1980 100 12.27407 +1980 101 9.19149 +1980 102 13.61578 +1980 103 11.92614 +1980 104 12.32375 +1980 105 15.93372 +1980 106 12.61950 +1980 107 13.79851 +1980 108 14.93243 +1980 109 16.16587 +1980 110 15.93795 +1980 111 12.89935 +1980 112 14.28866 +1980 113 12.12140 +1980 114 10.32592 +1980 115 12.86703 +1980 116 8.67154 +1980 117 3.44235 +1980 118 4.06619 +1980 119 7.72496 +1980 120 10.49112 +1980 121 11.04693 +1980 122 13.33057 +1980 123 9.42477 +1980 124 11.66694 +1980 125 12.29170 +1980 126 8.62734 +1980 127 6.19866 +1980 128 12.65898 +1980 129 9.97557 +1980 130 12.41724 +1980 131 10.76916 +1980 132 11.57639 +1980 133 8.68856 +1980 134 5.40867 +1980 135 6.46427 +1980 136 4.39347 +1980 137 5.58177 +1980 138 4.99294 +1980 139 9.21154 +1980 140 8.66601 +1980 141 5.54307 +1980 142 8.96927 +1980 143 7.72294 +1980 144 4.57976 +1980 145 6.34370 +1980 146 7.81481 +1980 147 7.39652 +1980 148 10.54054 +1980 149 10.46762 +1980 150 9.83923 +1980 151 6.86022 +1980 152 5.11555 +1980 153 2.65775 +1980 154 4.79148 +1980 155 1.08693 +1980 156 6.64603 +1980 157 7.04939 +1980 158 2.50274 +1980 159 7.20182 +1980 160 8.22429 +1980 161 6.90729 +1980 162 5.36488 +1980 163 6.65232 +1980 164 7.56401 +1980 165 9.71698 +1980 166 8.69365 +1980 167 7.85951 +1980 168 9.05394 +1980 169 8.53560 +1980 170 8.08590 +1980 171 8.83786 +1980 172 2.61803 +1980 173 4.09052 +1980 174 8.24559 +1980 175 5.26380 +1980 176 3.98201 +1980 177 8.12546 +1980 178 8.78800 +1980 179 7.27045 +1980 180 6.81396 +1980 181 1.75058 +1980 182 3.88005 +1980 183 4.56200 +1980 184 1.86424 +1980 185 3.68397 +1980 186 7.73706 +1980 187 5.38749 +1980 188 9.05904 +1980 189 5.73749 +1980 190 4.32354 +1980 191 8.38714 +1980 192 7.48405 +1980 193 9.25508 +1980 194 9.69961 +1980 195 7.85163 +1980 196 7.78818 +1980 197 10.03571 +1980 198 10.80380 +1980 199 8.13030 +1980 200 8.80381 +1980 201 4.29202 +1980 202 3.42793 +1980 203 3.96425 +1980 204 7.52649 +1980 205 9.67395 +1980 206 7.10496 +1980 207 10.93392 +1980 208 9.04306 +1980 209 10.25378 +1980 210 11.45007 +1980 211 11.76163 +1980 212 2.19222 +1980 213 1.51811 +1980 214 7.82951 +1980 215 9.55187 +1980 216 9.02724 +1980 217 9.12349 +1980 218 9.54305 +1980 219 8.57575 +1980 220 12.41577 +1980 221 10.29741 +1980 222 12.92535 +1980 223 13.07016 +1980 224 8.69797 +1980 225 2.50378 +1980 226 13.97961 +1980 227 13.54182 +1980 228 2.89870 +1980 229 10.86169 +1980 230 13.24244 +1980 231 13.74088 +1980 232 10.36973 +1980 233 9.77892 +1980 234 6.20571 +1980 235 10.99846 +1980 236 11.58538 +1980 237 4.20127 +1980 238 8.48364 +1980 239 1.63116 +1980 240 1.31591 +1980 241 12.12252 +1980 242 12.02783 +1980 243 12.54830 +1980 244 8.35680 +1980 245 12.25964 +1980 246 9.15045 +1980 247 5.79516 +1980 248 3.67056 +1980 249 12.53016 +1980 250 11.34501 +1980 251 11.37318 +1980 252 15.09546 +1980 253 8.80692 +1980 254 15.70700 +1980 255 13.81346 +1980 256 10.91621 +1980 257 18.70042 +1980 258 16.27888 +1980 259 12.50536 +1980 260 16.15723 +1980 261 12.74149 +1980 262 10.03622 +1980 263 15.19465 +1980 264 17.29175 +1980 265 13.89770 +1980 266 12.96778 +1980 267 17.68928 +1980 268 17.83469 +1980 269 13.44315 +1980 270 8.47223 +1980 271 16.76877 +1980 272 18.06814 +1980 273 17.66206 +1980 274 21.76710 +1980 275 18.25019 +1980 276 15.35864 +1980 277 14.66588 +1980 278 8.72122 +1980 279 12.97106 +1980 280 9.22069 +1980 281 7.86765 +1980 282 9.44551 +1980 283 17.64642 +1980 284 4.89421 +1980 285 21.28101 +1980 286 22.40974 +1980 287 22.74013 +1980 288 14.17211 +1980 289 17.73274 +1980 290 17.11178 +1980 291 18.82855 +1980 292 21.28283 +1980 293 22.24722 +1980 294 14.98487 +1980 295 9.57260 +1980 296 27.03689 +1980 297 28.64981 +1980 298 26.52290 +1980 299 26.18110 +1980 300 24.53363 +1980 301 19.86180 +1980 302 11.80112 +1980 303 19.27377 +1980 304 19.90431 +1980 305 21.44863 +1980 306 21.93515 +1980 307 20.75622 +1980 308 20.86188 +1980 309 18.98649 +1980 310 21.85419 +1980 311 11.53060 +1980 312 17.45004 +1980 313 17.22954 +1980 314 24.99396 +1980 315 21.88555 +1980 316 22.05196 +1980 317 18.40234 +1980 318 31.21131 +1980 319 29.65101 +1980 320 23.58392 +1980 321 25.90635 +1980 322 17.78233 +1980 323 20.27825 +1980 324 30.45825 +1980 325 31.71502 +1980 326 29.00664 +1980 327 16.69343 +1980 328 21.57909 +1980 329 24.12755 +1980 330 24.67031 +1980 331 14.60609 +1980 332 18.47923 +1980 333 18.26375 +1980 334 5.41946 +1980 335 22.45432 +1980 336 22.44724 +1980 337 26.18732 +1980 338 25.79558 +1980 339 20.22296 +1980 340 16.67261 +1980 341 24.63091 +1980 342 28.43286 +1980 343 21.04056 +1980 344 24.17895 +1980 345 29.99082 +1980 346 29.38110 +1980 347 30.62517 +1980 348 25.55893 +1980 349 30.22747 +1980 350 31.31482 +1980 351 29.49091 +1980 352 26.29981 +1980 353 10.63895 +1980 354 8.73556 +1980 355 23.21525 +1980 356 13.89243 +1980 357 16.07299 +1980 358 21.56026 +1980 359 18.78967 +1980 360 16.05321 +1980 361 13.83117 +1980 362 20.28637 +1980 363 24.02222 +1980 364 17.48546 +1980 365 22.28783 +1980 366 27.03534 +1981 1 25.17368 +1981 2 29.32520 +1981 3 27.26447 +1981 4 27.40236 +1981 5 32.22219 +1981 6 32.72530 +1981 7 25.82885 +1981 8 33.23998 +1981 9 33.41304 +1981 10 11.74401 +1981 11 18.24526 +1981 12 11.51297 +1981 13 17.80531 +1981 14 17.73481 +1981 15 15.75029 +1981 16 11.16625 +1981 17 11.32091 +1981 18 11.31883 +1981 19 4.28667 +1981 20 23.24454 +1981 21 25.60317 +1981 22 16.03973 +1981 23 25.86730 +1981 24 30.40511 +1981 25 29.36572 +1981 26 28.59849 +1981 27 30.07463 +1981 28 28.05175 +1981 29 23.02033 +1981 30 21.69530 +1981 31 6.03754 +1981 32 30.06141 +1981 33 12.75264 +1981 34 28.83470 +1981 35 28.92612 +1981 36 23.40706 +1981 37 10.28065 +1981 38 7.64908 +1981 39 26.46536 +1981 40 14.94901 +1981 41 12.16452 +1981 42 14.52738 +1981 43 4.55953 +1981 44 5.98537 +1981 45 13.44203 +1981 46 23.89159 +1981 47 16.04552 +1981 48 18.65704 +1981 49 25.63091 +1981 50 23.72276 +1981 51 21.95554 +1981 52 26.41308 +1981 53 14.50872 +1981 54 22.21767 +1981 55 20.24559 +1981 56 23.06604 +1981 57 22.44249 +1981 58 13.94479 +1981 59 8.22778 +1981 60 18.08706 +1981 61 17.17667 +1981 62 16.50404 +1981 63 14.69180 +1981 64 12.86107 +1981 65 10.41422 +1981 66 10.90904 +1981 67 6.17561 +1981 68 15.26368 +1981 69 20.24404 +1981 70 12.42130 +1981 71 19.39654 +1981 72 20.87433 +1981 73 14.37748 +1981 74 12.56567 +1981 75 9.72553 +1981 76 8.51348 +1981 77 15.31017 +1981 78 17.40286 +1981 79 14.56237 +1981 80 7.67305 +1981 81 13.62338 +1981 82 11.02170 +1981 83 6.35381 +1981 84 6.11274 +1981 85 12.37706 +1981 86 15.77336 +1981 87 18.08922 +1981 88 16.23914 +1981 89 17.32476 +1981 90 18.53755 +1981 91 17.33581 +1981 92 16.20320 +1981 93 16.55605 +1981 94 14.65923 +1981 95 16.03403 +1981 96 16.14747 +1981 97 15.72420 +1981 98 12.69838 +1981 99 11.17506 +1981 100 12.69899 +1981 101 2.41860 +1981 102 2.88850 +1981 103 6.30327 +1981 104 8.73945 +1981 105 8.64579 +1981 106 10.95949 +1981 107 12.14905 +1981 108 16.20052 +1981 109 12.60377 +1981 110 7.63565 +1981 111 10.82367 +1981 112 10.76604 +1981 113 8.19710 +1981 114 10.90342 +1981 115 13.10584 +1981 116 12.24245 +1981 117 10.13005 +1981 118 9.70929 +1981 119 10.11459 +1981 120 11.69450 +1981 121 13.12001 +1981 122 12.04718 +1981 123 11.39892 +1981 124 11.56136 +1981 125 11.32885 +1981 126 4.73984 +1981 127 1.29102 +1981 128 3.55152 +1981 129 6.29602 +1981 130 6.32950 +1981 131 9.17654 +1981 132 9.76346 +1981 133 10.05074 +1981 134 10.23157 +1981 135 9.82558 +1981 136 10.95111 +1981 137 6.42994 +1981 138 6.58269 +1981 139 1.38100 +1981 140 8.31965 +1981 141 10.17230 +1981 142 7.71074 +1981 143 9.53035 +1981 144 9.82662 +1981 145 9.25085 +1981 146 9.95345 +1981 147 9.40879 +1981 148 9.90282 +1981 149 9.76139 +1981 150 7.22549 +1981 151 3.06533 +1981 152 5.00162 +1981 153 1.00035 +1981 154 5.36948 +1981 155 7.55098 +1981 156 3.50666 +1981 157 4.20486 +1981 158 6.91711 +1981 159 6.80373 +1981 160 8.65348 +1981 161 8.50714 +1981 162 5.14306 +1981 163 1.81240 +1981 164 3.97607 +1981 165 6.10743 +1981 166 6.44659 +1981 167 6.12997 +1981 168 7.66182 +1981 169 6.09812 +1981 170 7.65851 +1981 171 9.53536 +1981 172 8.56170 +1981 173 7.43162 +1981 174 8.08362 +1981 175 9.47989 +1981 176 3.77629 +1981 177 0.71274 +1981 178 4.14526 +1981 179 6.14510 +1981 180 6.23373 +1981 181 9.65287 +1981 182 7.63138 +1981 183 6.06170 +1981 184 6.61782 +1981 185 4.44701 +1981 186 5.54498 +1981 187 6.35786 +1981 188 6.38937 +1981 189 6.28077 +1981 190 3.64857 +1981 191 2.99379 +1981 192 8.26739 +1981 193 9.92710 +1981 194 10.23356 +1981 195 8.62675 +1981 196 9.30813 +1981 197 9.20592 +1981 198 6.73035 +1981 199 5.09896 +1981 200 11.18768 +1981 201 9.58729 +1981 202 9.52119 +1981 203 10.09575 +1981 204 5.17998 +1981 205 4.33822 +1981 206 7.88233 +1981 207 8.93229 +1981 208 8.30378 +1981 209 10.39055 +1981 210 1.24575 +1981 211 9.18441 +1981 212 8.70091 +1981 213 10.57113 +1981 214 8.19444 +1981 215 10.90757 +1981 216 11.46666 +1981 217 10.51764 +1981 218 5.09007 +1981 219 5.25403 +1981 220 10.95457 +1981 221 10.06836 +1981 222 8.88451 +1981 223 12.33628 +1981 224 11.03993 +1981 225 9.89505 +1981 226 7.03296 +1981 227 12.09038 +1981 228 14.25894 +1981 229 10.41699 +1981 230 4.81377 +1981 231 11.26587 +1981 232 11.66720 +1981 233 5.56742 +1981 234 9.09930 +1981 235 8.71016 +1981 236 12.68758 +1981 237 15.34464 +1981 238 14.71530 +1981 239 13.78132 +1981 240 15.31120 +1981 241 15.42119 +1981 242 5.62242 +1981 243 3.72245 +1981 244 3.83469 +1981 245 12.40471 +1981 246 13.54527 +1981 247 11.04926 +1981 248 16.94226 +1981 249 13.48514 +1981 250 10.63791 +1981 251 13.62796 +1981 252 6.88283 +1981 253 13.70822 +1981 254 11.06058 +1981 255 6.44890 +1981 256 7.73362 +1981 257 17.00006 +1981 258 10.62971 +1981 259 19.78785 +1981 260 20.29009 +1981 261 13.92353 +1981 262 12.32652 +1981 263 12.71125 +1981 264 12.07328 +1981 265 11.88778 +1981 266 8.83112 +1981 267 7.44934 +1981 268 17.43327 +1981 269 19.04636 +1981 270 5.73000 +1981 271 17.89629 +1981 272 19.19125 +1981 273 21.76658 +1981 274 15.53109 +1981 275 11.36471 +1981 276 14.79116 +1981 277 12.51850 +1981 278 7.20991 +1981 279 24.63713 +1981 280 20.93636 +1981 281 21.54997 +1981 282 19.11695 +1981 283 14.20986 +1981 284 21.89540 +1981 285 14.02877 +1981 286 19.57236 +1981 287 19.07194 +1981 288 12.58209 +1981 289 10.17559 +1981 290 10.26311 +1981 291 24.82315 +1981 292 15.86857 +1981 293 16.56556 +1981 294 17.83996 +1981 295 14.95195 +1981 296 7.41752 +1981 297 15.31596 +1981 298 22.03718 +1981 299 26.43805 +1981 300 20.62187 +1981 301 25.37922 +1981 302 28.71245 +1981 303 16.23957 +1981 304 22.01826 +1981 305 19.39628 +1981 306 16.22860 +1981 307 28.20753 +1981 308 27.20537 +1981 309 16.64652 +1981 310 12.86047 +1981 311 8.41161 +1981 312 20.51076 +1981 313 20.62403 +1981 314 17.95288 +1981 315 21.56285 +1981 316 15.10773 +1981 317 11.99042 +1981 318 7.97038 +1981 319 23.49847 +1981 320 21.43670 +1981 321 26.27001 +1981 322 27.61292 +1981 323 21.95510 +1981 324 24.94627 +1981 325 17.03687 +1981 326 23.72795 +1981 327 24.71532 +1981 328 31.13977 +1981 329 17.71701 +1981 330 30.23456 +1981 331 17.33063 +1981 332 7.18933 +1981 333 11.10396 +1981 334 15.73137 +1981 335 21.14130 +1981 336 20.40949 +1981 337 31.26038 +1981 338 22.68458 +1981 339 22.56949 +1981 340 13.73872 +1981 341 5.85941 +1981 342 19.55889 +1981 343 16.83858 +1981 344 32.71657 +1981 345 29.49998 +1981 346 27.83678 +1981 347 33.06139 +1981 348 32.16750 +1981 349 16.57092 +1981 350 16.20181 +1981 351 21.08532 +1981 352 13.50959 +1981 353 16.31275 +1981 354 20.16662 +1981 355 22.03727 +1981 356 21.03149 +1981 357 22.87259 +1981 358 21.59853 +1981 359 23.50460 +1981 360 19.44432 +1981 361 28.56704 +1981 362 25.50623 +1981 363 19.44847 +1981 364 12.68594 +1981 365 11.43089 +1982 1 25.29576 +1982 2 25.92544 +1982 3 27.82901 +1982 4 38.08529 +1982 5 13.27424 +1982 6 22.86135 +1982 7 27.88482 +1982 8 22.74022 +1982 9 23.16298 +1982 10 26.92008 +1982 11 30.64522 +1982 12 31.56278 +1982 13 25.98013 +1982 14 27.92388 +1982 15 31.75088 +1982 16 27.04277 +1982 17 23.33483 +1982 18 19.37451 +1982 19 32.94380 +1982 20 31.17545 +1982 21 18.79148 +1982 22 11.29810 +1982 23 20.64442 +1982 24 21.19902 +1982 25 17.14435 +1982 26 16.78692 +1982 27 31.44874 +1982 28 23.28368 +1982 29 28.59659 +1982 30 21.56458 +1982 31 20.82689 +1982 32 8.88408 +1982 33 29.45462 +1982 34 25.80509 +1982 35 11.32367 +1982 36 22.44871 +1982 37 30.40667 +1982 38 29.85319 +1982 39 25.90229 +1982 40 22.09559 +1982 41 19.82966 +1982 42 27.88430 +1982 43 28.44495 +1982 44 22.76027 +1982 45 28.77682 +1982 46 28.74053 +1982 47 25.43936 +1982 48 16.90191 +1982 49 19.39188 +1982 50 8.35434 +1982 51 21.19245 +1982 52 10.04124 +1982 53 2.96089 +1982 54 4.12918 +1982 55 15.19569 +1982 56 17.66431 +1982 57 20.83778 +1982 58 19.12628 +1982 59 4.41875 +1982 60 11.32229 +1982 61 17.04629 +1982 62 23.75732 +1982 63 21.90396 +1982 64 15.59684 +1982 65 10.75594 +1982 66 17.54896 +1982 67 16.99911 +1982 68 16.52858 +1982 69 15.52081 +1982 70 14.67331 +1982 71 13.37066 +1982 72 12.46890 +1982 73 20.00013 +1982 74 18.30324 +1982 75 18.29537 +1982 76 18.54999 +1982 77 18.82621 +1982 78 18.98191 +1982 79 13.81424 +1982 80 13.86331 +1982 81 17.98321 +1982 82 12.34803 +1982 83 11.71498 +1982 84 17.35620 +1982 85 17.46066 +1982 86 17.89491 +1982 87 18.83373 +1982 88 13.71021 +1982 89 2.33042 +1982 90 9.79698 +1982 91 15.38698 +1982 92 11.02637 +1982 93 8.48378 +1982 94 15.84230 +1982 95 12.76741 +1982 96 15.65499 +1982 97 8.55237 +1982 98 1.18740 +1982 99 4.34728 +1982 100 13.33567 +1982 101 16.68851 +1982 102 12.05021 +1982 103 10.84363 +1982 104 10.84009 +1982 105 10.53890 +1982 106 14.08432 +1982 107 14.51166 +1982 108 13.94073 +1982 109 14.59080 +1982 110 14.19612 +1982 111 13.67893 +1982 112 13.19967 +1982 113 13.24547 +1982 114 13.43347 +1982 115 12.08529 +1982 116 13.41420 +1982 117 12.43702 +1982 118 7.73569 +1982 119 8.41519 +1982 120 9.69589 +1982 121 12.66209 +1982 122 10.88700 +1982 123 11.62884 +1982 124 11.27805 +1982 125 10.63627 +1982 126 6.31555 +1982 127 3.05959 +1982 128 11.94108 +1982 129 8.89911 +1982 130 8.11239 +1982 131 5.69614 +1982 132 7.84522 +1982 133 6.08853 +1982 134 7.98412 +1982 135 10.27797 +1982 136 8.67603 +1982 137 11.23511 +1982 138 8.15949 +1982 139 5.54269 +1982 140 9.06863 +1982 141 3.44873 +1982 142 7.41158 +1982 143 7.17892 +1982 144 7.70046 +1982 145 9.56042 +1982 146 8.51260 +1982 147 9.93246 +1982 148 8.16534 +1982 149 9.63706 +1982 150 9.12358 +1982 151 9.05075 +1982 152 6.87641 +1982 153 6.53468 +1982 154 2.61929 +1982 155 7.21418 +1982 156 7.41605 +1982 157 9.51687 +1982 158 6.87279 +1982 159 9.69460 +1982 160 9.74100 +1982 161 9.40153 +1982 162 8.92633 +1982 163 9.44179 +1982 164 9.68993 +1982 165 9.38857 +1982 166 6.36925 +1982 167 6.27047 +1982 168 6.32072 +1982 169 8.10073 +1982 170 8.77159 +1982 171 3.81926 +1982 172 1.39878 +1982 173 6.69337 +1982 174 4.05583 +1982 175 6.34145 +1982 176 5.94721 +1982 177 9.41985 +1982 178 7.54280 +1982 179 4.62119 +1982 180 5.31123 +1982 181 6.99270 +1982 182 6.02065 +1982 183 5.48654 +1982 184 6.24598 +1982 185 8.62693 +1982 186 7.48245 +1982 187 9.51005 +1982 188 4.82629 +1982 189 10.14604 +1982 190 10.06595 +1982 191 9.56033 +1982 192 9.04003 +1982 193 7.68710 +1982 194 2.60372 +1982 195 10.31746 +1982 196 7.50482 +1982 197 7.74533 +1982 198 6.37837 +1982 199 7.18997 +1982 200 3.53747 +1982 201 5.06034 +1982 202 10.57787 +1982 203 9.83422 +1982 204 10.89936 +1982 205 10.28160 +1982 206 8.46191 +1982 207 4.52661 +1982 208 3.21635 +1982 209 2.52121 +1982 210 5.01804 +1982 211 9.41276 +1982 212 5.84728 +1982 213 8.51055 +1982 214 12.66918 +1982 215 7.13656 +1982 216 8.08428 +1982 217 8.28824 +1982 218 9.27158 +1982 219 8.35552 +1982 220 11.93659 +1982 221 10.05869 +1982 222 8.23346 +1982 223 9.13758 +1982 224 8.02073 +1982 225 7.22777 +1982 226 10.51851 +1982 227 10.35444 +1982 228 13.13159 +1982 229 7.57559 +1982 230 15.08319 +1982 231 9.33569 +1982 232 14.92258 +1982 233 12.30198 +1982 234 13.25186 +1982 235 9.87708 +1982 236 9.09533 +1982 237 13.13220 +1982 238 13.28426 +1982 239 12.14110 +1982 240 9.81832 +1982 241 15.23923 +1982 242 12.87559 +1982 243 7.53468 +1982 244 15.59753 +1982 245 16.62906 +1982 246 7.07633 +1982 247 11.09998 +1982 248 14.90348 +1982 249 17.02434 +1982 250 1.70995 +1982 251 14.04743 +1982 252 17.52944 +1982 253 4.48477 +1982 254 14.13962 +1982 255 13.10308 +1982 256 14.66916 +1982 257 16.54828 +1982 258 16.81802 +1982 259 16.86476 +1982 260 15.24554 +1982 261 13.19311 +1982 262 9.24186 +1982 263 12.36972 +1982 264 12.48877 +1982 265 15.62414 +1982 266 15.57844 +1982 267 8.91639 +1982 268 12.72845 +1982 269 13.16477 +1982 270 16.00309 +1982 271 17.13493 +1982 272 21.71120 +1982 273 15.88404 +1982 274 16.10401 +1982 275 23.42045 +1982 276 18.84833 +1982 277 10.72846 +1982 278 16.35396 +1982 279 20.20663 +1982 280 19.23644 +1982 281 17.52581 +1982 282 11.28419 +1982 283 14.80481 +1982 284 16.14341 +1982 285 16.04932 +1982 286 13.36461 +1982 287 8.05949 +1982 288 22.14216 +1982 289 18.93231 +1982 290 3.35476 +1982 291 8.03498 +1982 292 15.15447 +1982 293 19.62636 +1982 294 25.87801 +1982 295 21.17422 +1982 296 21.97325 +1982 297 18.26142 +1982 298 17.97742 +1982 299 18.37002 +1982 300 28.83185 +1982 301 18.28907 +1982 302 17.25624 +1982 303 21.33829 +1982 304 15.31846 +1982 305 19.22340 +1982 306 17.45487 +1982 307 22.03779 +1982 308 23.60457 +1982 309 28.08907 +1982 310 27.99472 +1982 311 29.26912 +1982 312 23.60094 +1982 313 27.15422 +1982 314 18.74128 +1982 315 14.64463 +1982 316 29.10514 +1982 317 29.51649 +1982 318 27.26741 +1982 319 26.59038 +1982 320 27.33342 +1982 321 24.28687 +1982 322 11.38476 +1982 323 19.75527 +1982 324 22.20342 +1982 325 25.11112 +1982 326 22.51627 +1982 327 16.32407 +1982 328 31.01561 +1982 329 23.11934 +1982 330 15.66173 +1982 331 21.94353 +1982 332 18.94933 +1982 333 26.82046 +1982 334 26.65872 +1982 335 20.61798 +1982 336 16.95436 +1982 337 31.07972 +1982 338 7.79373 +1982 339 20.34193 +1982 340 24.61026 +1982 341 25.69337 +1982 342 30.72237 +1982 343 17.79175 +1982 344 14.38059 +1982 345 25.59842 +1982 346 16.93034 +1982 347 31.92022 +1982 348 28.86080 +1982 349 30.47509 +1982 350 32.16707 +1982 351 32.37831 +1982 352 25.08814 +1982 353 19.59794 +1982 354 7.87304 +1982 355 28.20234 +1982 356 27.19803 +1982 357 24.57320 +1982 358 17.97224 +1982 359 4.89185 +1982 360 26.81821 +1982 361 20.46349 +1982 362 24.81166 +1982 363 26.10343 +1982 364 24.53043 +1982 365 24.37171 +1983 1 21.24585 +1983 2 31.83771 +1983 3 30.46533 +1983 4 19.47923 +1983 5 20.22477 +1983 6 24.38640 +1983 7 21.60484 +1983 8 28.31777 +1983 9 32.20188 +1983 10 32.56088 +1983 11 30.40978 +1983 12 7.32854 +1983 13 24.26008 +1983 14 21.35532 +1983 15 20.32007 +1983 16 20.72943 +1983 17 22.13093 +1983 18 10.32903 +1983 19 22.33924 +1983 20 27.97001 +1983 21 13.96207 +1983 22 22.31323 +1983 23 28.90037 +1983 24 12.97210 +1983 25 23.53139 +1983 26 30.62111 +1983 27 31.14668 +1983 28 23.40861 +1983 29 27.93226 +1983 30 20.85420 +1983 31 29.26342 +1983 32 27.65759 +1983 33 29.72523 +1983 34 24.40826 +1983 35 22.01265 +1983 36 24.67956 +1983 37 13.94729 +1983 38 18.30635 +1983 39 19.13527 +1983 40 18.12378 +1983 41 29.76281 +1983 42 25.24954 +1983 43 12.46009 +1983 44 6.06763 +1983 45 21.50487 +1983 46 23.26692 +1983 47 16.50758 +1983 48 23.33742 +1983 49 21.85574 +1983 50 17.02590 +1983 51 16.16458 +1983 52 20.98699 +1983 53 15.25971 +1983 54 25.45862 +1983 55 22.86714 +1983 56 17.51449 +1983 57 14.66001 +1983 58 17.62197 +1983 59 15.61153 +1983 60 25.74418 +1983 61 13.70192 +1983 62 25.56611 +1983 63 24.71757 +1983 64 21.92685 +1983 65 24.25326 +1983 66 20.67543 +1983 67 13.28918 +1983 68 20.55931 +1983 69 23.04504 +1983 70 18.28328 +1983 71 13.26456 +1983 72 13.80620 +1983 73 19.58109 +1983 74 5.93057 +1983 75 23.13550 +1983 76 16.44857 +1983 77 15.99540 +1983 78 10.54918 +1983 79 20.85782 +1983 80 16.86338 +1983 81 8.29857 +1983 82 8.47740 +1983 83 14.08337 +1983 84 17.48667 +1983 85 12.21817 +1983 86 12.51003 +1983 87 16.22817 +1983 88 18.87564 +1983 89 14.24477 +1983 90 10.84536 +1983 91 7.06831 +1983 92 5.45789 +1983 93 4.43478 +1983 94 18.18582 +1983 95 15.26723 +1983 96 3.21611 +1983 97 2.17474 +1983 98 15.31241 +1983 99 11.70884 +1983 100 17.55838 +1983 101 13.28659 +1983 102 11.56352 +1983 103 7.68348 +1983 104 9.27625 +1983 105 8.86291 +1983 106 10.89323 +1983 107 11.94273 +1983 108 2.13311 +1983 109 4.88554 +1983 110 9.52154 +1983 111 10.96096 +1983 112 9.20946 +1983 113 12.41438 +1983 114 8.30765 +1983 115 7.02997 +1983 116 7.60981 +1983 117 14.03620 +1983 118 10.89927 +1983 119 7.41544 +1983 120 9.34796 +1983 121 10.80821 +1983 122 10.23503 +1983 123 8.46807 +1983 124 4.81519 +1983 125 8.16617 +1983 126 10.10742 +1983 127 10.31331 +1983 128 9.02655 +1983 129 6.21558 +1983 130 8.61956 +1983 131 8.67015 +1983 132 9.50737 +1983 133 11.75800 +1983 134 11.87646 +1983 135 7.93149 +1983 136 2.73440 +1983 137 9.41890 +1983 138 6.42324 +1983 139 8.17893 +1983 140 7.71320 +1983 141 7.92234 +1983 142 9.25508 +1983 143 11.03561 +1983 144 9.10976 +1983 145 7.04534 +1983 146 7.01109 +1983 147 6.56642 +1983 148 6.17217 +1983 149 1.66060 +1983 150 3.84905 +1983 151 7.57990 +1983 152 8.15721 +1983 153 10.23002 +1983 154 10.30726 +1983 155 8.60306 +1983 156 6.00946 +1983 157 2.05097 +1983 158 5.14591 +1983 159 1.92436 +1983 160 1.42106 +1983 161 3.16231 +1983 162 3.66314 +1983 163 6.73142 +1983 164 6.64991 +1983 165 6.87482 +1983 166 6.52463 +1983 167 9.22692 +1983 168 8.69409 +1983 169 8.69201 +1983 170 8.61426 +1983 171 9.41734 +1983 172 6.45005 +1983 173 3.99012 +1983 174 6.56150 +1983 175 8.73988 +1983 176 6.95155 +1983 177 1.73124 +1983 178 6.55887 +1983 179 4.79885 +1983 180 4.51731 +1983 181 8.19711 +1983 182 7.37218 +1983 183 9.49856 +1983 184 8.99467 +1983 185 7.58284 +1983 186 9.74307 +1983 187 5.38721 +1983 188 5.51299 +1983 189 2.32841 +1983 190 1.64050 +1983 191 6.23574 +1983 192 9.78169 +1983 193 6.95866 +1983 194 8.29454 +1983 195 8.04848 +1983 196 8.54154 +1983 197 8.84866 +1983 198 6.77522 +1983 199 9.70237 +1983 200 9.66997 +1983 201 9.99276 +1983 202 5.92745 +1983 203 9.51566 +1983 204 10.17844 +1983 205 11.38069 +1983 206 11.49284 +1983 207 10.96001 +1983 208 11.48593 +1983 209 11.07795 +1983 210 10.17792 +1983 211 9.43212 +1983 212 2.71703 +1983 213 5.48283 +1983 214 8.45588 +1983 215 6.36543 +1983 216 10.46961 +1983 217 12.51409 +1983 218 8.84857 +1983 219 10.71792 +1983 220 6.63588 +1983 221 7.73341 +1983 222 11.62028 +1983 223 13.14101 +1983 224 10.80251 +1983 225 11.55358 +1983 226 13.52773 +1983 227 14.34525 +1983 228 13.84033 +1983 229 9.51290 +1983 230 6.95184 +1983 231 5.24574 +1983 232 1.71534 +1983 233 11.84881 +1983 234 12.80932 +1983 235 11.03527 +1983 236 14.39891 +1983 237 12.38466 +1983 238 10.15675 +1983 239 9.61891 +1983 240 7.00498 +1983 241 12.62468 +1983 242 14.40081 +1983 243 12.94263 +1983 244 14.00579 +1983 245 11.80526 +1983 246 17.76816 +1983 247 17.97699 +1983 248 9.79318 +1983 249 15.66207 +1983 250 5.48146 +1983 251 14.01183 +1983 252 4.44566 +1983 253 14.23224 +1983 254 14.05011 +1983 255 15.51848 +1983 256 12.86306 +1983 257 12.85019 +1983 258 19.15289 +1983 259 14.13608 +1983 260 15.95583 +1983 261 12.92190 +1983 262 12.19787 +1983 263 10.77823 +1983 264 12.36133 +1983 265 21.56129 +1983 266 12.10550 +1983 267 13.85139 +1983 268 10.86998 +1983 269 14.52669 +1983 270 16.48659 +1983 271 21.74342 +1983 272 11.02265 +1983 273 12.43693 +1983 274 21.91916 +1983 275 15.02919 +1983 276 10.54892 +1983 277 2.85773 +1983 278 3.40550 +1983 279 9.68216 +1983 280 4.04971 +1983 281 14.99239 +1983 282 16.03506 +1983 283 21.09102 +1983 284 18.75442 +1983 285 16.47242 +1983 286 17.61955 +1983 287 18.07592 +1983 288 22.99735 +1983 289 22.74195 +1983 290 24.42113 +1983 291 14.47295 +1983 292 13.81182 +1983 293 14.22507 +1983 294 4.15841 +1983 295 12.34958 +1983 296 9.87509 +1983 297 10.06456 +1983 298 8.45342 +1983 299 13.04070 +1983 300 9.94533 +1983 301 6.76951 +1983 302 12.67739 +1983 303 17.62966 +1983 304 19.60174 +1983 305 15.93138 +1983 306 19.76193 +1983 307 18.57712 +1983 308 11.32013 +1983 309 5.34374 +1983 310 5.69943 +1983 311 11.12443 +1983 312 23.13429 +1983 313 26.83593 +1983 314 22.13965 +1983 315 23.65718 +1983 316 19.40164 +1983 317 20.73876 +1983 318 28.76066 +1983 319 30.36986 +1983 320 30.83417 +1983 321 16.70492 +1983 322 23.47168 +1983 323 26.95974 +1983 324 20.73263 +1983 325 22.99164 +1983 326 22.70886 +1983 327 24.10966 +1983 328 26.52454 +1983 329 21.63205 +1983 330 18.71268 +1983 331 27.19060 +1983 332 19.62127 +1983 333 15.81466 +1983 334 20.37969 +1983 335 24.24410 +1983 336 20.20732 +1983 337 16.23966 +1983 338 23.55869 +1983 339 12.11579 +1983 340 4.87105 +1983 341 15.39389 +1983 342 8.81306 +1983 343 19.72063 +1983 344 19.01059 +1983 345 25.05660 +1983 346 24.06275 +1983 347 27.45766 +1983 348 31.03134 +1983 349 27.37420 +1983 350 19.77748 +1983 351 24.62322 +1983 352 16.89284 +1983 353 23.30916 +1983 354 29.85310 +1983 355 20.15401 +1983 356 30.70345 +1983 357 22.32611 +1983 358 25.57656 +1983 359 18.63354 +1983 360 14.61266 +1983 361 19.05258 +1983 362 27.27942 +1983 363 30.06107 +1983 364 24.35936 +1983 365 22.87371 +1984 1 24.19070 +1984 2 29.00966 +1984 3 31.66620 +1984 4 23.15062 +1984 5 22.27254 +1984 6 18.15558 +1984 7 29.97035 +1984 8 24.31417 +1984 9 30.58465 +1984 10 22.48957 +1984 11 18.30643 +1984 12 21.46167 +1984 13 23.60992 +1984 14 26.84560 +1984 15 23.66833 +1984 16 28.16623 +1984 17 19.01215 +1984 18 9.31634 +1984 19 24.94791 +1984 20 30.25935 +1984 21 28.99809 +1984 22 14.70398 +1984 23 30.60573 +1984 24 28.11318 +1984 25 29.55519 +1984 26 23.96840 +1984 27 24.41241 +1984 28 10.33059 +1984 29 18.36734 +1984 30 27.68377 +1984 31 16.55372 +1984 32 19.63613 +1984 33 12.88630 +1984 34 21.34616 +1984 35 22.70264 +1984 36 19.71994 +1984 37 18.84073 +1984 38 21.48396 +1984 39 21.83717 +1984 40 21.93610 +1984 41 15.17633 +1984 42 16.18756 +1984 43 22.26753 +1984 44 27.30871 +1984 45 27.14679 +1984 46 15.34438 +1984 47 15.56358 +1984 48 19.97317 +1984 49 18.30341 +1984 50 28.15474 +1984 51 24.36679 +1984 52 26.28513 +1984 53 24.72085 +1984 54 19.20197 +1984 55 15.13089 +1984 56 9.83016 +1984 57 20.91156 +1984 58 21.51092 +1984 59 15.18912 +1984 60 16.10729 +1984 61 18.67787 +1984 62 18.08715 +1984 63 4.92279 +1984 64 8.11888 +1984 65 5.30788 +1984 66 15.18895 +1984 67 9.64950 +1984 68 16.55027 +1984 69 10.71170 +1984 70 16.74190 +1984 71 16.31301 +1984 72 16.87167 +1984 73 14.50362 +1984 74 19.06459 +1984 75 4.73200 +1984 76 14.81285 +1984 77 15.01381 +1984 78 15.55062 +1984 79 15.11430 +1984 80 13.94729 +1984 81 16.05882 +1984 82 15.61939 +1984 83 16.61835 +1984 84 15.84153 +1984 85 14.64670 +1984 86 12.32168 +1984 87 14.32218 +1984 88 11.28367 +1984 89 10.56663 +1984 90 4.46576 +1984 91 14.50440 +1984 92 11.99336 +1984 93 14.55270 +1984 94 16.53350 +1984 95 18.20673 +1984 96 13.63107 +1984 97 13.06912 +1984 98 9.41069 +1984 99 15.66406 +1984 100 13.32513 +1984 101 11.32186 +1984 102 13.86755 +1984 103 16.03938 +1984 104 14.14549 +1984 105 9.72190 +1984 106 12.37015 +1984 107 14.45196 +1984 108 13.45585 +1984 109 15.50716 +1984 110 12.97166 +1984 111 13.46449 +1984 112 14.76680 +1984 113 12.85675 +1984 114 12.77545 +1984 115 12.98056 +1984 116 5.70786 +1984 117 11.04201 +1984 118 10.40204 +1984 119 8.95873 +1984 120 13.08329 +1984 121 9.10837 +1984 122 11.13454 +1984 123 11.83870 +1984 124 11.78807 +1984 125 7.22752 +1984 126 8.17336 +1984 127 8.42829 +1984 128 5.71543 +1984 129 2.03767 +1984 130 8.97808 +1984 131 5.52414 +1984 132 9.23841 +1984 133 8.95242 +1984 134 8.62982 +1984 135 8.96020 +1984 136 11.92000 +1984 137 11.58538 +1984 138 10.06543 +1984 139 4.60439 +1984 140 9.11200 +1984 141 11.20738 +1984 142 11.10283 +1984 143 4.55381 +1984 144 1.76829 +1984 145 5.50708 +1984 146 5.75878 +1984 147 8.77954 +1984 148 7.06393 +1984 149 9.81651 +1984 150 7.22813 +1984 151 10.23287 +1984 152 10.18846 +1984 153 6.37978 +1984 154 5.23206 +1984 155 4.60078 +1984 156 5.76330 +1984 157 1.81043 +1984 158 7.01993 +1984 159 8.98664 +1984 160 8.00780 +1984 161 5.50081 +1984 162 9.07044 +1984 163 7.64059 +1984 164 6.69725 +1984 165 9.70367 +1984 166 8.41015 +1984 167 7.67538 +1984 168 5.86663 +1984 169 6.84806 +1984 170 5.96631 +1984 171 2.31175 +1984 172 4.06275 +1984 173 5.64015 +1984 174 6.73744 +1984 175 9.23279 +1984 176 9.61788 +1984 177 7.87873 +1984 178 6.98566 +1984 179 6.48695 +1984 180 3.12080 +1984 181 2.32045 +1984 182 6.74780 +1984 183 7.35741 +1984 184 5.76996 +1984 185 9.37613 +1984 186 3.14167 +1984 187 3.92062 +1984 188 5.83723 +1984 189 7.55005 +1984 190 9.88520 +1984 191 10.03303 +1984 192 7.43329 +1984 193 2.64550 +1984 194 8.36284 +1984 195 5.19106 +1984 196 8.93506 +1984 197 10.23425 +1984 198 8.42054 +1984 199 10.79611 +1984 200 8.03135 +1984 201 8.64959 +1984 202 7.37207 +1984 203 2.08226 +1984 204 6.79944 +1984 205 10.04080 +1984 206 2.69928 +1984 207 7.64900 +1984 208 11.27330 +1984 209 10.73805 +1984 210 9.58651 +1984 211 2.91774 +1984 212 6.37564 +1984 213 7.75997 +1984 214 10.36152 +1984 215 8.26680 +1984 216 8.17690 +1984 217 9.19814 +1984 218 9.01860 +1984 219 10.99112 +1984 220 13.40876 +1984 221 11.90246 +1984 222 8.29217 +1984 223 7.23368 +1984 224 8.89177 +1984 225 9.23270 +1984 226 4.75805 +1984 227 5.50504 +1984 228 7.05339 +1984 229 8.47463 +1984 230 9.24143 +1984 231 7.21531 +1984 232 8.33737 +1984 233 7.95698 +1984 234 2.57145 +1984 235 12.33576 +1984 236 12.31062 +1984 237 12.71540 +1984 238 12.65034 +1984 239 5.10000 +1984 240 10.38744 +1984 241 9.97419 +1984 242 3.91173 +1984 243 11.13394 +1984 244 11.83343 +1984 245 13.76084 +1984 246 7.94904 +1984 247 9.96460 +1984 248 10.78747 +1984 249 10.23564 +1984 250 16.87677 +1984 251 14.68904 +1984 252 15.57732 +1984 253 12.06084 +1984 254 14.12407 +1984 255 12.04572 +1984 256 4.61482 +1984 257 12.72205 +1984 258 17.20716 +1984 259 18.93724 +1984 260 18.91426 +1984 261 13.84361 +1984 262 16.75426 +1984 263 11.11216 +1984 264 13.80205 +1984 265 11.01254 +1984 266 10.48844 +1984 267 12.05410 +1984 268 14.45748 +1984 269 14.45852 +1984 270 3.79064 +1984 271 18.59769 +1984 272 13.96777 +1984 273 5.07146 +1984 274 12.88475 +1984 275 18.75718 +1984 276 20.36759 +1984 277 22.53347 +1984 278 24.63592 +1984 279 20.39040 +1984 280 14.32495 +1984 281 18.71294 +1984 282 22.68320 +1984 283 11.90169 +1984 284 8.92391 +1984 285 18.88635 +1984 286 16.05105 +1984 287 16.12976 +1984 288 17.25313 +1984 289 17.03549 +1984 290 16.54802 +1984 291 6.10248 +1984 292 18.86933 +1984 293 15.03360 +1984 294 16.70795 +1984 295 18.99314 +1984 296 27.24866 +1984 297 25.22932 +1984 298 20.17725 +1984 299 25.48221 +1984 300 24.98135 +1984 301 25.91257 +1984 302 21.19919 +1984 303 19.15669 +1984 304 24.59618 +1984 305 19.15358 +1984 306 5.18047 +1984 307 6.97019 +1984 308 14.40711 +1984 309 17.62258 +1984 310 21.17483 +1984 311 27.68463 +1984 312 19.05699 +1984 313 20.06700 +1984 314 11.97694 +1984 315 17.84730 +1984 316 19.72097 +1984 317 25.97832 +1984 318 19.35084 +1984 319 21.33821 +1984 320 18.02796 +1984 321 26.68326 +1984 322 17.71114 +1984 323 19.48294 +1984 324 17.45971 +1984 325 22.53148 +1984 326 27.31856 +1984 327 18.72219 +1984 328 23.56050 +1984 329 12.35321 +1984 330 16.28994 +1984 331 22.78230 +1984 332 32.03254 +1984 333 19.92678 +1984 334 26.31623 +1984 335 26.78780 +1984 336 23.61200 +1984 337 27.50000 +1984 338 23.34519 +1984 339 11.53086 +1984 340 16.65999 +1984 341 20.86439 +1984 342 18.88021 +1984 343 26.16011 +1984 344 22.48672 +1984 345 12.20340 +1984 346 26.60869 +1984 347 8.98318 +1984 348 14.56505 +1984 349 25.29490 +1984 350 19.04308 +1984 351 27.98721 +1984 352 23.66842 +1984 353 33.58109 +1984 354 32.15246 +1984 355 24.23442 +1984 356 6.82721 +1984 357 30.89664 +1984 358 24.49656 +1984 359 25.61553 +1984 360 27.66243 +1984 361 21.91501 +1984 362 22.17603 +1984 363 19.13086 +1984 364 19.27912 +1984 365 27.33134 +1984 366 17.47535 +1985 1 13.74996 +1985 2 22.21085 +1985 3 21.22235 +1985 4 27.98185 +1985 5 24.49673 +1985 6 26.60731 +1985 7 29.31578 +1985 8 32.39378 +1985 9 26.85511 +1985 10 12.76301 +1985 11 16.90813 +1985 12 22.69045 +1985 13 24.40938 +1985 14 24.21092 +1985 15 31.11644 +1985 16 32.56649 +1985 17 29.58716 +1985 18 18.92108 +1985 19 23.70876 +1985 20 9.88036 +1985 21 18.07756 +1985 22 21.04860 +1985 23 19.84789 +1985 24 6.80282 +1985 25 23.26208 +1985 26 25.67696 +1985 27 24.33741 +1985 28 12.20167 +1985 29 30.53091 +1985 30 24.70185 +1985 31 21.74861 +1985 32 18.43707 +1985 33 30.67986 +1985 34 18.66240 +1985 35 20.06459 +1985 36 26.20901 +1985 37 24.43660 +1985 38 14.12338 +1985 39 26.32997 +1985 40 23.66496 +1985 41 19.46748 +1985 42 28.59736 +1985 43 22.70843 +1985 44 21.03097 +1985 45 17.67856 +1985 46 17.48753 +1985 47 17.18168 +1985 48 17.87806 +1985 49 20.81359 +1985 50 22.02993 +1985 51 22.67361 +1985 52 21.47282 +1985 53 24.42200 +1985 54 20.95995 +1985 55 24.95508 +1985 56 20.99529 +1985 57 15.56271 +1985 58 6.72121 +1985 59 4.58323 +1985 60 3.96268 +1985 61 15.77673 +1985 62 14.99498 +1985 63 15.56470 +1985 64 16.51614 +1985 65 19.42436 +1985 66 22.47869 +1985 67 19.41512 +1985 68 23.53493 +1985 69 16.92317 +1985 70 10.56205 +1985 71 10.49000 +1985 72 7.60721 +1985 73 13.07362 +1985 74 17.41548 +1985 75 16.44788 +1985 76 21.89618 +1985 77 15.06393 +1985 78 19.57470 +1985 79 22.36455 +1985 80 19.64174 +1985 81 14.70848 +1985 82 18.92160 +1985 83 19.57703 +1985 84 4.09260 +1985 85 13.03232 +1985 86 18.65722 +1985 87 15.73698 +1985 88 10.99112 +1985 89 19.89507 +1985 90 19.40855 +1985 91 14.44159 +1985 92 3.09029 +1985 93 18.37538 +1985 94 18.83183 +1985 95 14.36789 +1985 96 18.79390 +1985 97 13.47028 +1985 98 13.59953 +1985 99 13.50199 +1985 100 10.03942 +1985 101 14.40426 +1985 102 11.20124 +1985 103 16.19862 +1985 104 11.29378 +1985 105 9.83016 +1985 106 2.93529 +1985 107 4.88177 +1985 108 7.87303 +1985 109 2.05021 +1985 110 8.54288 +1985 111 13.74451 +1985 112 12.43866 +1985 113 12.26707 +1985 114 8.59402 +1985 115 11.13255 +1985 116 12.65268 +1985 117 7.06482 +1985 118 12.63133 +1985 119 13.20296 +1985 120 12.93676 +1985 121 13.19872 +1985 122 10.05074 +1985 123 9.52595 +1985 124 9.08159 +1985 125 8.09745 +1985 126 8.99424 +1985 127 10.63636 +1985 128 10.16375 +1985 129 6.60582 +1985 130 7.37324 +1985 131 10.34009 +1985 132 11.21645 +1985 133 8.77254 +1985 134 8.65892 +1985 135 10.61268 +1985 136 8.57822 +1985 137 7.55835 +1985 138 7.52172 +1985 139 7.37126 +1985 140 6.03206 +1985 141 2.83583 +1985 142 3.49161 +1985 143 8.97039 +1985 144 8.97238 +1985 145 9.12980 +1985 146 10.46045 +1985 147 9.20920 +1985 148 8.96970 +1985 149 9.83362 +1985 150 7.25480 +1985 151 5.57516 +1985 152 6.79712 +1985 153 8.52529 +1985 154 8.32213 +1985 155 1.57857 +1985 156 7.78683 +1985 157 2.06272 +1985 158 8.04258 +1985 159 6.97134 +1985 160 6.50973 +1985 161 6.31617 +1985 162 7.39044 +1985 163 7.38516 +1985 164 4.00028 +1985 165 2.36066 +1985 166 4.37765 +1985 167 4.71043 +1985 168 6.00145 +1985 169 6.97278 +1985 170 6.97630 +1985 171 3.32432 +1985 172 0.73255 +1985 173 4.68278 +1985 174 4.99446 +1985 175 3.64751 +1985 176 8.14088 +1985 177 7.73696 +1985 178 5.24109 +1985 179 6.74453 +1985 180 2.31110 +1985 181 5.95713 +1985 182 9.45959 +1985 183 9.44724 +1985 184 8.26591 +1985 185 4.58114 +1985 186 6.56777 +1985 187 6.91708 +1985 188 9.03416 +1985 189 7.37444 +1985 190 10.28523 +1985 191 7.07528 +1985 192 1.49145 +1985 193 3.99109 +1985 194 6.86900 +1985 195 5.74093 +1985 196 8.80165 +1985 197 5.35543 +1985 198 2.97589 +1985 199 1.32843 +1985 200 2.27469 +1985 201 4.41761 +1985 202 8.04429 +1985 203 7.64396 +1985 204 7.75288 +1985 205 3.06654 +1985 206 6.70701 +1985 207 5.53965 +1985 208 8.10374 +1985 209 9.67611 +1985 210 7.97088 +1985 211 6.70512 +1985 212 7.34731 +1985 213 7.83017 +1985 214 10.69805 +1985 215 11.80734 +1985 216 11.28730 +1985 217 11.81390 +1985 218 10.62262 +1985 219 9.94326 +1985 220 8.60729 +1985 221 3.30609 +1985 222 3.64008 +1985 223 10.91223 +1985 224 13.86737 +1985 225 13.41032 +1985 226 12.71160 +1985 227 13.02705 +1985 228 12.48143 +1985 229 9.84277 +1985 230 7.82129 +1985 231 9.27806 +1985 232 13.13591 +1985 233 12.95654 +1985 234 12.01141 +1985 235 12.91110 +1985 236 3.81773 +1985 237 10.85262 +1985 238 11.82436 +1985 239 4.42074 +1985 240 13.52523 +1985 241 12.56567 +1985 242 10.92087 +1985 243 6.80028 +1985 244 12.67669 +1985 245 6.50770 +1985 246 11.13247 +1985 247 9.58452 +1985 248 13.48790 +1985 249 18.21122 +1985 250 14.63530 +1985 251 13.12546 +1985 252 13.31122 +1985 253 11.42977 +1985 254 10.75481 +1985 255 14.80654 +1985 256 14.51373 +1985 257 18.45202 +1985 258 13.21039 +1985 259 12.19432 +1985 260 12.24564 +1985 261 13.15734 +1985 262 13.67133 +1985 263 17.56477 +1985 264 16.48590 +1985 265 16.30627 +1985 266 13.70935 +1985 267 15.50223 +1985 268 5.75191 +1985 269 15.19854 +1985 270 16.20734 +1985 271 14.21850 +1985 272 15.46180 +1985 273 18.83373 +1985 274 18.76617 +1985 275 16.07999 +1985 276 18.96316 +1985 277 19.22962 +1985 278 24.18310 +1985 279 23.71239 +1985 280 21.63404 +1985 281 12.63868 +1985 282 15.93078 +1985 283 15.36365 +1985 284 14.90063 +1985 285 17.05294 +1985 286 15.68506 +1985 287 19.43836 +1985 288 16.90641 +1985 289 22.17594 +1985 290 21.75396 +1985 291 15.24640 +1985 292 16.99341 +1985 293 5.67759 +1985 294 20.40725 +1985 295 18.65074 +1985 296 19.12507 +1985 297 4.52567 +1985 298 10.94170 +1985 299 21.42210 +1985 300 24.73857 +1985 301 23.58029 +1985 302 28.75694 +1985 303 24.68940 +1985 304 17.05087 +1985 305 19.35904 +1985 306 23.42952 +1985 307 23.89176 +1985 308 22.92097 +1985 309 25.98860 +1985 310 22.07088 +1985 311 20.33709 +1985 312 25.90834 +1985 313 19.63155 +1985 314 28.02505 +1985 315 25.99785 +1985 316 10.34217 +1985 317 25.27908 +1985 318 30.12379 +1985 319 30.03912 +1985 320 28.92966 +1985 321 18.29917 +1985 322 16.80186 +1985 323 7.57136 +1985 324 26.00614 +1985 325 18.27775 +1985 326 11.83404 +1985 327 24.55021 +1985 328 13.86521 +1985 329 14.27639 +1985 330 21.39204 +1985 331 23.95405 +1985 332 21.93998 +1985 333 14.68558 +1985 334 15.12346 +1985 335 13.11949 +1985 336 20.61072 +1985 337 24.97185 +1985 338 20.97369 +1985 339 25.58892 +1985 340 16.49436 +1985 341 13.63038 +1985 342 22.64259 +1985 343 28.01710 +1985 344 25.88259 +1985 345 26.46372 +1985 346 25.77010 +1985 347 19.93326 +1985 348 19.67553 +1985 349 19.52865 +1985 350 24.30060 +1985 351 26.13099 +1985 352 15.99912 +1985 353 19.83744 +1985 354 22.51247 +1985 355 22.98888 +1985 356 16.34437 +1985 357 29.23093 +1985 358 13.36841 +1985 359 24.67195 +1985 360 27.11724 +1985 361 21.85220 +1985 362 5.01643 +1985 363 29.96568 +1985 364 27.57914 +1985 365 27.09297 +1986 1 14.75816 +1986 2 6.66587 +1986 3 9.15356 +1986 4 13.88483 +1986 5 24.03000 +1986 6 24.90281 +1986 7 23.63351 +1986 8 5.42123 +1986 9 20.49252 +1986 10 27.36063 +1986 11 19.07556 +1986 12 27.27553 +1986 13 30.30048 +1986 14 27.93675 +1986 15 24.24004 +1986 16 22.53174 +1986 17 31.23585 +1986 18 29.71495 +1986 19 15.37315 +1986 20 4.25588 +1986 21 12.97002 +1986 22 16.56530 +1986 23 20.63163 +1986 24 4.08257 +1986 25 21.70558 +1986 26 24.86506 +1986 27 28.33583 +1986 28 29.19715 +1986 29 30.34938 +1986 30 18.77360 +1986 31 8.49264 +1986 32 11.58123 +1986 33 19.05310 +1986 34 27.56566 +1986 35 22.52759 +1986 36 17.12284 +1986 37 27.32651 +1986 38 29.25055 +1986 39 18.35145 +1986 40 27.88318 +1986 41 24.42822 +1986 42 28.28874 +1986 43 25.97400 +1986 44 20.02199 +1986 45 17.05778 +1986 46 11.54822 +1986 47 16.86027 +1986 48 19.83122 +1986 49 25.20832 +1986 50 12.12209 +1986 51 20.46773 +1986 52 19.05543 +1986 53 13.08917 +1986 54 6.86078 +1986 55 18.06261 +1986 56 19.32327 +1986 57 8.48782 +1986 58 19.62265 +1986 59 20.29398 +1986 60 22.14190 +1986 61 21.84434 +1986 62 8.12499 +1986 63 19.12421 +1986 64 21.30961 +1986 65 21.29242 +1986 66 24.09290 +1986 67 17.11973 +1986 68 17.83745 +1986 69 19.53176 +1986 70 8.70852 +1986 71 12.67955 +1986 72 13.25713 +1986 73 14.26697 +1986 74 16.79253 +1986 75 18.58982 +1986 76 21.68796 +1986 77 22.19573 +1986 78 17.56287 +1986 79 18.64477 +1986 80 21.12471 +1986 81 16.20899 +1986 82 16.61740 +1986 83 18.06011 +1986 84 20.71518 +1986 85 20.39999 +1986 86 11.78124 +1986 87 11.65527 +1986 88 9.94222 +1986 89 16.50387 +1986 90 15.67849 +1986 91 14.05598 +1986 92 14.35346 +1986 93 12.18275 +1986 94 14.20770 +1986 95 11.25040 +1986 96 13.70434 +1986 97 17.04171 +1986 98 12.60878 +1986 99 10.69520 +1986 100 16.78743 +1986 101 14.00674 +1986 102 10.65191 +1986 103 14.62692 +1986 104 13.92595 +1986 105 16.45730 +1986 106 14.48807 +1986 107 14.70917 +1986 108 14.54795 +1986 109 12.90341 +1986 110 11.42476 +1986 111 8.55904 +1986 112 10.73753 +1986 113 8.77236 +1986 114 11.41819 +1986 115 9.78255 +1986 116 6.35763 +1986 117 5.53955 +1986 118 10.67567 +1986 119 13.77251 +1986 120 8.60465 +1986 121 9.17490 +1986 122 9.27901 +1986 123 8.69685 +1986 124 9.80424 +1986 125 9.00374 +1986 126 10.08547 +1986 127 10.00443 +1986 128 10.07752 +1986 129 9.67326 +1986 130 9.38019 +1986 131 5.97871 +1986 132 11.06654 +1986 133 8.86516 +1986 134 9.67118 +1986 135 7.51693 +1986 136 2.52517 +1986 137 7.68426 +1986 138 9.63429 +1986 139 3.02655 +1986 140 6.71844 +1986 141 8.88088 +1986 142 10.37724 +1986 143 9.93306 +1986 144 6.89494 +1986 145 2.80106 +1986 146 7.17186 +1986 147 10.75412 +1986 148 8.37215 +1986 149 4.08992 +1986 150 6.95127 +1986 151 6.75228 +1986 152 7.26429 +1986 153 8.29386 +1986 154 6.63511 +1986 155 8.11088 +1986 156 8.35523 +1986 157 7.83372 +1986 158 6.15175 +1986 159 4.96095 +1986 160 1.49976 +1986 161 6.52357 +1986 162 9.91881 +1986 163 6.45148 +1986 164 6.31265 +1986 165 6.92932 +1986 166 9.76476 +1986 167 9.64215 +1986 168 9.58306 +1986 169 7.95857 +1986 170 2.01220 +1986 171 1.42881 +1986 172 7.76665 +1986 173 7.17645 +1986 174 5.16211 +1986 175 5.19086 +1986 176 7.05386 +1986 177 7.07530 +1986 178 3.89305 +1986 179 8.14773 +1986 180 5.74599 +1986 181 7.03718 +1986 182 9.63567 +1986 183 7.12760 +1986 184 9.36369 +1986 185 9.87768 +1986 186 1.53468 +1986 187 7.65564 +1986 188 7.73994 +1986 189 7.41054 +1986 190 5.05036 +1986 191 4.76707 +1986 192 6.78794 +1986 193 8.19558 +1986 194 9.89392 +1986 195 10.57683 +1986 196 9.48707 +1986 197 9.54685 +1986 198 9.32213 +1986 199 8.95467 +1986 200 9.26087 +1986 201 8.77660 +1986 202 11.02585 +1986 203 11.06577 +1986 204 4.95401 +1986 205 2.21941 +1986 206 4.53186 +1986 207 7.26772 +1986 208 7.99297 +1986 209 7.64412 +1986 210 7.90436 +1986 211 10.26475 +1986 212 5.26764 +1986 213 10.61623 +1986 214 10.43729 +1986 215 9.94447 +1986 216 8.98949 +1986 217 12.96873 +1986 218 5.12376 +1986 219 2.12757 +1986 220 6.15236 +1986 221 10.22484 +1986 222 8.70005 +1986 223 9.89055 +1986 224 9.71784 +1986 225 10.06741 +1986 226 12.59798 +1986 227 11.73709 +1986 228 12.87230 +1986 229 8.56063 +1986 230 3.92591 +1986 231 2.37987 +1986 232 2.88972 +1986 233 6.29908 +1986 234 6.75312 +1986 235 10.38070 +1986 236 11.90393 +1986 237 15.63244 +1986 238 10.99405 +1986 239 6.07560 +1986 240 13.43451 +1986 241 14.64575 +1986 242 13.63712 +1986 243 10.39098 +1986 244 14.52557 +1986 245 14.04950 +1986 246 13.23570 +1986 247 14.13685 +1986 248 15.31872 +1986 249 10.60828 +1986 250 11.26561 +1986 251 13.66122 +1986 252 16.29927 +1986 253 12.52930 +1986 254 11.78772 +1986 255 14.54691 +1986 256 14.81553 +1986 257 3.85970 +1986 258 5.10480 +1986 259 11.83550 +1986 260 13.53568 +1986 261 12.22828 +1986 262 6.24670 +1986 263 17.83400 +1986 264 18.15592 +1986 265 13.44695 +1986 266 18.49988 +1986 267 16.37600 +1986 268 14.96405 +1986 269 16.56755 +1986 270 8.74308 +1986 271 19.79173 +1986 272 16.37807 +1986 273 21.92469 +1986 274 18.77679 +1986 275 11.39175 +1986 276 8.70489 +1986 277 11.95042 +1986 278 12.47314 +1986 279 15.81725 +1986 280 19.95900 +1986 281 19.44562 +1986 282 10.83223 +1986 283 13.66692 +1986 284 12.76180 +1986 285 19.73074 +1986 286 20.47058 +1986 287 22.93980 +1986 288 10.41958 +1986 289 20.90448 +1986 290 20.07271 +1986 291 21.14657 +1986 292 20.90673 +1986 293 6.90940 +1986 294 18.36778 +1986 295 20.06735 +1986 296 6.92982 +1986 297 4.96066 +1986 298 16.69524 +1986 299 19.19385 +1986 300 22.62851 +1986 301 20.70334 +1986 302 19.10503 +1986 303 19.41054 +1986 304 21.72079 +1986 305 18.74508 +1986 306 19.00515 +1986 307 20.89688 +1986 308 19.18728 +1986 309 25.97046 +1986 310 27.65932 +1986 311 28.94495 +1986 312 22.25534 +1986 313 29.58345 +1986 314 18.15212 +1986 315 12.53776 +1986 316 17.39776 +1986 317 19.75596 +1986 318 22.06967 +1986 319 15.85872 +1986 320 19.42816 +1986 321 24.12124 +1986 322 31.34566 +1986 323 25.20193 +1986 324 32.39896 +1986 325 32.76729 +1986 326 15.51416 +1986 327 18.91356 +1986 328 20.37830 +1986 329 22.28265 +1986 330 25.66797 +1986 331 17.12154 +1986 332 28.07775 +1986 333 20.83311 +1986 334 24.30726 +1986 335 26.93900 +1986 336 25.29464 +1986 337 20.92219 +1986 338 21.32732 +1986 339 16.50897 +1986 340 24.35357 +1986 341 21.97644 +1986 342 22.46944 +1986 343 26.44911 +1986 344 30.64271 +1986 345 16.79167 +1986 346 17.99211 +1986 347 22.95104 +1986 348 16.33789 +1986 349 25.05073 +1986 350 21.85652 +1986 351 25.10032 +1986 352 27.76740 +1986 353 23.30096 +1986 354 5.29755 +1986 355 23.54279 +1986 356 20.97127 +1986 357 15.00984 +1986 358 21.96556 +1986 359 20.76356 +1986 360 22.49683 +1986 361 31.98787 +1986 362 22.93557 +1986 363 30.41427 +1986 364 33.56562 +1986 365 25.84630 +1987 1 29.37747 +1987 2 28.96404 +1987 3 30.78432 +1987 4 25.66244 +1987 5 29.76152 +1987 6 28.09469 +1987 7 24.05549 +1987 8 26.81813 +1987 9 25.77277 +1987 10 26.72827 +1987 11 27.23000 +1987 12 23.32161 +1987 13 22.01878 +1987 14 27.46371 +1987 15 24.84078 +1987 16 32.64080 +1987 17 14.56505 +1987 18 27.95334 +1987 19 14.18947 +1987 20 21.04436 +1987 21 3.37471 +1987 22 15.60937 +1987 23 22.66125 +1987 24 21.72779 +1987 25 24.07596 +1987 26 27.43641 +1987 27 28.40772 +1987 28 17.55467 +1987 29 27.80361 +1987 30 30.70129 +1987 31 30.35483 +1987 32 29.13719 +1987 33 30.50058 +1987 34 23.59221 +1987 35 12.89598 +1987 36 28.97303 +1987 37 23.49812 +1987 38 22.33103 +1987 39 30.22618 +1987 40 25.03466 +1987 41 25.54088 +1987 42 28.03775 +1987 43 14.25133 +1987 44 22.55144 +1987 45 25.11976 +1987 46 20.08575 +1987 47 18.23653 +1987 48 20.29346 +1987 49 24.54546 +1987 50 27.34992 +1987 51 25.94246 +1987 52 23.99907 +1987 53 13.10973 +1987 54 24.05160 +1987 55 25.46329 +1987 56 14.88620 +1987 57 14.61845 +1987 58 14.61275 +1987 59 24.16910 +1987 60 10.76414 +1987 61 16.02582 +1987 62 17.63519 +1987 63 20.11297 +1987 64 23.89383 +1987 65 16.05709 +1987 66 20.15453 +1987 67 14.75747 +1987 68 16.85111 +1987 69 9.52854 +1987 70 19.32241 +1987 71 21.09119 +1987 72 17.22410 +1987 73 13.60342 +1987 74 17.11921 +1987 75 17.74431 +1987 76 15.85008 +1987 77 19.01344 +1987 78 12.34414 +1987 79 4.75689 +1987 80 13.52791 +1987 81 9.55256 +1987 82 15.40426 +1987 83 16.28744 +1987 84 19.97836 +1987 85 15.10756 +1987 86 18.26600 +1987 87 15.06099 +1987 88 12.95663 +1987 89 14.21669 +1987 90 2.98710 +1987 91 13.49162 +1987 92 14.90227 +1987 93 18.44104 +1987 94 13.32798 +1987 95 17.34791 +1987 96 18.19593 +1987 97 13.35900 +1987 98 10.65303 +1987 99 6.63022 +1987 100 4.98529 +1987 101 9.09446 +1987 102 12.81208 +1987 103 15.91134 +1987 104 13.17004 +1987 105 16.23033 +1987 106 16.32563 +1987 107 16.16656 +1987 108 13.38111 +1987 109 7.71135 +1987 110 2.00258 +1987 111 10.14751 +1987 112 9.56068 +1987 113 15.12536 +1987 114 9.70885 +1987 115 11.06119 +1987 116 12.49776 +1987 117 11.80760 +1987 118 12.64818 +1987 119 10.28583 +1987 120 7.36370 +1987 121 13.73077 +1987 122 13.89753 +1987 123 11.47703 +1987 124 7.27807 +1987 125 8.09757 +1987 126 9.96114 +1987 127 12.30129 +1987 128 12.20521 +1987 129 12.30647 +1987 130 9.78834 +1987 131 9.54668 +1987 132 7.12056 +1987 133 7.56991 +1987 134 8.67810 +1987 135 8.02781 +1987 136 5.09116 +1987 137 2.76880 +1987 138 7.06858 +1987 139 5.07069 +1987 140 8.31156 +1987 141 7.92521 +1987 142 8.17565 +1987 143 6.59020 +1987 144 9.37094 +1987 145 7.45651 +1987 146 7.52311 +1987 147 4.38619 +1987 148 1.54562 +1987 149 0.80195 +1987 150 1.42411 +1987 151 8.25290 +1987 152 8.15236 +1987 153 6.24292 +1987 154 5.24254 +1987 155 6.65276 +1987 156 10.00953 +1987 157 8.43887 +1987 158 8.82075 +1987 159 6.31302 +1987 160 8.28001 +1987 161 5.59883 +1987 162 7.86038 +1987 163 7.86230 +1987 164 4.98063 +1987 165 4.66389 +1987 166 7.65442 +1987 167 9.04936 +1987 168 8.87864 +1987 169 5.73888 +1987 170 6.40499 +1987 171 6.81128 +1987 172 8.91544 +1987 173 8.63470 +1987 174 4.79348 +1987 175 3.06267 +1987 176 2.93967 +1987 177 5.00056 +1987 178 2.36955 +1987 179 5.41635 +1987 180 5.86685 +1987 181 9.54314 +1987 182 7.77379 +1987 183 8.01834 +1987 184 8.09932 +1987 185 9.88399 +1987 186 9.07969 +1987 187 9.61874 +1987 188 7.51950 +1987 189 8.06722 +1987 190 9.12617 +1987 191 6.54924 +1987 192 5.34182 +1987 193 6.91083 +1987 194 3.74845 +1987 195 3.34700 +1987 196 6.89334 +1987 197 9.42304 +1987 198 9.62617 +1987 199 8.65823 +1987 200 6.19593 +1987 201 7.01814 +1987 202 5.89674 +1987 203 8.06739 +1987 204 10.59480 +1987 205 2.30026 +1987 206 6.67566 +1987 207 10.65787 +1987 208 8.84468 +1987 209 8.91553 +1987 210 11.66262 +1987 211 9.34658 +1987 212 1.92705 +1987 213 9.05489 +1987 214 9.16341 +1987 215 2.05323 +1987 216 4.74160 +1987 217 8.62006 +1987 218 7.21952 +1987 219 11.93754 +1987 220 13.27519 +1987 221 10.43548 +1987 222 8.65892 +1987 223 12.49603 +1987 224 12.77899 +1987 225 13.06748 +1987 226 12.41896 +1987 227 13.56143 +1987 228 11.30242 +1987 229 8.58141 +1987 230 11.92553 +1987 231 10.40532 +1987 232 9.18881 +1987 233 5.89205 +1987 234 9.07485 +1987 235 11.73856 +1987 236 9.73365 +1987 237 3.23584 +1987 238 7.12877 +1987 239 11.63203 +1987 240 12.68378 +1987 241 14.50898 +1987 242 13.46000 +1987 243 11.53578 +1987 244 5.44040 +1987 245 3.48510 +1987 246 12.97564 +1987 247 15.32166 +1987 248 17.28354 +1987 249 13.00156 +1987 250 7.85531 +1987 251 11.99241 +1987 252 18.56451 +1987 253 12.18853 +1987 254 12.21515 +1987 255 14.14308 +1987 256 14.46993 +1987 257 13.44522 +1987 258 16.08906 +1987 259 11.99828 +1987 260 13.94358 +1987 261 17.84903 +1987 262 14.63590 +1987 263 13.85018 +1987 264 12.90747 +1987 265 18.27887 +1987 266 14.88180 +1987 267 17.27248 +1987 268 18.95460 +1987 269 10.69416 +1987 270 12.31684 +1987 271 12.11864 +1987 272 14.68990 +1987 273 9.39730 +1987 274 16.06280 +1987 275 22.35306 +1987 276 15.97804 +1987 277 9.56327 +1987 278 12.68041 +1987 279 13.82772 +1987 280 18.06304 +1987 281 10.26354 +1987 282 20.39161 +1987 283 16.37384 +1987 284 18.26997 +1987 285 11.98627 +1987 286 21.06588 +1987 287 18.49064 +1987 288 13.65474 +1987 289 26.05228 +1987 290 25.67013 +1987 291 24.76241 +1987 292 14.98651 +1987 293 25.01220 +1987 294 27.63158 +1987 295 21.90033 +1987 296 14.20632 +1987 297 13.07362 +1987 298 17.80134 +1987 299 13.08597 +1987 300 15.83643 +1987 301 5.85043 +1987 302 16.87340 +1987 303 15.73664 +1987 304 27.43926 +1987 305 21.45900 +1987 306 24.86462 +1987 307 26.25739 +1987 308 11.48982 +1987 309 22.42236 +1987 310 17.83918 +1987 311 12.55582 +1987 312 20.73030 +1987 313 23.52586 +1987 314 18.13095 +1987 315 30.11844 +1987 316 10.99189 +1987 317 10.47790 +1987 318 17.81464 +1987 319 32.12931 +1987 320 25.14741 +1987 321 20.96556 +1987 322 25.56973 +1987 323 25.18543 +1987 324 9.80078 +1987 325 15.27733 +1987 326 24.59635 +1987 327 23.89020 +1987 328 21.06510 +1987 329 14.82339 +1987 330 26.88647 +1987 331 23.36178 +1987 332 24.52931 +1987 333 24.47677 +1987 334 21.29630 +1987 335 29.75910 +1987 336 24.70850 +1987 337 14.11543 +1987 338 23.37682 +1987 339 22.38002 +1987 340 19.46903 +1987 341 13.16555 +1987 342 21.17154 +1987 343 22.64924 +1987 344 26.56066 +1987 345 31.92212 +1987 346 24.03821 +1987 347 23.71792 +1987 348 10.99837 +1987 349 9.18268 +1987 350 13.48479 +1987 351 23.40135 +1987 352 26.71142 +1987 353 21.37700 +1987 354 25.57742 +1987 355 19.14408 +1987 356 21.78386 +1987 357 11.44221 +1987 358 11.00874 +1987 359 23.38623 +1987 360 20.80011 +1987 361 24.16340 +1987 362 25.91905 +1987 363 26.39529 +1987 364 27.57568 +1987 365 23.15174 +1988 1 15.22800 +1988 2 15.93475 +1988 3 22.26459 +1988 4 31.00801 +1988 5 20.85731 +1988 6 30.08508 +1988 7 32.30772 +1988 8 17.16863 +1988 9 28.04769 +1988 10 21.26131 +1988 11 31.78786 +1988 12 31.14184 +1988 13 31.84860 +1988 14 25.03803 +1988 15 32.53064 +1988 16 31.25771 +1988 17 30.96585 +1988 18 17.45582 +1988 19 32.70568 +1988 20 24.27926 +1988 21 24.54641 +1988 22 29.91522 +1988 23 30.01355 +1988 24 30.06858 +1988 25 23.76095 +1988 26 28.45956 +1988 27 30.11645 +1988 28 21.96452 +1988 29 19.41909 +1988 30 27.94530 +1988 31 26.40980 +1988 32 24.84043 +1988 33 23.48438 +1988 34 18.74699 +1988 35 19.17069 +1988 36 26.74512 +1988 37 11.80587 +1988 38 9.46797 +1988 39 22.40844 +1988 40 21.30987 +1988 41 8.89592 +1988 42 7.46446 +1988 43 9.16756 +1988 44 12.04364 +1988 45 12.92138 +1988 46 17.90268 +1988 47 7.53415 +1988 48 11.36886 +1988 49 22.11883 +1988 50 16.64971 +1988 51 21.90741 +1988 52 19.12360 +1988 53 16.86303 +1988 54 22.59775 +1988 55 20.90681 +1988 56 17.31361 +1988 57 16.28148 +1988 58 15.99428 +1988 59 20.68554 +1988 60 26.43615 +1988 61 22.00159 +1988 62 24.10059 +1988 63 21.92365 +1988 64 11.94420 +1988 65 7.00071 +1988 66 3.33695 +1988 67 10.79352 +1988 68 10.47773 +1988 69 5.08265 +1988 70 10.70427 +1988 71 14.50760 +1988 72 12.18171 +1988 73 19.16758 +1988 74 18.71839 +1988 75 13.52385 +1988 76 13.92466 +1988 77 13.17876 +1988 78 16.11369 +1988 79 19.40622 +1988 80 17.62076 +1988 81 14.65223 +1988 82 16.97190 +1988 83 16.89120 +1988 84 17.41176 +1988 85 16.84135 +1988 86 13.79912 +1988 87 19.31774 +1988 88 11.39288 +1988 89 14.86590 +1988 90 11.22163 +1988 91 12.35278 +1988 92 10.95863 +1988 93 19.36855 +1988 94 17.97526 +1988 95 17.93258 +1988 96 16.80791 +1988 97 17.36657 +1988 98 9.21205 +1988 99 10.01333 +1988 100 3.23554 +1988 101 15.66121 +1988 102 15.17426 +1988 103 11.12918 +1988 104 6.25874 +1988 105 6.24500 +1988 106 13.99585 +1988 107 10.94455 +1988 108 16.12440 +1988 109 14.56946 +1988 110 14.28633 +1988 111 9.11900 +1988 112 2.86603 +1988 113 13.76240 +1988 114 10.46434 +1988 115 12.64568 +1988 116 12.60472 +1988 117 11.73027 +1988 118 11.90454 +1988 119 12.22551 +1988 120 13.67332 +1988 121 14.13444 +1988 122 13.95783 +1988 123 10.06595 +1988 124 9.28956 +1988 125 5.50485 +1988 126 13.49758 +1988 127 12.03785 +1988 128 1.60489 +1988 129 1.64906 +1988 130 6.40831 +1988 131 7.89782 +1988 132 10.15606 +1988 133 10.82748 +1988 134 8.76943 +1988 135 7.91418 +1988 136 6.25654 +1988 137 9.36982 +1988 138 6.94412 +1988 139 4.60810 +1988 140 3.64858 +1988 141 2.82156 +1988 142 2.53706 +1988 143 10.25801 +1988 144 10.58849 +1988 145 4.25500 +1988 146 3.99136 +1988 147 5.04235 +1988 148 6.76276 +1988 149 5.35150 +1988 150 3.78803 +1988 151 9.88770 +1988 152 10.40455 +1988 153 9.96062 +1988 154 8.79552 +1988 155 9.24791 +1988 156 7.70604 +1988 157 7.24595 +1988 158 2.32863 +1988 159 1.45591 +1988 160 7.72673 +1988 161 4.40731 +1988 162 6.40036 +1988 163 5.22686 +1988 164 4.58088 +1988 165 9.96831 +1988 166 8.83509 +1988 167 7.01243 +1988 168 7.08397 +1988 169 1.69817 +1988 170 2.16718 +1988 171 3.20223 +1988 172 5.08878 +1988 173 6.04784 +1988 174 6.10315 +1988 175 6.18967 +1988 176 6.71433 +1988 177 7.97470 +1988 178 6.99531 +1988 179 6.67901 +1988 180 4.88309 +1988 181 7.15515 +1988 182 6.24167 +1988 183 7.44852 +1988 184 6.81915 +1988 185 6.84760 +1988 186 7.60336 +1988 187 8.61279 +1988 188 9.58288 +1988 189 9.93980 +1988 190 6.33515 +1988 191 5.15824 +1988 192 2.29617 +1988 193 9.90524 +1988 194 7.76610 +1988 195 8.94059 +1988 196 6.80757 +1988 197 2.22032 +1988 198 3.62020 +1988 199 5.62345 +1988 200 5.40190 +1988 201 9.66540 +1988 202 6.22894 +1988 203 8.31927 +1988 204 4.80273 +1988 205 2.00492 +1988 206 5.01269 +1988 207 5.34678 +1988 208 6.62359 +1988 209 8.96564 +1988 210 8.46427 +1988 211 8.17707 +1988 212 9.63386 +1988 213 7.95815 +1988 214 10.25559 +1988 215 9.88312 +1988 216 11.27105 +1988 217 9.76182 +1988 218 8.26934 +1988 219 6.66185 +1988 220 0.85332 +1988 221 7.99514 +1988 222 5.06472 +1988 223 10.89806 +1988 224 6.36846 +1988 225 10.65848 +1988 226 10.42874 +1988 227 12.15346 +1988 228 10.37085 +1988 229 9.23823 +1988 230 6.36062 +1988 231 8.15992 +1988 232 4.19162 +1988 233 8.78636 +1988 234 11.53103 +1988 235 6.76824 +1988 236 1.56192 +1988 237 14.78347 +1988 238 16.20216 +1988 239 11.78505 +1988 240 16.45307 +1988 241 9.48257 +1988 242 8.43259 +1988 243 10.58642 +1988 244 4.82892 +1988 245 14.16096 +1988 246 10.10958 +1988 247 15.60470 +1988 248 5.45215 +1988 249 14.85104 +1988 250 11.56023 +1988 251 13.51123 +1988 252 16.46853 +1988 253 11.58909 +1988 254 9.19037 +1988 255 12.33248 +1988 256 12.76059 +1988 257 11.03916 +1988 258 17.82933 +1988 259 16.36494 +1988 260 15.46534 +1988 261 4.08620 +1988 262 4.40936 +1988 263 13.21764 +1988 264 3.74343 +1988 265 14.44418 +1988 266 14.16545 +1988 267 15.31423 +1988 268 19.61340 +1988 269 12.87524 +1988 270 12.97849 +1988 271 12.43572 +1988 272 10.94757 +1988 273 12.86384 +1988 274 19.71579 +1988 275 6.80079 +1988 276 13.50596 +1988 277 16.89405 +1988 278 14.29540 +1988 279 6.05971 +1988 280 9.98585 +1988 281 19.64166 +1988 282 14.80645 +1988 283 20.00912 +1988 284 11.10413 +1988 285 15.34628 +1988 286 14.87385 +1988 287 21.12558 +1988 288 16.72739 +1988 289 17.92593 +1988 290 24.88156 +1988 291 8.34944 +1988 292 17.44191 +1988 293 10.82756 +1988 294 21.98638 +1988 295 28.31077 +1988 296 26.13453 +1988 297 26.07431 +1988 298 23.57312 +1988 299 21.66636 +1988 300 21.43670 +1988 301 27.88266 +1988 302 19.31723 +1988 303 18.26582 +1988 304 15.14549 +1988 305 23.22855 +1988 306 24.13005 +1988 307 18.08430 +1988 308 10.53501 +1988 309 28.01667 +1988 310 8.92797 +1988 311 24.66910 +1988 312 30.09243 +1988 313 28.65724 +1988 314 5.53852 +1988 315 8.17412 +1988 316 27.97788 +1988 317 31.38178 +1988 318 28.30697 +1988 319 27.16710 +1988 320 26.68749 +1988 321 30.01121 +1988 322 13.12451 +1988 323 6.57382 +1988 324 16.82649 +1988 325 19.63025 +1988 326 28.61326 +1988 327 32.34781 +1988 328 30.20786 +1988 329 28.86883 +1988 330 20.55171 +1988 331 6.89357 +1988 332 3.12850 +1988 333 18.88471 +1988 334 14.67418 +1988 335 26.55858 +1988 336 32.33995 +1988 337 27.25609 +1988 338 26.43581 +1988 339 21.92028 +1988 340 15.67642 +1988 341 10.13731 +1988 342 29.01096 +1988 343 30.09165 +1988 344 30.73827 +1988 345 25.60257 +1988 346 16.76791 +1988 347 14.05581 +1988 348 29.22342 +1988 349 21.82974 +1988 350 30.73075 +1988 351 29.17486 +1988 352 32.70240 +1988 353 28.45333 +1988 354 22.87431 +1988 355 21.67603 +1988 356 15.59339 +1988 357 21.74342 +1988 358 22.27193 +1988 359 29.14307 +1988 360 29.26437 +1988 361 21.10441 +1988 362 7.92515 +1988 363 6.77268 +1988 364 5.60673 +1988 365 12.28530 +1988 366 17.66249 +1989 1 16.07904 +1989 2 24.01453 +1989 3 21.74049 +1989 4 15.92611 +1989 5 15.49385 +1989 6 12.35926 +1989 7 18.24327 +1989 8 5.03648 +1989 9 20.70395 +1989 10 30.89750 +1989 11 25.87542 +1989 12 17.89733 +1989 13 24.34398 +1989 14 29.07576 +1989 15 30.59364 +1989 16 22.18925 +1989 17 7.96749 +1989 18 11.21593 +1989 19 19.02156 +1989 20 5.35441 +1989 21 14.46034 +1989 22 31.44709 +1989 23 10.06957 +1989 24 7.00821 +1989 25 7.87873 +1989 26 24.63385 +1989 27 8.45891 +1989 28 31.41599 +1989 29 30.57057 +1989 30 30.88351 +1989 31 22.62056 +1989 32 13.58286 +1989 33 19.68080 +1989 34 17.52356 +1989 35 17.69481 +1989 36 24.23771 +1989 37 21.99709 +1989 38 18.64495 +1989 39 16.96404 +1989 40 16.30454 +1989 41 20.14934 +1989 42 18.08810 +1989 43 27.19794 +1989 44 27.83998 +1989 45 27.93139 +1989 46 28.75003 +1989 47 24.59748 +1989 48 20.44457 +1989 49 20.39196 +1989 50 21.68234 +1989 51 18.80548 +1989 52 5.50881 +1989 53 23.99691 +1989 54 13.42993 +1989 55 24.02810 +1989 56 26.31640 +1989 57 26.19553 +1989 58 23.41993 +1989 59 19.52994 +1989 60 18.09890 +1989 61 17.27931 +1989 62 19.91295 +1989 63 22.33734 +1989 64 21.09776 +1989 65 17.07083 +1989 66 23.97367 +1989 67 17.90770 +1989 68 18.57324 +1989 69 20.84616 +1989 70 18.09372 +1989 71 17.17615 +1989 72 14.61525 +1989 73 7.52647 +1989 74 5.53287 +1989 75 15.51554 +1989 76 16.55113 +1989 77 17.09182 +1989 78 17.04983 +1989 79 21.02579 +1989 80 19.01154 +1989 81 16.62690 +1989 82 11.46640 +1989 83 10.16496 +1989 84 20.68122 +1989 85 13.63478 +1989 86 12.81139 +1989 87 10.75628 +1989 88 20.31489 +1989 89 12.66252 +1989 90 12.71661 +1989 91 18.84557 +1989 92 18.90216 +1989 93 18.44398 +1989 94 17.56253 +1989 95 17.92817 +1989 96 17.30981 +1989 97 11.57069 +1989 98 17.22514 +1989 99 16.60582 +1989 100 11.26708 +1989 101 17.76989 +1989 102 17.56771 +1989 103 16.25080 +1989 104 15.86442 +1989 105 6.52823 +1989 106 10.30648 +1989 107 8.69365 +1989 108 5.09444 +1989 109 13.07750 +1989 110 11.27779 +1989 111 12.06757 +1989 112 15.44149 +1989 113 14.23794 +1989 114 12.52126 +1989 115 14.36979 +1989 116 12.85312 +1989 117 10.15088 +1989 118 4.77565 +1989 119 1.35271 +1989 120 2.29202 +1989 121 4.69169 +1989 122 4.77295 +1989 123 8.76433 +1989 124 8.65123 +1989 125 10.04763 +1989 126 6.67155 +1989 127 9.43047 +1989 128 11.92139 +1989 129 11.18016 +1989 130 10.82186 +1989 131 12.01029 +1989 132 7.31165 +1989 133 4.87178 +1989 134 6.11497 +1989 135 7.90151 +1989 136 9.36904 +1989 137 10.72924 +1989 138 11.52645 +1989 139 11.55479 +1989 140 10.31988 +1989 141 5.59313 +1989 142 5.67211 +1989 143 4.96937 +1989 144 1.32144 +1989 145 7.60482 +1989 146 6.28741 +1989 147 9.60163 +1989 148 2.54169 +1989 149 3.50412 +1989 150 9.14985 +1989 151 8.12380 +1989 152 5.86459 +1989 153 3.67349 +1989 154 8.54746 +1989 155 9.45441 +1989 156 9.69365 +1989 157 8.25077 +1989 158 5.07562 +1989 159 5.96980 +1989 160 3.20645 +1989 161 1.03700 +1989 162 2.36496 +1989 163 7.45514 +1989 164 5.99793 +1989 165 1.28135 +1989 166 5.25978 +1989 167 8.50619 +1989 168 6.72978 +1989 169 2.77368 +1989 170 5.78019 +1989 171 9.60137 +1989 172 9.17680 +1989 173 6.28065 +1989 174 1.82597 +1989 175 5.61104 +1989 176 4.13388 +1989 177 8.94974 +1989 178 9.15002 +1989 179 8.34335 +1989 180 8.90585 +1989 181 8.35640 +1989 182 9.74480 +1989 183 9.75620 +1989 184 9.37388 +1989 185 4.78580 +1989 186 6.76960 +1989 187 8.44052 +1989 188 7.95133 +1989 189 7.42771 +1989 190 8.45338 +1989 191 4.78353 +1989 192 1.74077 +1989 193 5.54890 +1989 194 4.99294 +1989 195 6.07120 +1989 196 7.87566 +1989 197 6.47545 +1989 198 5.76380 +1989 199 4.28489 +1989 200 10.75671 +1989 201 11.03518 +1989 202 11.14655 +1989 203 10.76743 +1989 204 10.63904 +1989 205 10.27452 +1989 206 2.01279 +1989 207 8.81695 +1989 208 11.50356 +1989 209 10.84657 +1989 210 11.55064 +1989 211 10.99008 +1989 212 7.28247 +1989 213 8.04589 +1989 214 4.89810 +1989 215 3.06354 +1989 216 7.31637 +1989 217 8.77202 +1989 218 9.66807 +1989 219 9.71266 +1989 220 8.09336 +1989 221 3.27051 +1989 222 9.36593 +1989 223 13.65111 +1989 224 6.17928 +1989 225 8.51878 +1989 226 11.86739 +1989 227 12.38561 +1989 228 11.98342 +1989 229 13.04217 +1989 230 12.02403 +1989 231 13.09427 +1989 232 10.60361 +1989 233 3.95183 +1989 234 3.33656 +1989 235 10.33154 +1989 236 7.45386 +1989 237 9.47143 +1989 238 12.29455 +1989 239 8.59169 +1989 240 9.80191 +1989 241 11.32583 +1989 242 9.32783 +1989 243 13.59037 +1989 244 17.94321 +1989 245 17.32501 +1989 246 14.85294 +1989 247 12.30293 +1989 248 11.78271 +1989 249 2.84368 +1989 250 6.49649 +1989 251 15.41246 +1989 252 10.25387 +1989 253 13.14662 +1989 254 11.55652 +1989 255 11.49794 +1989 256 12.27200 +1989 257 12.66633 +1989 258 12.60671 +1989 259 15.37488 +1989 260 13.98660 +1989 261 15.38119 +1989 262 18.17467 +1989 263 16.79443 +1989 264 10.66824 +1989 265 19.27351 +1989 266 16.86502 +1989 267 4.31986 +1989 268 5.19251 +1989 269 13.47538 +1989 270 12.41819 +1989 271 14.18610 +1989 272 15.44512 +1989 273 14.62700 +1989 274 7.73003 +1989 275 13.11803 +1989 276 15.58596 +1989 277 12.27969 +1989 278 16.31975 +1989 279 3.93388 +1989 280 15.63287 +1989 281 15.10600 +1989 282 21.74429 +1989 283 14.61992 +1989 284 18.33270 +1989 285 18.97266 +1989 286 13.75203 +1989 287 8.25734 +1989 288 17.70984 +1989 289 18.80453 +1989 290 19.12274 +1989 291 23.24238 +1989 292 19.05915 +1989 293 11.22898 +1989 294 16.17607 +1989 295 20.49780 +1989 296 19.16836 +1989 297 20.59119 +1989 298 21.58644 +1989 299 17.01441 +1989 300 20.79933 +1989 301 13.99455 +1989 302 15.96534 +1989 303 9.79068 +1989 304 15.19396 +1989 305 20.33372 +1989 306 21.01974 +1989 307 22.75992 +1989 308 23.38563 +1989 309 17.67502 +1989 310 18.52615 +1989 311 20.02882 +1989 312 13.74218 +1989 313 20.36820 +1989 314 24.22708 +1989 315 29.76143 +1989 316 22.03347 +1989 317 5.86224 +1989 318 15.79245 +1989 319 31.20777 +1989 320 22.01826 +1989 321 26.27942 +1989 322 13.20823 +1989 323 25.74340 +1989 324 18.22470 +1989 325 23.46771 +1989 326 17.40295 +1989 327 22.90836 +1989 328 15.03861 +1989 329 17.64210 +1989 330 7.87857 +1989 331 21.82170 +1989 332 29.52832 +1989 333 23.12772 +1989 334 20.57072 +1989 335 29.03135 +1989 336 28.58121 +1989 337 22.43419 +1989 338 19.05725 +1989 339 28.58604 +1989 340 19.56787 +1989 341 18.72392 +1989 342 32.82811 +1989 343 33.37165 +1989 344 33.37857 +1989 345 19.01163 +1989 346 30.30523 +1989 347 32.06002 +1989 348 23.41345 +1989 349 8.79915 +1989 350 22.78178 +1989 351 27.92249 +1989 352 33.93429 +1989 353 26.90289 +1989 354 22.27228 +1989 355 20.78870 +1989 356 22.37095 +1989 357 19.87572 +1989 358 24.47772 +1989 359 23.53553 +1989 360 19.64485 +1989 361 21.98560 +1989 362 11.75783 +1989 363 22.66929 +1989 364 8.64423 +1989 365 18.68175 +1990 1 7.10152 +1990 2 25.21221 +1990 3 22.96892 +1990 4 10.99742 +1990 5 25.33153 +1990 6 27.00207 +1990 7 23.84657 +1990 8 18.01380 +1990 9 19.91468 +1990 10 27.32391 +1990 11 27.78771 +1990 12 30.38939 +1990 13 21.98215 +1990 14 14.46293 +1990 15 16.24657 +1990 16 18.70534 +1990 17 23.43470 +1990 18 22.46296 +1990 19 11.72344 +1990 20 13.77855 +1990 21 29.67011 +1990 22 13.70045 +1990 23 25.87499 +1990 24 29.58578 +1990 25 28.73120 +1990 26 25.57112 +1990 27 10.91612 +1990 28 12.62736 +1990 29 7.95504 +1990 30 26.16702 +1990 31 25.24236 +1990 32 27.88785 +1990 33 23.45293 +1990 34 27.26836 +1990 35 26.79471 +1990 36 28.61248 +1990 37 28.40979 +1990 38 29.11110 +1990 39 21.17258 +1990 40 21.67655 +1990 41 19.30366 +1990 42 20.33191 +1990 43 10.16971 +1990 44 12.74530 +1990 45 18.71882 +1990 46 19.85092 +1990 47 19.84945 +1990 48 20.86361 +1990 49 19.68227 +1990 50 14.69422 +1990 51 25.61872 +1990 52 24.29698 +1990 53 18.97811 +1990 54 26.22352 +1990 55 14.81268 +1990 56 17.34108 +1990 57 15.31518 +1990 58 8.56678 +1990 59 20.67474 +1990 60 23.62167 +1990 61 23.68449 +1990 62 24.47012 +1990 63 20.72779 +1990 64 22.99666 +1990 65 16.61221 +1990 66 16.36096 +1990 67 3.71913 +1990 68 6.84071 +1990 69 6.67818 +1990 70 16.65965 +1990 71 15.44106 +1990 72 9.18104 +1990 73 18.61212 +1990 74 4.57265 +1990 75 14.99507 +1990 76 17.73032 +1990 77 15.18938 +1990 78 13.71868 +1990 79 15.44892 +1990 80 17.82648 +1990 81 21.90447 +1990 82 20.62342 +1990 83 16.51640 +1990 84 18.83745 +1990 85 20.53071 +1990 86 19.23238 +1990 87 19.38790 +1990 88 15.71314 +1990 89 17.48062 +1990 90 13.66857 +1990 91 12.38890 +1990 92 16.05338 +1990 93 14.88473 +1990 94 18.83494 +1990 95 16.51078 +1990 96 18.14305 +1990 97 12.96639 +1990 98 4.96111 +1990 99 8.86248 +1990 100 13.15284 +1990 101 12.19208 +1990 102 7.09792 +1990 103 10.96978 +1990 104 13.64852 +1990 105 9.45035 +1990 106 12.62563 +1990 107 11.45785 +1990 108 15.51735 +1990 109 10.09800 +1990 110 9.76398 +1990 111 16.05459 +1990 112 7.53087 +1990 113 1.42822 +1990 114 9.30131 +1990 115 9.52422 +1990 116 10.57009 +1990 117 4.14467 +1990 118 11.40126 +1990 119 10.42995 +1990 120 8.18176 +1990 121 12.53474 +1990 122 6.84739 +1990 123 10.43824 +1990 124 13.46008 +1990 125 8.99510 +1990 126 8.21921 +1990 127 10.66712 +1990 128 13.06126 +1990 129 12.65008 +1990 130 12.52532 +1990 131 12.13324 +1990 132 9.45804 +1990 133 8.93799 +1990 134 9.61831 +1990 135 10.05869 +1990 136 11.54952 +1990 137 11.16876 +1990 138 9.07891 +1990 139 1.82495 +1990 140 9.15373 +1990 141 8.58599 +1990 142 7.96502 +1990 143 3.66054 +1990 144 4.13500 +1990 145 5.28140 +1990 146 9.32472 +1990 147 6.80362 +1990 148 8.61867 +1990 149 7.10795 +1990 150 7.34200 +1990 151 6.53316 +1990 152 3.29948 +1990 153 7.26603 +1990 154 6.47889 +1990 155 7.85673 +1990 156 5.76297 +1990 157 9.84217 +1990 158 9.95907 +1990 159 8.54334 +1990 160 8.16218 +1990 161 6.48800 +1990 162 6.28326 +1990 163 7.91355 +1990 164 8.09742 +1990 165 8.99277 +1990 166 7.54714 +1990 167 7.26487 +1990 168 5.31572 +1990 169 3.71343 +1990 170 2.71226 +1990 171 3.23455 +1990 172 5.94169 +1990 173 6.84132 +1990 174 7.72753 +1990 175 6.97996 +1990 176 7.11712 +1990 177 1.28207 +1990 178 7.49844 +1990 179 6.49909 +1990 180 6.66325 +1990 181 7.88260 +1990 182 9.59066 +1990 183 3.05688 +1990 184 2.49896 +1990 185 6.81912 +1990 186 6.46744 +1990 187 1.16278 +1990 188 8.93290 +1990 189 5.61806 +1990 190 4.88857 +1990 191 9.10483 +1990 192 7.96813 +1990 193 7.00104 +1990 194 8.51642 +1990 195 7.74594 +1990 196 7.16283 +1990 197 7.00231 +1990 198 3.00772 +1990 199 9.34476 +1990 200 10.04737 +1990 201 1.95448 +1990 202 6.68563 +1990 203 4.49571 +1990 204 7.95108 +1990 205 9.99259 +1990 206 6.37312 +1990 207 4.34825 +1990 208 7.02389 +1990 209 4.59910 +1990 210 7.34692 +1990 211 10.66712 +1990 212 11.75412 +1990 213 11.49621 +1990 214 11.83836 +1990 215 4.61256 +1990 216 1.54556 +1990 217 5.54296 +1990 218 5.68443 +1990 219 9.46184 +1990 220 11.25101 +1990 221 8.07161 +1990 222 2.77368 +1990 223 6.95589 +1990 224 9.77262 +1990 225 8.32549 +1990 226 10.14146 +1990 227 8.47716 +1990 228 6.25108 +1990 229 11.14932 +1990 230 10.23520 +1990 231 6.32807 +1990 232 10.16055 +1990 233 8.58600 +1990 234 3.73671 +1990 235 6.12975 +1990 236 9.26329 +1990 237 11.35477 +1990 238 12.27701 +1990 239 14.23189 +1990 240 13.13090 +1990 241 12.20564 +1990 242 15.87064 +1990 243 16.03238 +1990 244 13.94764 +1990 245 7.12862 +1990 246 10.58564 +1990 247 5.79823 +1990 248 12.53647 +1990 249 17.83140 +1990 250 14.34119 +1990 251 15.57585 +1990 252 18.01673 +1990 253 16.38291 +1990 254 15.37065 +1990 255 14.81172 +1990 256 12.49422 +1990 257 13.62744 +1990 258 12.72802 +1990 259 12.47849 +1990 260 19.08351 +1990 261 16.05433 +1990 262 19.38868 +1990 263 19.64451 +1990 264 16.32839 +1990 265 12.35788 +1990 266 14.89277 +1990 267 11.91292 +1990 268 18.80600 +1990 269 19.86267 +1990 270 20.85324 +1990 271 10.29344 +1990 272 6.76824 +1990 273 14.91756 +1990 274 14.89121 +1990 275 15.40305 +1990 276 20.35575 +1990 277 15.12181 +1990 278 15.80273 +1990 279 17.43379 +1990 280 19.94777 +1990 281 21.54894 +1990 282 21.42046 +1990 283 11.49206 +1990 284 13.09107 +1990 285 17.85171 +1990 286 15.33591 +1990 287 7.82503 +1990 288 10.86644 +1990 289 8.18931 +1990 290 14.19034 +1990 291 7.85921 +1990 292 17.51682 +1990 293 16.91850 +1990 294 14.25565 +1990 295 16.28692 +1990 296 20.61107 +1990 297 16.78614 +1990 298 19.70767 +1990 299 7.04716 +1990 300 21.34391 +1990 301 20.54964 +1990 302 27.98004 +1990 303 16.37988 +1990 304 23.75110 +1990 305 21.72528 +1990 306 18.57004 +1990 307 8.40248 +1990 308 26.19726 +1990 309 27.63141 +1990 310 29.18678 +1990 311 24.84475 +1990 312 30.17079 +1990 313 29.57325 +1990 314 13.23242 +1990 315 4.87820 +1990 316 19.27187 +1990 317 21.26926 +1990 318 24.29119 +1990 319 28.59460 +1990 320 20.43991 +1990 321 18.92220 +1990 322 11.69735 +1990 323 17.60011 +1990 324 18.82509 +1990 325 19.57427 +1990 326 24.71576 +1990 327 18.22565 +1990 328 11.78764 +1990 329 23.23184 +1990 330 15.70994 +1990 331 21.25768 +1990 332 24.66357 +1990 333 26.01564 +1990 334 21.59205 +1990 335 29.13062 +1990 336 28.35328 +1990 337 18.68711 +1990 338 32.29675 +1990 339 24.77796 +1990 340 13.40194 +1990 341 29.00863 +1990 342 30.68107 +1990 343 27.12943 +1990 344 31.24958 +1990 345 14.13824 +1990 346 26.37049 +1990 347 23.07079 +1990 348 26.55824 +1990 349 23.42053 +1990 350 31.67459 +1990 351 24.32722 +1990 352 22.29604 +1990 353 28.56047 +1990 354 22.67948 +1990 355 22.82463 +1990 356 21.97524 +1990 357 22.07200 +1990 358 13.47926 +1990 359 32.06693 +1990 360 32.21156 +1990 361 24.49708 +1990 362 17.39647 +1990 363 20.52000 +1990 364 23.98274 +1990 365 33.54610 +1991 1 22.73763 +1991 2 23.01385 +1991 3 30.37910 +1991 4 33.38937 +1991 5 33.60338 +1991 6 23.09265 +1991 7 24.35970 +1991 8 26.44220 +1991 9 30.35249 +1991 10 23.36360 +1991 11 28.48141 +1991 12 29.91816 +1991 13 30.47311 +1991 14 24.12323 +1991 15 20.14822 +1991 16 21.55931 +1991 17 28.07836 +1991 18 25.84397 +1991 19 21.85799 +1991 20 19.64123 +1991 21 21.37139 +1991 22 21.36352 +1991 23 9.21715 +1991 24 9.79197 +1991 25 8.26437 +1991 26 10.59178 +1991 27 16.40701 +1991 28 18.25986 +1991 29 8.92011 +1991 30 22.86870 +1991 31 19.62671 +1991 32 9.59576 +1991 33 27.48177 +1991 34 25.30043 +1991 35 29.51925 +1991 36 27.49689 +1991 37 20.65167 +1991 38 26.13790 +1991 39 25.51677 +1991 40 16.06470 +1991 41 17.01181 +1991 42 18.59665 +1991 43 16.57662 +1991 44 19.20396 +1991 45 20.39593 +1991 46 26.31917 +1991 47 5.70479 +1991 48 8.42988 +1991 49 18.99141 +1991 50 23.69235 +1991 51 25.16806 +1991 52 22.48422 +1991 53 25.95810 +1991 54 27.47226 +1991 55 23.52534 +1991 56 25.80198 +1991 57 14.72990 +1991 58 9.41112 +1991 59 14.99481 +1991 60 18.13787 +1991 61 14.63685 +1991 62 18.45193 +1991 63 22.79975 +1991 64 21.57805 +1991 65 14.28399 +1991 66 16.93500 +1991 67 17.15878 +1991 68 18.55362 +1991 69 20.10001 +1991 70 19.79027 +1991 71 21.67620 +1991 72 13.70805 +1991 73 16.69283 +1991 74 19.48242 +1991 75 17.35197 +1991 76 19.61047 +1991 77 14.10065 +1991 78 13.89606 +1991 79 20.01283 +1991 80 18.63726 +1991 81 13.82348 +1991 82 11.64076 +1991 83 17.27421 +1991 84 9.98836 +1991 85 6.35428 +1991 86 17.16198 +1991 87 13.29661 +1991 88 17.21218 +1991 89 14.28157 +1991 90 16.61956 +1991 91 13.12528 +1991 92 7.69395 +1991 93 17.08327 +1991 94 12.62831 +1991 95 15.63287 +1991 96 11.82168 +1991 97 8.07883 +1991 98 14.68359 +1991 99 13.20780 +1991 100 14.68999 +1991 101 12.88060 +1991 102 16.72471 +1991 103 17.26367 +1991 104 11.23649 +1991 105 10.07761 +1991 106 5.50060 +1991 107 8.47037 +1991 108 10.51989 +1991 109 12.56126 +1991 110 11.95949 +1991 111 11.08002 +1991 112 3.71392 +1991 113 5.44412 +1991 114 8.30390 +1991 115 10.05705 +1991 116 14.69690 +1991 117 2.94776 +1991 118 11.29965 +1991 119 7.48065 +1991 120 8.87043 +1991 121 12.35831 +1991 122 12.13073 +1991 123 3.01914 +1991 124 8.87147 +1991 125 6.02200 +1991 126 7.81277 +1991 127 9.71862 +1991 128 7.65183 +1991 129 9.98188 +1991 130 6.96173 +1991 131 12.09954 +1991 132 9.90075 +1991 133 11.25455 +1991 134 8.48361 +1991 135 7.48568 +1991 136 7.18758 +1991 137 7.32149 +1991 138 8.70083 +1991 139 8.21103 +1991 140 8.04641 +1991 141 8.75076 +1991 142 9.01316 +1991 143 8.08643 +1991 144 10.13463 +1991 145 6.05381 +1991 146 7.18801 +1991 147 3.20583 +1991 148 7.95274 +1991 149 8.19698 +1991 150 7.20208 +1991 151 6.63890 +1991 152 5.05373 +1991 153 7.91650 +1991 154 9.08202 +1991 155 7.15706 +1991 156 2.55341 +1991 157 8.97722 +1991 158 8.75465 +1991 159 9.58867 +1991 160 9.18078 +1991 161 9.03597 +1991 162 7.01209 +1991 163 7.16198 +1991 164 7.03123 +1991 165 1.14192 +1991 166 9.42624 +1991 167 5.22479 +1991 168 4.21554 +1991 169 8.05419 +1991 170 8.05961 +1991 171 9.47281 +1991 172 7.57540 +1991 173 0.98086 +1991 174 7.05274 +1991 175 8.47201 +1991 176 9.06820 +1991 177 4.18929 +1991 178 7.52222 +1991 179 9.04617 +1991 180 9.13257 +1991 181 3.41698 +1991 182 5.73742 +1991 183 9.41440 +1991 184 9.21819 +1991 185 9.06578 +1991 186 7.33570 +1991 187 8.39142 +1991 188 7.43869 +1991 189 3.54859 +1991 190 9.34554 +1991 191 9.75344 +1991 192 7.15478 +1991 193 10.18587 +1991 194 10.07277 +1991 195 9.44516 +1991 196 7.45803 +1991 197 1.31767 +1991 198 6.55509 +1991 199 5.17481 +1991 200 4.37164 +1991 201 4.94195 +1991 202 6.59540 +1991 203 4.18625 +1991 204 8.94707 +1991 205 6.23340 +1991 206 9.08194 +1991 207 10.10759 +1991 208 9.72156 +1991 209 8.22144 +1991 210 7.65040 +1991 211 7.46340 +1991 212 7.49148 +1991 213 10.38174 +1991 214 11.75109 +1991 215 11.79593 +1991 216 6.97212 +1991 217 4.78087 +1991 218 9.30476 +1991 219 9.42028 +1991 220 1.66418 +1991 221 8.73331 +1991 222 11.20193 +1991 223 9.47341 +1991 224 11.12797 +1991 225 8.62124 +1991 226 7.00876 +1991 227 8.33445 +1991 228 5.53533 +1991 229 11.38985 +1991 230 10.83413 +1991 231 10.64241 +1991 232 6.51996 +1991 233 4.33999 +1991 234 11.13895 +1991 235 11.47297 +1991 236 10.82894 +1991 237 6.83260 +1991 238 16.05113 +1991 239 10.26328 +1991 240 9.38252 +1991 241 10.99267 +1991 242 8.00208 +1991 243 2.42772 +1991 244 10.99509 +1991 245 12.78806 +1991 246 13.50743 +1991 247 15.71003 +1991 248 15.95704 +1991 249 9.60293 +1991 250 16.73058 +1991 251 18.00973 +1991 252 17.91228 +1991 253 18.62171 +1991 254 9.47843 +1991 255 5.95674 +1991 256 5.76816 +1991 257 11.99871 +1991 258 16.18592 +1991 259 5.33055 +1991 260 7.75342 +1991 261 12.58468 +1991 262 11.59384 +1991 263 13.45395 +1991 264 15.25392 +1991 265 12.46908 +1991 266 13.77467 +1991 267 15.74666 +1991 268 16.78838 +1991 269 18.38817 +1991 270 5.85403 +1991 271 13.08865 +1991 272 18.61142 +1991 273 17.31361 +1991 274 23.37785 +1991 275 20.85921 +1991 276 17.16733 +1991 277 23.74523 +1991 278 16.64245 +1991 279 18.78751 +1991 280 18.14400 +1991 281 16.35699 +1991 282 14.13720 +1991 283 21.11763 +1991 284 15.57507 +1991 285 16.67943 +1991 286 21.78256 +1991 287 20.40561 +1991 288 24.99941 +1991 289 25.68439 +1991 290 9.56379 +1991 291 24.58668 +1991 292 22.69737 +1991 293 19.49962 +1991 294 15.15119 +1991 295 17.06944 +1991 296 15.06496 +1991 297 17.54361 +1991 298 19.40268 +1991 299 16.87020 +1991 300 5.54542 +1991 301 14.32218 +1991 302 19.11488 +1991 303 24.48351 +1991 304 27.83074 +1991 305 16.80938 +1991 306 18.10426 +1991 307 15.13158 +1991 308 21.35808 +1991 309 21.38754 +1991 310 8.97990 +1991 311 25.26250 +1991 312 7.93558 +1991 313 22.43480 +1991 314 23.54936 +1991 315 22.88045 +1991 316 18.46403 +1991 317 23.53752 +1991 318 23.11096 +1991 319 22.05636 +1991 320 27.15103 +1991 321 25.24375 +1991 322 24.35823 +1991 323 30.89180 +1991 324 11.39720 +1991 325 20.74818 +1991 326 18.88419 +1991 327 22.12419 +1991 328 27.45870 +1991 329 23.60439 +1991 330 32.31593 +1991 331 16.81128 +1991 332 25.49690 +1991 333 32.00584 +1991 334 26.61388 +1991 335 22.22683 +1991 336 18.50204 +1991 337 19.45028 +1991 338 32.84522 +1991 339 17.09968 +1991 340 23.31063 +1991 341 23.34839 +1991 342 20.30435 +1991 343 26.34189 +1991 344 33.19669 +1991 345 26.24296 +1991 346 21.88754 +1991 347 31.12327 +1991 348 27.77449 +1991 349 30.27931 +1991 350 31.23066 +1991 351 29.80282 +1991 352 33.75302 +1991 353 32.12784 +1991 354 25.42346 +1991 355 25.62875 +1991 356 12.74003 +1991 357 9.38917 +1991 358 22.76389 +1991 359 26.66892 +1991 360 17.13269 +1991 361 19.85714 +1991 362 20.42185 +1991 363 18.93551 +1991 364 8.23465 +1991 365 19.81437 +1992 1 27.66839 +1992 2 29.21028 +1992 3 21.83138 +1992 4 23.26268 +1992 5 28.48548 +1992 6 14.15629 +1992 7 25.45301 +1992 8 26.36142 +1992 9 24.48714 +1992 10 24.24902 +1992 11 20.05344 +1992 12 7.07663 +1992 13 10.29154 +1992 14 30.30523 +1992 15 18.85196 +1992 16 6.75142 +1992 17 11.34311 +1992 18 28.33816 +1992 19 30.50145 +1992 20 30.15585 +1992 21 19.58040 +1992 22 26.30223 +1992 23 16.03981 +1992 24 16.78501 +1992 25 8.61857 +1992 26 11.21057 +1992 27 14.49274 +1992 28 24.65225 +1992 29 15.25530 +1992 30 28.48038 +1992 31 27.22188 +1992 32 27.35148 +1992 33 21.48492 +1992 34 17.03004 +1992 35 15.03835 +1992 36 15.81846 +1992 37 22.00314 +1992 38 17.54914 +1992 39 10.88087 +1992 40 26.16944 +1992 41 24.92415 +1992 42 28.06514 +1992 43 24.22017 +1992 44 11.67938 +1992 45 5.88838 +1992 46 16.65429 +1992 47 11.12746 +1992 48 24.18051 +1992 49 21.12350 +1992 50 26.81942 +1992 51 6.87728 +1992 52 24.93435 +1992 53 17.39655 +1992 54 18.11108 +1992 55 14.71841 +1992 56 14.67876 +1992 57 16.54595 +1992 58 18.06460 +1992 59 23.82834 +1992 60 23.22648 +1992 61 25.18422 +1992 62 15.19128 +1992 63 19.21147 +1992 64 24.65035 +1992 65 16.48529 +1992 66 5.06218 +1992 67 14.59244 +1992 68 19.71052 +1992 69 15.53334 +1992 70 20.45399 +1992 71 18.76841 +1992 72 22.54297 +1992 73 20.63422 +1992 74 11.53025 +1992 75 8.47955 +1992 76 13.78970 +1992 77 12.03993 +1992 78 10.12427 +1992 79 19.17104 +1992 80 9.35868 +1992 81 13.59720 +1992 82 19.82984 +1992 83 18.81256 +1992 84 13.46967 +1992 85 13.80646 +1992 86 20.05672 +1992 87 18.75614 +1992 88 9.45518 +1992 89 16.38965 +1992 90 17.94070 +1992 91 8.67663 +1992 92 10.93686 +1992 93 17.69757 +1992 94 15.43113 +1992 95 8.81289 +1992 96 18.59890 +1992 97 17.73472 +1992 98 13.34785 +1992 99 8.23471 +1992 100 8.21945 +1992 101 4.71366 +1992 102 5.92766 +1992 103 14.59840 +1992 104 16.01882 +1992 105 14.77751 +1992 106 14.41843 +1992 107 14.50967 +1992 108 13.31934 +1992 109 12.10965 +1992 110 15.84403 +1992 111 15.55701 +1992 112 14.63037 +1992 113 15.50604 +1992 114 11.37396 +1992 115 8.52467 +1992 116 6.65156 +1992 117 10.46373 +1992 118 9.20134 +1992 119 13.15371 +1992 120 13.91567 +1992 121 8.68147 +1992 122 2.67646 +1992 123 5.20805 +1992 124 11.74202 +1992 125 12.21532 +1992 126 8.56920 +1992 127 5.59998 +1992 128 7.36091 +1992 129 10.18103 +1992 130 8.37874 +1992 131 7.36721 +1992 132 8.59972 +1992 133 12.05997 +1992 134 7.86155 +1992 135 4.27333 +1992 136 3.15328 +1992 137 8.62867 +1992 138 7.35559 +1992 139 8.71569 +1992 140 7.71404 +1992 141 8.27377 +1992 142 7.20433 +1992 143 6.91265 +1992 144 2.21797 +1992 145 5.33193 +1992 146 3.91508 +1992 147 7.66342 +1992 148 1.92352 +1992 149 8.69348 +1992 150 8.47978 +1992 151 10.02663 +1992 152 10.18112 +1992 153 9.23305 +1992 154 7.12649 +1992 155 6.12462 +1992 156 6.57327 +1992 157 1.67942 +1992 158 3.40160 +1992 159 5.18319 +1992 160 6.38724 +1992 161 5.41750 +1992 162 6.89843 +1992 163 5.12900 +1992 164 5.15679 +1992 165 6.32332 +1992 166 7.50410 +1992 167 7.39068 +1992 168 5.21116 +1992 169 5.39110 +1992 170 3.62463 +1992 171 7.13031 +1992 172 8.80174 +1992 173 8.48930 +1992 174 8.51970 +1992 175 8.30327 +1992 176 8.89056 +1992 177 9.22908 +1992 178 8.18221 +1992 179 5.05153 +1992 180 8.61227 +1992 181 9.09239 +1992 182 7.44958 +1992 183 6.93670 +1992 184 6.17747 +1992 185 4.75332 +1992 186 2.52312 +1992 187 7.27271 +1992 188 4.65259 +1992 189 3.36211 +1992 190 6.05073 +1992 191 7.14268 +1992 192 7.56053 +1992 193 6.85486 +1992 194 5.56787 +1992 195 1.33182 +1992 196 5.81823 +1992 197 9.10950 +1992 198 9.94524 +1992 199 10.16038 +1992 200 6.62844 +1992 201 5.39882 +1992 202 2.05794 +1992 203 5.11153 +1992 204 7.61393 +1992 205 5.50406 +1992 206 8.57237 +1992 207 3.34113 +1992 208 11.29153 +1992 209 7.54943 +1992 210 8.54550 +1992 211 4.95011 +1992 212 8.41096 +1992 213 9.61770 +1992 214 9.82092 +1992 215 7.00267 +1992 216 5.30382 +1992 217 11.82012 +1992 218 10.43038 +1992 219 9.03727 +1992 220 7.83913 +1992 221 1.28665 +1992 222 4.42168 +1992 223 11.45923 +1992 224 3.14274 +1992 225 10.27745 +1992 226 6.45630 +1992 227 10.07796 +1992 228 9.27660 +1992 229 12.55608 +1992 230 14.57706 +1992 231 3.26818 +1992 232 11.56620 +1992 233 9.09861 +1992 234 14.83151 +1992 235 14.01944 +1992 236 13.37152 +1992 237 10.47730 +1992 238 3.96895 +1992 239 10.16980 +1992 240 12.24720 +1992 241 11.41638 +1992 242 14.73172 +1992 243 15.64212 +1992 244 4.49340 +1992 245 12.13989 +1992 246 14.17668 +1992 247 12.29100 +1992 248 11.19381 +1992 249 7.63797 +1992 250 11.43850 +1992 251 13.16874 +1992 252 12.17549 +1992 253 15.35242 +1992 254 14.97269 +1992 255 19.83813 +1992 256 19.47534 +1992 257 9.77452 +1992 258 10.13826 +1992 259 19.54117 +1992 260 14.41135 +1992 261 5.43991 +1992 262 14.93675 +1992 263 14.85112 +1992 264 13.10895 +1992 265 14.89285 +1992 266 9.88356 +1992 267 13.58182 +1992 268 15.88602 +1992 269 14.17271 +1992 270 10.99336 +1992 271 19.26660 +1992 272 16.17252 +1992 273 14.97995 +1992 274 11.25049 +1992 275 10.33102 +1992 276 6.48553 +1992 277 21.00756 +1992 278 21.57805 +1992 279 22.80623 +1992 280 15.10281 +1992 281 14.73552 +1992 282 13.41308 +1992 283 15.21660 +1992 284 12.24271 +1992 285 13.64826 +1992 286 18.68193 +1992 287 9.60932 +1992 288 12.68516 +1992 289 19.72339 +1992 290 22.40559 +1992 291 17.75166 +1992 292 23.30960 +1992 293 15.39536 +1992 294 11.88164 +1992 295 12.14127 +1992 296 7.85823 +1992 297 15.14946 +1992 298 17.39102 +1992 299 17.96602 +1992 300 18.46938 +1992 301 22.07123 +1992 302 22.07658 +1992 303 21.19651 +1992 304 20.90932 +1992 305 26.12045 +1992 306 24.60456 +1992 307 23.96010 +1992 308 17.15161 +1992 309 21.05171 +1992 310 19.90976 +1992 311 11.65579 +1992 312 9.93133 +1992 313 26.10507 +1992 314 19.09068 +1992 315 20.37122 +1992 316 19.40535 +1992 317 21.54643 +1992 318 16.79400 +1992 319 8.24837 +1992 320 19.94881 +1992 321 24.90013 +1992 322 21.10977 +1992 323 24.76794 +1992 324 24.84605 +1992 325 24.79775 +1992 326 13.97105 +1992 327 18.14046 +1992 328 12.47435 +1992 329 11.63920 +1992 330 24.29335 +1992 331 17.36476 +1992 332 28.28762 +1992 333 20.83761 +1992 334 22.11667 +1992 335 5.63262 +1992 336 12.27614 +1992 337 6.24122 +1992 338 22.67058 +1992 339 5.28891 +1992 340 20.27462 +1992 341 28.40841 +1992 342 19.89213 +1992 343 18.84427 +1992 344 7.50604 +1992 345 12.76163 +1992 346 12.26076 +1992 347 27.25177 +1992 348 33.69099 +1992 349 22.97298 +1992 350 32.15030 +1992 351 19.73877 +1992 352 28.51658 +1992 353 23.35228 +1992 354 23.91517 +1992 355 26.31165 +1992 356 27.27406 +1992 357 27.39822 +1992 358 9.83880 +1992 359 20.40146 +1992 360 22.29224 +1992 361 12.19977 +1992 362 18.73022 +1992 363 22.13205 +1992 364 25.75299 +1992 365 26.70322 +1992 366 23.64638 +1993 1 25.06749 +1993 2 24.53872 +1993 3 26.34241 +1993 4 19.02450 +1993 5 21.26036 +1993 6 22.44491 +1993 7 21.42236 +1993 8 27.50561 +1993 9 32.66084 +1993 10 24.37465 +1993 11 32.86250 +1993 12 15.71901 +1993 13 24.73096 +1993 14 30.55139 +1993 15 23.48896 +1993 16 31.34506 +1993 17 31.95901 +1993 18 24.88251 +1993 19 32.71406 +1993 20 29.57532 +1993 21 19.88928 +1993 22 31.99668 +1993 23 24.38718 +1993 24 29.27327 +1993 25 20.40189 +1993 26 22.16696 +1993 27 29.34593 +1993 28 30.74630 +1993 29 11.05860 +1993 30 23.25430 +1993 31 20.35022 +1993 32 25.89304 +1993 33 27.95939 +1993 34 26.21195 +1993 35 24.88389 +1993 36 25.00356 +1993 37 22.63516 +1993 38 22.37440 +1993 39 15.13581 +1993 40 8.89030 +1993 41 13.43019 +1993 42 26.78426 +1993 43 28.75643 +1993 44 14.65992 +1993 45 26.05038 +1993 46 23.31798 +1993 47 23.12418 +1993 48 13.57672 +1993 49 9.11779 +1993 50 4.25393 +1993 51 19.36768 +1993 52 13.65630 +1993 53 16.56072 +1993 54 18.89594 +1993 55 16.82726 +1993 56 13.25324 +1993 57 25.12547 +1993 58 22.80433 +1993 59 23.93401 +1993 60 19.68529 +1993 61 9.65796 +1993 62 4.38833 +1993 63 5.71773 +1993 64 16.36908 +1993 65 16.26834 +1993 66 21.27937 +1993 67 22.39972 +1993 68 21.47835 +1993 69 16.22765 +1993 70 13.50320 +1993 71 12.65276 +1993 72 16.81785 +1993 73 22.50158 +1993 74 19.28284 +1993 75 11.48247 +1993 76 13.46052 +1993 77 17.83866 +1993 78 21.40301 +1993 79 11.81805 +1993 80 21.54522 +1993 81 21.47835 +1993 82 20.98647 +1993 83 20.95831 +1993 84 18.78008 +1993 85 19.92099 +1993 86 9.22977 +1993 87 8.77090 +1993 88 12.80301 +1993 89 5.89015 +1993 90 13.80862 +1993 91 10.82583 +1993 92 11.41836 +1993 93 8.98422 +1993 94 9.90455 +1993 95 13.77510 +1993 96 10.47773 +1993 97 9.37872 +1993 98 8.92909 +1993 99 13.64852 +1993 100 15.81172 +1993 101 11.82807 +1993 102 13.10066 +1993 103 9.32869 +1993 104 8.34998 +1993 105 11.52109 +1993 106 15.80636 +1993 107 11.41629 +1993 108 11.36773 +1993 109 13.43321 +1993 110 8.00340 +1993 111 15.01615 +1993 112 11.66046 +1993 113 12.07872 +1993 114 13.11163 +1993 115 7.80777 +1993 116 4.37793 +1993 117 4.29754 +1993 118 10.11865 +1993 119 8.41489 +1993 120 10.82894 +1993 121 9.68613 +1993 122 9.90377 +1993 123 7.50001 +1993 124 8.24370 +1993 125 5.67714 +1993 126 12.38337 +1993 127 12.53578 +1993 128 8.21077 +1993 129 7.01433 +1993 130 7.71224 +1993 131 4.31044 +1993 132 6.16724 +1993 133 9.16548 +1993 134 5.74340 +1993 135 1.24012 +1993 136 9.07312 +1993 137 9.24342 +1993 138 9.29759 +1993 139 7.86583 +1993 140 7.11070 +1993 141 9.50599 +1993 142 10.21032 +1993 143 7.31248 +1993 144 6.47082 +1993 145 1.51980 +1993 146 5.75364 +1993 147 10.59722 +1993 148 7.75420 +1993 149 9.08721 +1993 150 8.86956 +1993 151 9.20989 +1993 152 5.11612 +1993 153 4.23840 +1993 154 5.80419 +1993 155 3.23207 +1993 156 2.98973 +1993 157 6.51009 +1993 158 5.96651 +1993 159 6.49488 +1993 160 7.07495 +1993 161 5.38398 +1993 162 3.23436 +1993 163 2.76769 +1993 164 5.79715 +1993 165 7.21763 +1993 166 8.12710 +1993 167 8.95605 +1993 168 6.76553 +1993 169 3.75438 +1993 170 1.59494 +1993 171 7.34183 +1993 172 6.79743 +1993 173 9.06751 +1993 174 5.32786 +1993 175 5.32933 +1993 176 7.98932 +1993 177 6.56982 +1993 178 6.32748 +1993 179 4.23349 +1993 180 9.47644 +1993 181 9.33094 +1993 182 9.56336 +1993 183 8.48371 +1993 184 3.87582 +1993 185 4.68206 +1993 186 2.49493 +1993 187 7.90157 +1993 188 9.26519 +1993 189 8.19068 +1993 190 9.37466 +1993 191 9.63282 +1993 192 9.16462 +1993 193 8.33907 +1993 194 8.07638 +1993 195 9.06189 +1993 196 7.27520 +1993 197 5.39892 +1993 198 9.12954 +1993 199 6.50625 +1993 200 4.65395 +1993 201 3.45630 +1993 202 8.19573 +1993 203 8.12154 +1993 204 7.66136 +1993 205 11.40497 +1993 206 11.20522 +1993 207 9.41976 +1993 208 7.05299 +1993 209 5.06841 +1993 210 6.89204 +1993 211 7.03069 +1993 212 10.31763 +1993 213 2.04969 +1993 214 4.71724 +1993 215 6.34853 +1993 216 12.45266 +1993 217 12.93235 +1993 218 5.87533 +1993 219 4.54536 +1993 220 2.73511 +1993 221 10.04184 +1993 222 12.27027 +1993 223 10.57527 +1993 224 13.22922 +1993 225 10.90783 +1993 226 4.49112 +1993 227 13.81380 +1993 228 11.84579 +1993 229 11.64404 +1993 230 8.84364 +1993 231 10.93504 +1993 232 12.32816 +1993 233 10.70159 +1993 234 11.47375 +1993 235 12.28936 +1993 236 14.94487 +1993 237 8.16663 +1993 238 10.36619 +1993 239 4.80449 +1993 240 10.08348 +1993 241 16.09148 +1993 242 16.97363 +1993 243 15.46050 +1993 244 13.28927 +1993 245 9.01791 +1993 246 3.42505 +1993 247 10.91111 +1993 248 12.49525 +1993 249 11.71394 +1993 250 13.47676 +1993 251 13.86366 +1993 252 18.21813 +1993 253 11.63324 +1993 254 10.93366 +1993 255 16.85854 +1993 256 13.00199 +1993 257 14.94176 +1993 258 12.47970 +1993 259 5.56881 +1993 260 14.40573 +1993 261 4.82415 +1993 262 11.20712 +1993 263 14.10048 +1993 264 9.17793 +1993 265 13.18352 +1993 266 17.79736 +1993 267 16.46663 +1993 268 16.82994 +1993 269 19.88652 +1993 270 19.75890 +1993 271 19.55379 +1993 272 19.79554 +1993 273 20.98932 +1993 274 18.02088 +1993 275 21.55697 +1993 276 16.09476 +1993 277 11.94437 +1993 278 11.77425 +1993 279 19.92462 +1993 280 14.80524 +1993 281 17.98364 +1993 282 18.51587 +1993 283 6.79873 +1993 284 22.25457 +1993 285 17.13874 +1993 286 18.50100 +1993 287 18.44044 +1993 288 18.49176 +1993 289 21.04004 +1993 290 15.93778 +1993 291 5.12911 +1993 292 21.50176 +1993 293 15.68177 +1993 294 26.21549 +1993 295 17.55527 +1993 296 22.36196 +1993 297 22.62151 +1993 298 21.42634 +1993 299 15.04423 +1993 300 18.46722 +1993 301 23.26476 +1993 302 11.82116 +1993 303 14.66631 +1993 304 21.40629 +1993 305 24.69804 +1993 306 24.93953 +1993 307 27.30318 +1993 308 11.31330 +1993 309 11.02222 +1993 310 20.25717 +1993 311 14.39934 +1993 312 24.95215 +1993 313 11.18820 +1993 314 15.92577 +1993 315 18.28941 +1993 316 22.44473 +1993 317 25.19571 +1993 318 30.30022 +1993 319 27.31026 +1993 320 24.31685 +1993 321 19.74283 +1993 322 25.73588 +1993 323 12.85934 +1993 324 3.35299 +1993 325 23.86826 +1993 326 11.48187 +1993 327 16.73577 +1993 328 18.05803 +1993 329 25.00131 +1993 330 25.14560 +1993 331 18.12283 +1993 332 26.51953 +1993 333 27.91524 +1993 334 22.32170 +1993 335 18.33399 +1993 336 21.75414 +1993 337 30.49462 +1993 338 15.06488 +1993 339 9.82126 +1993 340 27.37316 +1993 341 19.46860 +1993 342 21.11080 +1993 343 29.11378 +1993 344 24.17213 +1993 345 31.22289 +1993 346 32.42894 +1993 347 33.15885 +1993 348 21.58367 +1993 349 29.52504 +1993 350 19.25329 +1993 351 24.46701 +1993 352 29.37833 +1993 353 25.70720 +1993 354 13.55521 +1993 355 23.85564 +1993 356 24.47194 +1993 357 23.46555 +1993 358 25.09523 +1993 359 9.34407 +1993 360 12.99845 +1993 361 22.62254 +1993 362 21.43921 +1993 363 20.67034 +1993 364 22.53381 +1993 365 26.06628 +1994 1 21.33622 +1994 2 31.86907 +1994 3 29.65075 +1994 4 15.46180 +1994 5 29.14955 +1994 6 23.88502 +1994 7 26.27562 +1994 8 31.35430 +1994 9 25.55807 +1994 10 17.18850 +1994 11 8.55621 +1994 12 10.36532 +1994 13 17.74164 +1994 14 26.38544 +1994 15 32.59241 +1994 16 19.34375 +1994 17 19.98890 +1994 18 27.13504 +1994 19 28.53395 +1994 20 25.69208 +1994 21 19.03228 +1994 22 22.05904 +1994 23 11.44169 +1994 24 16.93319 +1994 25 20.46324 +1994 26 23.45484 +1994 27 26.09021 +1994 28 31.09579 +1994 29 30.20967 +1994 30 29.66855 +1994 31 28.82382 +1994 32 23.51022 +1994 33 18.46256 +1994 34 11.46934 +1994 35 22.22571 +1994 36 24.11588 +1994 37 28.25522 +1994 38 25.61285 +1994 39 27.68800 +1994 40 24.17446 +1994 41 19.13665 +1994 42 17.46999 +1994 43 23.23918 +1994 44 26.75549 +1994 45 27.89217 +1994 46 12.30474 +1994 47 15.63278 +1994 48 12.75152 +1994 49 18.96411 +1994 50 10.07191 +1994 51 11.87749 +1994 52 23.44326 +1994 53 20.95148 +1994 54 10.66513 +1994 55 20.37321 +1994 56 16.87176 +1994 57 22.74592 +1994 58 17.04793 +1994 59 17.28674 +1994 60 20.76054 +1994 61 23.05299 +1994 62 20.92055 +1994 63 22.80891 +1994 64 19.08524 +1994 65 16.74622 +1994 66 23.28584 +1994 67 22.22502 +1994 68 22.89920 +1994 69 23.56482 +1994 70 21.12005 +1994 71 16.01865 +1994 72 9.33103 +1994 73 4.48994 +1994 74 16.12596 +1994 75 16.87254 +1994 76 15.95739 +1994 77 15.44944 +1994 78 17.00974 +1994 79 21.35989 +1994 80 18.68270 +1994 81 19.78145 +1994 82 14.12052 +1994 83 21.13439 +1994 84 18.02555 +1994 85 20.41684 +1994 86 19.08135 +1994 87 17.46956 +1994 88 15.23906 +1994 89 19.31921 +1994 90 11.19675 +1994 91 8.26936 +1994 92 13.05927 +1994 93 17.27922 +1994 94 19.10442 +1994 95 14.19396 +1994 96 12.78115 +1994 97 10.03216 +1994 98 10.65666 +1994 99 15.98633 +1994 100 7.17998 +1994 101 8.59639 +1994 102 8.81660 +1994 103 3.58540 +1994 104 2.86064 +1994 105 15.26100 +1994 106 11.54822 +1994 107 9.11917 +1994 108 9.15468 +1994 109 14.71461 +1994 110 12.09816 +1994 111 10.20401 +1994 112 12.78530 +1994 113 14.08925 +1994 114 7.42465 +1994 115 11.90627 +1994 116 13.10135 +1994 117 13.10342 +1994 118 13.19708 +1994 119 12.69311 +1994 120 13.03983 +1994 121 9.23892 +1994 122 7.44563 +1994 123 6.09847 +1994 124 11.26466 +1994 125 10.10146 +1994 126 10.04746 +1994 127 6.95247 +1994 128 9.79474 +1994 129 9.01584 +1994 130 8.22694 +1994 131 8.43478 +1994 132 11.70297 +1994 133 11.45137 +1994 134 7.76034 +1994 135 8.15316 +1994 136 10.06577 +1994 137 7.11004 +1994 138 6.30893 +1994 139 1.77800 +1994 140 8.13118 +1994 141 7.62105 +1994 142 3.92453 +1994 143 5.19551 +1994 144 8.28396 +1994 145 6.96357 +1994 146 9.37146 +1994 147 6.59273 +1994 148 9.00392 +1994 149 5.19051 +1994 150 10.26855 +1994 151 9.33431 +1994 152 10.16513 +1994 153 8.29804 +1994 154 9.44706 +1994 155 8.42116 +1994 156 7.37103 +1994 157 9.09775 +1994 158 9.21300 +1994 159 3.19696 +1994 160 4.73106 +1994 161 4.52173 +1994 162 4.45868 +1994 163 5.72320 +1994 164 7.90341 +1994 165 9.27901 +1994 166 2.10101 +1994 167 4.64363 +1994 168 6.16728 +1994 169 6.59988 +1994 170 4.79201 +1994 171 2.41501 +1994 172 6.62043 +1994 173 6.76027 +1994 174 6.65753 +1994 175 1.53572 +1994 176 5.76673 +1994 177 7.61710 +1994 178 6.93930 +1994 179 9.79344 +1994 180 9.38244 +1994 181 7.06081 +1994 182 8.22182 +1994 183 9.33889 +1994 184 8.72087 +1994 185 5.47403 +1994 186 5.37638 +1994 187 9.77849 +1994 188 5.95051 +1994 189 10.13714 +1994 190 8.01234 +1994 191 7.39500 +1994 192 5.84860 +1994 193 10.52914 +1994 194 9.99372 +1994 195 6.41113 +1994 196 5.22272 +1994 197 3.36423 +1994 198 4.89340 +1994 199 9.10941 +1994 200 8.68856 +1994 201 8.05895 +1994 202 7.53722 +1994 203 7.43359 +1994 204 3.03098 +1994 205 1.36250 +1994 206 5.42964 +1994 207 6.43622 +1994 208 6.70512 +1994 209 6.06183 +1994 210 8.55217 +1994 211 9.63032 +1994 212 6.54318 +1994 213 2.64791 +1994 214 4.93331 +1994 215 8.31586 +1994 216 9.00132 +1994 217 6.84298 +1994 218 11.21144 +1994 219 8.18984 +1994 220 2.93747 +1994 221 12.01772 +1994 222 11.47617 +1994 223 10.49414 +1994 224 9.65572 +1994 225 6.97340 +1994 226 2.73305 +1994 227 11.67618 +1994 228 11.39538 +1994 229 9.37708 +1994 230 12.60308 +1994 231 8.53038 +1994 232 11.70642 +1994 233 9.60448 +1994 234 9.20678 +1994 235 9.43885 +1994 236 8.75526 +1994 237 12.38026 +1994 238 15.49705 +1994 239 14.65456 +1994 240 11.54624 +1994 241 8.78368 +1994 242 11.74988 +1994 243 12.21195 +1994 244 11.33948 +1994 245 10.67939 +1994 246 11.75377 +1994 247 13.74166 +1994 248 10.12902 +1994 249 4.73812 +1994 250 9.95138 +1994 251 15.45359 +1994 252 16.37012 +1994 253 12.75653 +1994 254 13.62614 +1994 255 13.84188 +1994 256 13.05461 +1994 257 16.36485 +1994 258 4.97896 +1994 259 8.86300 +1994 260 10.97626 +1994 261 14.58164 +1994 262 13.68239 +1994 263 16.13546 +1994 264 6.73677 +1994 265 18.97672 +1994 266 14.80464 +1994 267 11.36938 +1994 268 16.05632 +1994 269 15.14964 +1994 270 5.98431 +1994 271 15.19387 +1994 272 10.20617 +1994 273 15.81457 +1994 274 8.25906 +1994 275 23.73935 +1994 276 4.78438 +1994 277 16.10487 +1994 278 16.64418 +1994 279 10.21758 +1994 280 20.69911 +1994 281 11.05073 +1994 282 16.36269 +1994 283 15.15836 +1994 284 8.54807 +1994 285 17.34212 +1994 286 14.50786 +1994 287 22.84736 +1994 288 25.69614 +1994 289 23.39375 +1994 290 12.25117 +1994 291 14.95498 +1994 292 20.05344 +1994 293 24.44040 +1994 294 19.94060 +1994 295 26.27942 +1994 296 9.93730 +1994 297 16.28052 +1994 298 15.98495 +1994 299 17.77827 +1994 300 22.88866 +1994 301 21.18882 +1994 302 19.86198 +1994 303 10.13498 +1994 304 13.70408 +1994 305 29.54163 +1994 306 29.32520 +1994 307 21.53304 +1994 308 14.33756 +1994 309 16.94114 +1994 310 9.40991 +1994 311 15.31345 +1994 312 23.34882 +1994 313 21.11642 +1994 314 20.35333 +1994 315 25.70270 +1994 316 29.28580 +1994 317 19.68287 +1994 318 18.06071 +1994 319 10.17343 +1994 320 30.56918 +1994 321 24.74297 +1994 322 29.37125 +1994 323 25.79982 +1994 324 19.33088 +1994 325 4.76696 +1994 326 29.24027 +1994 327 23.46062 +1994 328 11.22569 +1994 329 19.97361 +1994 330 25.20012 +1994 331 30.28294 +1994 332 30.10798 +1994 333 20.83476 +1994 334 28.72860 +1994 335 22.28861 +1994 336 16.43293 +1994 337 22.61615 +1994 338 31.81689 +1994 339 33.05906 +1994 340 30.54404 +1994 341 32.68685 +1994 342 28.37652 +1994 343 19.73808 +1994 344 24.16098 +1994 345 30.41150 +1994 346 30.64798 +1994 347 25.44782 +1994 348 31.42532 +1994 349 29.11766 +1994 350 29.92404 +1994 351 29.49903 +1994 352 28.60436 +1994 353 31.33477 +1994 354 32.69868 +1994 355 10.60906 +1994 356 27.70692 +1994 357 25.58140 +1994 358 28.33721 +1994 359 29.20657 +1994 360 16.15766 +1994 361 12.86436 +1994 362 23.99941 +1994 363 19.46445 +1994 364 18.04300 +1994 365 34.00669 +1995 1 33.59897 +1995 2 19.12827 +1995 3 32.86267 +1995 4 29.98037 +1995 5 33.98328 +1995 6 32.61643 +1995 7 20.95589 +1995 8 12.69588 +1995 9 18.53893 +1995 10 19.31075 +1995 11 31.15956 +1995 12 19.24223 +1995 13 29.38317 +1995 14 24.68318 +1995 15 24.02067 +1995 16 20.89256 +1995 17 14.13444 +1995 18 7.14194 +1995 19 22.60984 +1995 20 23.61226 +1995 21 12.74391 +1995 22 21.43956 +1995 23 16.91366 +1995 24 15.96516 +1995 25 18.34704 +1995 26 9.90291 +1995 27 24.42070 +1995 28 31.56425 +1995 29 19.03988 +1995 30 22.82895 +1995 31 19.75735 +1995 32 10.54426 +1995 33 23.38278 +1995 34 19.39447 +1995 35 10.21991 +1995 36 23.23054 +1995 37 19.58766 +1995 38 19.65816 +1995 39 19.36302 +1995 40 16.19957 +1995 41 16.86087 +1995 42 13.39278 +1995 43 21.34210 +1995 44 23.61692 +1995 45 23.38502 +1995 46 29.10721 +1995 47 21.90828 +1995 48 27.27596 +1995 49 25.17100 +1995 50 21.76537 +1995 51 7.31838 +1995 52 12.25524 +1995 53 11.07942 +1995 54 20.32491 +1995 55 22.79292 +1995 56 22.67836 +1995 57 15.42447 +1995 58 21.89704 +1995 59 16.32174 +1995 60 19.16110 +1995 61 11.03242 +1995 62 21.22753 +1995 63 25.35417 +1995 64 25.05479 +1995 65 24.18068 +1995 66 22.05429 +1995 67 20.07634 +1995 68 19.95607 +1995 69 12.63652 +1995 70 3.52870 +1995 71 11.64715 +1995 72 16.37133 +1995 73 14.75505 +1995 74 17.61696 +1995 75 18.43465 +1995 76 15.30714 +1995 77 13.76222 +1995 78 19.64339 +1995 79 12.34699 +1995 80 13.49343 +1995 81 18.18815 +1995 82 10.45328 +1995 83 16.72393 +1995 84 16.92576 +1995 85 12.20158 +1995 86 16.08569 +1995 87 3.77829 +1995 88 2.66904 +1995 89 6.57038 +1995 90 10.07536 +1995 91 13.21497 +1995 92 12.54727 +1995 93 7.00695 +1995 94 14.98271 +1995 95 11.14214 +1995 96 3.19643 +1995 97 1.76897 +1995 98 5.32220 +1995 99 13.74399 +1995 100 12.04088 +1995 101 10.32385 +1995 102 13.97641 +1995 103 15.08596 +1995 104 11.22906 +1995 105 11.97210 +1995 106 8.57339 +1995 107 10.18855 +1995 108 10.24825 +1995 109 7.02479 +1995 110 11.00399 +1995 111 7.27246 +1995 112 2.77043 +1995 113 7.10206 +1995 114 3.72207 +1995 115 3.40448 +1995 116 12.43572 +1995 117 13.46777 +1995 118 14.00950 +1995 119 10.99976 +1995 120 9.20160 +1995 121 10.66470 +1995 122 8.24451 +1995 123 8.66938 +1995 124 5.07757 +1995 125 5.45136 +1995 126 10.89573 +1995 127 10.26890 +1995 128 8.37544 +1995 129 13.01832 +1995 130 11.79852 +1995 131 7.03677 +1995 132 7.61072 +1995 133 11.31443 +1995 134 7.34335 +1995 135 5.60066 +1995 136 9.09135 +1995 137 10.42165 +1995 138 8.48962 +1995 139 10.31625 +1995 140 3.09590 +1995 141 3.01032 +1995 142 9.92209 +1995 143 11.20643 +1995 144 10.30743 +1995 145 8.24002 +1995 146 5.10923 +1995 147 3.55527 +1995 148 7.44568 +1995 149 6.52348 +1995 150 5.76488 +1995 151 7.82382 +1995 152 4.82541 +1995 153 9.27219 +1995 154 8.75975 +1995 155 9.83085 +1995 156 7.81787 +1995 157 7.66049 +1995 158 9.76925 +1995 159 5.93786 +1995 160 7.60702 +1995 161 5.19775 +1995 162 3.49052 +1995 163 5.62976 +1995 164 4.43988 +1995 165 6.09413 +1995 166 6.71318 +1995 167 5.77556 +1995 168 1.33430 +1995 169 5.63627 +1995 170 9.19244 +1995 171 7.99762 +1995 172 5.50078 +1995 173 6.40874 +1995 174 8.69538 +1995 175 7.57466 +1995 176 8.62048 +1995 177 5.72352 +1995 178 7.38555 +1995 179 2.00032 +1995 180 7.93210 +1995 181 9.52206 +1995 182 5.01906 +1995 183 7.26943 +1995 184 8.95450 +1995 185 2.01751 +1995 186 7.66505 +1995 187 7.68719 +1995 188 6.08153 +1995 189 6.54517 +1995 190 6.35561 +1995 191 7.43083 +1995 192 3.01726 +1995 193 5.02508 +1995 194 6.20962 +1995 195 8.13064 +1995 196 4.04111 +1995 197 9.82575 +1995 198 10.86506 +1995 199 2.21452 +1995 200 5.55658 +1995 201 9.86152 +1995 202 7.40851 +1995 203 10.19071 +1995 204 4.49996 +1995 205 9.46218 +1995 206 7.30752 +1995 207 10.07925 +1995 208 7.88384 +1995 209 10.27806 +1995 210 7.54067 +1995 211 8.93212 +1995 212 9.99190 +1995 213 7.52700 +1995 214 4.32604 +1995 215 7.79863 +1995 216 5.04672 +1995 217 11.64145 +1995 218 8.87613 +1995 219 4.00059 +1995 220 3.16610 +1995 221 9.03044 +1995 222 11.13912 +1995 223 10.77892 +1995 224 8.79457 +1995 225 11.23364 +1995 226 13.08468 +1995 227 13.07742 +1995 228 9.73305 +1995 229 6.79215 +1995 230 12.82764 +1995 231 11.05108 +1995 232 7.69049 +1995 233 9.45501 +1995 234 15.26800 +1995 235 4.73157 +1995 236 15.94495 +1995 237 13.70978 +1995 238 15.81517 +1995 239 3.82602 +1995 240 13.20123 +1995 241 14.91376 +1995 242 11.38968 +1995 243 9.53078 +1995 244 6.82938 +1995 245 17.76220 +1995 246 15.79496 +1995 247 6.54149 +1995 248 2.12593 +1995 249 14.22749 +1995 250 13.98324 +1995 251 14.39243 +1995 252 16.94857 +1995 253 15.83418 +1995 254 18.38696 +1995 255 17.75304 +1995 256 17.52434 +1995 257 17.55570 +1995 258 13.05297 +1995 259 12.76646 +1995 260 7.86467 +1995 261 4.82534 +1995 262 16.81707 +1995 263 12.02412 +1995 264 12.79956 +1995 265 20.22745 +1995 266 19.95710 +1995 267 20.31696 +1995 268 10.61510 +1995 269 11.35236 +1995 270 10.13230 +1995 271 9.22674 +1995 272 14.50457 +1995 273 13.50821 +1995 274 13.75505 +1995 275 17.29192 +1995 276 17.61506 +1995 277 8.15655 +1995 278 15.28356 +1995 279 14.42353 +1995 280 10.02914 +1995 281 5.22282 +1995 282 18.34618 +1995 283 19.52631 +1995 284 13.86072 +1995 285 22.36334 +1995 286 8.59904 +1995 287 6.66326 +1995 288 18.60054 +1995 289 21.21077 +1995 290 26.31649 +1995 291 16.00871 +1995 292 26.93943 +1995 293 24.26388 +1995 294 7.51301 +1995 295 19.68183 +1995 296 13.95351 +1995 297 15.92628 +1995 298 15.10445 +1995 299 21.13344 +1995 300 9.86852 +1995 301 18.82691 +1995 302 19.05630 +1995 303 17.05311 +1995 304 17.82631 +1995 305 23.65044 +1995 306 18.81636 +1995 307 15.46448 +1995 308 20.48371 +1995 309 16.64660 +1995 310 28.25539 +1995 311 28.75772 +1995 312 14.81648 +1995 313 19.85947 +1995 314 10.15451 +1995 315 27.13859 +1995 316 23.37146 +1995 317 13.93917 +1995 318 23.11692 +1995 319 25.99595 +1995 320 20.14718 +1995 321 27.44505 +1995 322 23.52707 +1995 323 8.63280 +1995 324 18.77800 +1995 325 28.03758 +1995 326 21.68856 +1995 327 7.51656 +1995 328 16.06798 +1995 329 18.93249 +1995 330 26.51383 +1995 331 18.83658 +1995 332 30.06634 +1995 333 28.88525 +1995 334 31.20794 +1995 335 31.30445 +1995 336 27.91964 +1995 337 27.55719 +1995 338 29.05157 +1995 339 30.42446 +1995 340 24.08193 +1995 341 26.69458 +1995 342 29.20251 +1995 343 21.75958 +1995 344 20.12844 +1995 345 20.92271 +1995 346 23.92356 +1995 347 16.76886 +1995 348 17.81767 +1995 349 20.84279 +1995 350 7.44225 +1995 351 29.11896 +1995 352 32.52165 +1995 353 22.69538 +1995 354 18.54256 +1995 355 17.13813 +1995 356 5.98943 +1995 357 25.98238 +1995 358 26.10066 +1995 359 25.15130 +1995 360 25.87455 +1995 361 22.47756 +1995 362 20.32517 +1995 363 23.40230 +1995 364 32.88349 +1995 365 26.30802 +1996 1 23.76104 +1996 2 18.33909 +1996 3 26.15760 +1996 4 22.13041 +1996 5 21.85479 +1996 6 22.19443 +1996 7 23.11943 +1996 8 23.91535 +1996 9 22.94084 +1996 10 17.78630 +1996 11 22.09948 +1996 12 8.14256 +1996 13 17.67580 +1996 14 22.40404 +1996 15 24.10223 +1996 16 25.71834 +1996 17 24.97245 +1996 18 24.60603 +1996 19 25.83196 +1996 20 28.92283 +1996 21 23.44723 +1996 22 22.62444 +1996 23 21.87181 +1996 24 26.87818 +1996 25 17.63243 +1996 26 22.28118 +1996 27 17.68513 +1996 28 23.19633 +1996 29 27.48159 +1996 30 25.87576 +1996 31 25.69216 +1996 32 24.31745 +1996 33 13.24071 +1996 34 25.67220 +1996 35 26.90228 +1996 36 29.02141 +1996 37 12.46441 +1996 38 4.24793 +1996 39 24.75325 +1996 40 22.71525 +1996 41 16.11930 +1996 42 22.52362 +1996 43 16.43648 +1996 44 21.52500 +1996 45 22.94343 +1996 46 21.58091 +1996 47 21.67992 +1996 48 15.92093 +1996 49 9.46253 +1996 50 19.55750 +1996 51 12.48731 +1996 52 13.87549 +1996 53 20.04013 +1996 54 23.93747 +1996 55 22.36784 +1996 56 24.15381 +1996 57 14.49049 +1996 58 24.51220 +1996 59 22.42374 +1996 60 24.07778 +1996 61 10.66340 +1996 62 19.00204 +1996 63 23.04262 +1996 64 21.25518 +1996 65 23.23426 +1996 66 16.83806 +1996 67 20.57892 +1996 68 22.93419 +1996 69 18.40346 +1996 70 23.91051 +1996 71 23.55843 +1996 72 20.53002 +1996 73 10.69019 +1996 74 16.85223 +1996 75 15.35734 +1996 76 13.12399 +1996 77 13.23156 +1996 78 11.82228 +1996 79 14.74891 +1996 80 21.15780 +1996 81 12.50649 +1996 82 13.79350 +1996 83 21.18347 +1996 84 18.20949 +1996 85 14.53049 +1996 86 15.37436 +1996 87 13.22447 +1996 88 14.71306 +1996 89 13.48116 +1996 90 13.88776 +1996 91 14.98029 +1996 92 11.22448 +1996 93 12.15821 +1996 94 12.76154 +1996 95 13.41662 +1996 96 13.95870 +1996 97 9.18518 +1996 98 17.42429 +1996 99 7.52037 +1996 100 2.63686 +1996 101 7.08083 +1996 102 7.45770 +1996 103 9.14026 +1996 104 7.21591 +1996 105 11.03613 +1996 106 8.17452 +1996 107 10.88191 +1996 108 8.93091 +1996 109 2.28805 +1996 110 2.98241 +1996 111 3.15148 +1996 112 12.05064 +1996 113 14.81181 +1996 114 12.20374 +1996 115 14.49282 +1996 116 12.71246 +1996 117 12.00424 +1996 118 7.35897 +1996 119 7.31227 +1996 120 7.63802 +1996 121 11.42770 +1996 122 12.18681 +1996 123 13.21626 +1996 124 13.72568 +1996 125 12.77873 +1996 126 13.12321 +1996 127 9.72899 +1996 128 7.00147 +1996 129 7.17381 +1996 130 12.21869 +1996 131 11.54045 +1996 132 9.62833 +1996 133 9.89798 +1996 134 6.65253 +1996 135 4.60863 +1996 136 10.66686 +1996 137 11.54313 +1996 138 11.64309 +1996 139 9.07986 +1996 140 5.42583 +1996 141 6.25306 +1996 142 3.92413 +1996 143 8.49827 +1996 144 9.32792 +1996 145 5.90814 +1996 146 10.54417 +1996 147 9.64907 +1996 148 10.66418 +1996 149 5.05286 +1996 150 4.84288 +1996 151 9.30277 +1996 152 8.20625 +1996 153 9.94360 +1996 154 10.27434 +1996 155 9.60915 +1996 156 9.34200 +1996 157 3.94968 +1996 158 6.11966 +1996 159 6.81127 +1996 160 5.17802 +1996 161 6.24069 +1996 162 7.39498 +1996 163 8.60573 +1996 164 9.40274 +1996 165 9.67006 +1996 166 8.39772 +1996 167 5.15578 +1996 168 9.57131 +1996 169 9.56595 +1996 170 8.88097 +1996 171 7.31895 +1996 172 6.79484 +1996 173 2.98928 +1996 174 2.71951 +1996 175 5.81868 +1996 176 6.26276 +1996 177 5.90019 +1996 178 3.56220 +1996 179 6.47593 +1996 180 7.73117 +1996 181 5.33059 +1996 182 8.27170 +1996 183 5.91387 +1996 184 9.40775 +1996 185 8.62188 +1996 186 8.25894 +1996 187 8.24514 +1996 188 7.84246 +1996 189 9.60716 +1996 190 8.19382 +1996 191 1.63157 +1996 192 1.40071 +1996 193 4.28770 +1996 194 7.40373 +1996 195 2.81091 +1996 196 4.10595 +1996 197 5.69313 +1996 198 4.27317 +1996 199 6.27681 +1996 200 4.55297 +1996 201 7.32040 +1996 202 2.45348 +1996 203 7.14048 +1996 204 8.48189 +1996 205 8.20725 +1996 206 4.42824 +1996 207 7.78949 +1996 208 10.39487 +1996 209 11.97297 +1996 210 9.63930 +1996 211 9.19745 +1996 212 12.33118 +1996 213 4.39433 +1996 214 4.89734 +1996 215 8.91078 +1996 216 9.98827 +1996 217 7.31078 +1996 218 5.46030 +1996 219 11.98705 +1996 220 8.81168 +1996 221 12.46190 +1996 222 10.83862 +1996 223 9.00202 +1996 224 10.02672 +1996 225 10.68647 +1996 226 12.65881 +1996 227 3.48379 +1996 228 10.98818 +1996 229 11.89918 +1996 230 4.60370 +1996 231 12.85805 +1996 232 1.35667 +1996 233 10.18837 +1996 234 13.16555 +1996 235 16.07524 +1996 236 9.56915 +1996 237 8.15875 +1996 238 7.03570 +1996 239 15.48798 +1996 240 11.42510 +1996 241 9.04807 +1996 242 15.29444 +1996 243 14.92759 +1996 244 14.29955 +1996 245 3.46327 +1996 246 6.69414 +1996 247 2.66560 +1996 248 7.82978 +1996 249 12.00969 +1996 250 12.66693 +1996 251 11.73131 +1996 252 8.89272 +1996 253 7.84426 +1996 254 5.16937 +1996 255 3.57439 +1996 256 13.82901 +1996 257 10.07778 +1996 258 14.41852 +1996 259 13.85899 +1996 260 15.00310 +1996 261 17.47837 +1996 262 18.41849 +1996 263 19.96307 +1996 264 18.39136 +1996 265 19.61522 +1996 266 18.30462 +1996 267 19.81100 +1996 268 18.04136 +1996 269 12.03405 +1996 270 12.76111 +1996 271 12.87403 +1996 272 17.57609 +1996 273 20.69868 +1996 274 17.09735 +1996 275 8.40262 +1996 276 16.24467 +1996 277 17.92869 +1996 278 20.11876 +1996 279 22.27884 +1996 280 20.00298 +1996 281 4.45818 +1996 282 20.82732 +1996 283 19.95434 +1996 284 13.82115 +1996 285 19.13933 +1996 286 8.69435 +1996 287 18.67743 +1996 288 15.57628 +1996 289 18.61108 +1996 290 21.94024 +1996 291 23.20350 +1996 292 20.97844 +1996 293 23.09299 +1996 294 16.99298 +1996 295 10.57856 +1996 296 20.97187 +1996 297 22.35315 +1996 298 26.14723 +1996 299 9.98983 +1996 300 8.50825 +1996 301 10.56447 +1996 302 4.30569 +1996 303 21.21189 +1996 304 24.74608 +1996 305 23.56448 +1996 306 23.56741 +1996 307 26.47538 +1996 308 24.91301 +1996 309 24.16720 +1996 310 26.63531 +1996 311 21.02414 +1996 312 21.08488 +1996 313 22.06138 +1996 314 21.35290 +1996 315 12.99629 +1996 316 22.49778 +1996 317 14.15552 +1996 318 25.47400 +1996 319 17.85715 +1996 320 31.55492 +1996 321 23.31132 +1996 322 6.33344 +1996 323 18.50930 +1996 324 25.32108 +1996 325 22.27910 +1996 326 20.11988 +1996 327 28.56324 +1996 328 21.00522 +1996 329 18.52917 +1996 330 31.90018 +1996 331 15.28546 +1996 332 30.32139 +1996 333 23.75171 +1996 334 22.25966 +1996 335 6.47686 +1996 336 32.18772 +1996 337 14.15699 +1996 338 30.06253 +1996 339 23.57865 +1996 340 29.41246 +1996 341 23.70790 +1996 342 25.89425 +1996 343 29.03161 +1996 344 33.47395 +1996 345 10.58089 +1996 346 33.17414 +1996 347 9.11978 +1996 348 6.99626 +1996 349 23.54383 +1996 350 28.42387 +1996 351 26.65431 +1996 352 22.66358 +1996 353 14.35493 +1996 354 8.80813 +1996 355 24.50123 +1996 356 33.07755 +1996 357 30.14677 +1996 358 29.86995 +1996 359 31.91892 +1996 360 30.11187 +1996 361 20.77497 +1996 362 24.63160 +1996 363 6.13321 +1996 364 2.56141 +1996 365 19.66308 +1996 366 23.11580 +1997 1 19.89429 +1997 2 23.43401 +1997 3 24.24851 +1997 4 23.47877 +1997 5 22.85297 +1997 6 25.84561 +1997 7 20.45788 +1997 8 17.63545 +1997 9 6.60131 +1997 10 10.55238 +1997 11 22.64060 +1997 12 21.84667 +1997 13 26.86936 +1997 14 25.03630 +1997 15 21.68217 +1997 16 31.71312 +1997 17 21.27133 +1997 18 28.86961 +1997 19 30.97215 +1997 20 27.43502 +1997 21 29.36477 +1997 22 20.62912 +1997 23 15.48556 +1997 24 14.92456 +1997 25 20.64347 +1997 26 32.29312 +1997 27 30.34532 +1997 28 28.66087 +1997 29 31.82008 +1997 30 29.53342 +1997 31 18.05751 +1997 32 28.51641 +1997 33 18.17424 +1997 34 11.34752 +1997 35 21.23600 +1997 36 22.42382 +1997 37 23.38900 +1997 38 24.09998 +1997 39 24.84017 +1997 40 24.61329 +1997 41 18.52580 +1997 42 10.09040 +1997 43 27.27216 +1997 44 27.82797 +1997 45 28.49049 +1997 46 24.18267 +1997 47 26.32643 +1997 48 10.94653 +1997 49 5.99327 +1997 50 9.79560 +1997 51 23.47626 +1997 52 26.93771 +1997 53 14.10713 +1997 54 19.37131 +1997 55 12.18007 +1997 56 26.51124 +1997 57 22.27185 +1997 58 19.75156 +1997 59 7.26529 +1997 60 9.18156 +1997 61 12.09237 +1997 62 12.03872 +1997 63 11.00408 +1997 64 7.12435 +1997 65 9.40179 +1997 66 15.01684 +1997 67 18.63726 +1997 68 22.39177 +1997 69 2.11535 +1997 70 11.33689 +1997 71 16.55804 +1997 72 23.87733 +1997 73 17.82683 +1997 74 17.28959 +1997 75 20.14442 +1997 76 17.27145 +1997 77 18.29287 +1997 78 17.77697 +1997 79 13.95671 +1997 80 10.20531 +1997 81 11.13238 +1997 82 15.44927 +1997 83 15.03343 +1997 84 16.55804 +1997 85 16.73698 +1997 86 18.80919 +1997 87 19.44959 +1997 88 19.12576 +1997 89 16.14565 +1997 90 19.82820 +1997 91 17.04707 +1997 92 16.19145 +1997 93 16.96265 +1997 94 16.40295 +1997 95 12.85744 +1997 96 11.00840 +1997 97 9.06448 +1997 98 5.40136 +1997 99 13.19579 +1997 100 13.85484 +1997 101 16.58595 +1997 102 15.00336 +1997 103 5.63068 +1997 104 14.76023 +1997 105 10.55678 +1997 106 12.40523 +1997 107 10.23996 +1997 108 5.43789 +1997 109 15.09175 +1997 110 15.81751 +1997 111 15.31561 +1997 112 4.33238 +1997 113 14.36668 +1997 114 8.57081 +1997 115 11.99474 +1997 116 10.72716 +1997 117 11.05445 +1997 118 13.07076 +1997 119 12.45741 +1997 120 11.73614 +1997 121 12.53768 +1997 122 11.51980 +1997 123 12.32297 +1997 124 12.00131 +1997 125 11.95992 +1997 126 12.15864 +1997 127 9.26899 +1997 128 9.01066 +1997 129 11.10171 +1997 130 6.18646 +1997 131 3.00103 +1997 132 10.62590 +1997 133 7.38586 +1997 134 9.06042 +1997 135 8.74670 +1997 136 9.58401 +1997 137 6.91072 +1997 138 7.13277 +1997 139 6.08953 +1997 140 6.57282 +1997 141 6.04130 +1997 142 1.53596 +1997 143 1.96176 +1997 144 7.64447 +1997 145 4.93285 +1997 146 7.19995 +1997 147 5.53663 +1997 148 9.54806 +1997 149 4.23546 +1997 150 2.48536 +1997 151 2.07370 +1997 152 0.79990 +1997 153 6.49675 +1997 154 9.20359 +1997 155 9.72363 +1997 156 8.14761 +1997 157 9.77210 +1997 158 7.69143 +1997 159 6.79177 +1997 160 3.26363 +1997 161 6.02645 +1997 162 8.15750 +1997 163 8.02866 +1997 164 9.60215 +1997 165 7.87786 +1997 166 7.07346 +1997 167 3.41270 +1997 168 4.45673 +1997 169 3.74491 +1997 170 9.54660 +1997 171 7.39249 +1997 172 6.51417 +1997 173 8.51952 +1997 174 7.46922 +1997 175 8.46915 +1997 176 8.60834 +1997 177 9.76095 +1997 178 9.64250 +1997 179 7.76628 +1997 180 1.96507 +1997 181 1.85307 +1997 182 5.28095 +1997 183 4.72050 +1997 184 4.41355 +1997 185 9.81556 +1997 186 9.99233 +1997 187 8.27565 +1997 188 8.14693 +1997 189 7.01239 +1997 190 2.26308 +1997 191 9.50789 +1997 192 10.38424 +1997 193 7.52446 +1997 194 6.46669 +1997 195 10.77322 +1997 196 8.67655 +1997 197 9.96564 +1997 198 4.85388 +1997 199 9.60898 +1997 200 10.05644 +1997 201 7.96385 +1997 202 7.71165 +1997 203 7.47009 +1997 204 7.91920 +1997 205 10.59782 +1997 206 10.43954 +1997 207 7.85625 +1997 208 9.80960 +1997 209 9.24264 +1997 210 5.30673 +1997 211 10.42217 +1997 212 6.76214 +1997 213 11.31106 +1997 214 6.82268 +1997 215 11.34190 +1997 216 11.58278 +1997 217 11.57112 +1997 218 10.89348 +1997 219 12.87490 +1997 220 10.84994 +1997 221 7.05245 +1997 222 5.10991 +1997 223 7.92126 +1997 224 4.77912 +1997 225 9.05481 +1997 226 12.42544 +1997 227 10.35314 +1997 228 11.41957 +1997 229 10.13550 +1997 230 3.31710 +1997 231 10.91889 +1997 232 8.33987 +1997 233 7.66740 +1997 234 13.78253 +1997 235 13.34966 +1997 236 11.91646 +1997 237 6.77373 +1997 238 13.30517 +1997 239 15.21685 +1997 240 13.38025 +1997 241 12.53578 +1997 242 14.25920 +1997 243 10.94783 +1997 244 11.76690 +1997 245 10.43418 +1997 246 2.77931 +1997 247 7.85059 +1997 248 18.46644 +1997 249 10.59281 +1997 250 5.62956 +1997 251 12.74236 +1997 252 7.57939 +1997 253 12.14093 +1997 254 11.80302 +1997 255 14.93035 +1997 256 19.73393 +1997 257 18.25217 +1997 258 9.68302 +1997 259 11.56481 +1997 260 12.82012 +1997 261 15.74329 +1997 262 13.52713 +1997 263 14.84222 +1997 264 10.64984 +1997 265 2.82897 +1997 266 4.42112 +1997 267 6.08342 +1997 268 15.34257 +1997 269 5.11459 +1997 270 12.97149 +1997 271 15.48945 +1997 272 15.69750 +1997 273 18.49651 +1997 274 14.46846 +1997 275 12.77441 +1997 276 12.47823 +1997 277 16.22851 +1997 278 16.72695 +1997 279 19.74205 +1997 280 20.26884 +1997 281 20.37761 +1997 282 9.43298 +1997 283 13.35018 +1997 284 16.62120 +1997 285 16.08172 +1997 286 14.45230 +1997 287 17.84877 +1997 288 20.79959 +1997 289 23.40628 +1997 290 12.16063 +1997 291 6.50307 +1997 292 24.05151 +1997 293 17.33547 +1997 294 21.52086 +1997 295 20.27670 +1997 296 23.96892 +1997 297 23.98075 +1997 298 19.21916 +1997 299 26.74244 +1997 300 19.46160 +1997 301 19.81454 +1997 302 21.27842 +1997 303 25.78746 +1997 304 28.26576 +1997 305 24.40230 +1997 306 18.67363 +1997 307 29.49134 +1997 308 23.55376 +1997 309 9.94810 +1997 310 19.55172 +1997 311 15.61818 +1997 312 24.70081 +1997 313 26.29014 +1997 314 27.85493 +1997 315 12.18707 +1997 316 12.91041 +1997 317 21.28473 +1997 318 21.23617 +1997 319 3.63788 +1997 320 9.69011 +1997 321 28.81164 +1997 322 25.86444 +1997 323 21.17655 +1997 324 26.10533 +1997 325 28.66087 +1997 326 30.46611 +1997 327 31.71131 +1997 328 22.33112 +1997 329 28.99100 +1997 330 30.61532 +1997 331 26.28815 +1997 332 13.38371 +1997 333 18.00040 +1997 334 10.42917 +1997 335 6.16556 +1997 336 14.95282 +1997 337 20.71587 +1997 338 30.67649 +1997 339 24.17204 +1997 340 32.66369 +1997 341 14.37756 +1997 342 14.20606 +1997 343 20.40371 +1997 344 26.62321 +1997 345 15.49506 +1997 346 33.13725 +1997 347 33.79977 +1997 348 29.64375 +1997 349 9.81348 +1997 350 33.25545 +1997 351 32.93749 +1997 352 23.80562 +1997 353 25.79066 +1997 354 26.06446 +1997 355 20.20982 +1997 356 16.92464 +1997 357 23.07381 +1997 358 10.81642 +1997 359 32.88954 +1997 360 33.97507 +1997 361 21.54669 +1997 362 30.17632 +1997 363 28.66311 +1997 364 24.20824 +1997 365 22.96719 +1998 1 29.59295 +1998 2 33.53486 +1998 3 32.92644 +1998 4 26.53966 +1998 5 24.63903 +1998 6 23.56854 +1998 7 32.90043 +1998 8 33.91520 +1998 9 27.46103 +1998 10 25.34293 +1998 11 22.68052 +1998 12 31.60503 +1998 13 32.23575 +1998 14 30.97699 +1998 15 16.04975 +1998 16 27.23561 +1998 17 32.25753 +1998 18 29.08483 +1998 19 22.96011 +1998 20 6.21132 +1998 21 20.18477 +1998 22 8.98672 +1998 23 13.14922 +1998 24 17.06564 +1998 25 20.55128 +1998 26 26.14766 +1998 27 20.03676 +1998 28 15.51243 +1998 29 16.20415 +1998 30 20.27704 +1998 31 29.10851 +1998 32 26.13954 +1998 33 22.65589 +1998 34 21.33423 +1998 35 27.64359 +1998 36 21.76528 +1998 37 22.19443 +1998 38 28.24364 +1998 39 20.46496 +1998 40 11.29585 +1998 41 10.44602 +1998 42 25.01582 +1998 43 17.32648 +1998 44 19.06070 +1998 45 16.58543 +1998 46 20.63776 +1998 47 19.96410 +1998 48 10.47876 +1998 49 14.28719 +1998 50 18.31300 +1998 51 11.42165 +1998 52 26.91291 +1998 53 13.11405 +1998 54 16.65325 +1998 55 20.37666 +1998 56 20.34202 +1998 57 25.82764 +1998 58 21.12679 +1998 59 21.70057 +1998 60 24.70064 +1998 61 24.13472 +1998 62 18.45487 +1998 63 18.86354 +1998 64 14.65379 +1998 65 13.60705 +1998 66 18.02676 +1998 67 18.63665 +1998 68 16.73447 +1998 69 9.98456 +1998 70 19.59898 +1998 71 13.08390 +1998 72 15.66510 +1998 73 13.09141 +1998 74 18.08775 +1998 75 12.97892 +1998 76 6.83217 +1998 77 20.25363 +1998 78 20.44570 +1998 79 20.43144 +1998 80 20.51819 +1998 81 10.60240 +1998 82 14.71867 +1998 83 14.00268 +1998 84 15.91272 +1998 85 12.51642 +1998 86 12.01141 +1998 87 6.65514 +1998 88 13.84266 +1998 89 15.34205 +1998 90 13.18568 +1998 91 6.57212 +1998 92 11.76561 +1998 93 12.04718 +1998 94 19.33606 +1998 95 15.77768 +1998 96 16.10988 +1998 97 12.77510 +1998 98 3.00318 +1998 99 13.33740 +1998 100 13.61811 +1998 101 12.70572 +1998 102 16.31327 +1998 103 14.07205 +1998 104 7.43618 +1998 105 15.05676 +1998 106 11.13420 +1998 107 7.74879 +1998 108 11.99508 +1998 109 10.97029 +1998 110 9.53545 +1998 111 10.69839 +1998 112 3.01459 +1998 113 9.37267 +1998 114 9.35634 +1998 115 6.83965 +1998 116 8.16941 +1998 117 7.35598 +1998 118 9.18069 +1998 119 9.24039 +1998 120 9.32066 +1998 121 8.64907 +1998 122 11.50883 +1998 123 7.10998 +1998 124 10.82989 +1998 125 12.86513 +1998 126 1.83249 +1998 127 8.93765 +1998 128 10.10284 +1998 129 3.80475 +1998 130 6.48257 +1998 131 12.61734 +1998 132 4.20778 +1998 133 11.13610 +1998 134 12.11017 +1998 135 9.26338 +1998 136 8.67266 +1998 137 5.20396 +1998 138 10.94187 +1998 139 7.14709 +1998 140 6.23378 +1998 141 4.73551 +1998 142 2.81718 +1998 143 7.05870 +1998 144 5.29092 +1998 145 6.97522 +1998 146 7.06239 +1998 147 8.97990 +1998 148 7.08064 +1998 149 7.08351 +1998 150 7.32328 +1998 151 10.24929 +1998 152 5.59932 +1998 153 9.43350 +1998 154 9.41250 +1998 155 10.11329 +1998 156 6.66741 +1998 157 2.84010 +1998 158 2.21759 +1998 159 2.17810 +1998 160 4.86868 +1998 161 8.72977 +1998 162 5.80814 +1998 163 1.13294 +1998 164 1.46747 +1998 165 8.75120 +1998 166 8.70981 +1998 167 1.95634 +1998 168 2.23725 +1998 169 7.14852 +1998 170 9.42918 +1998 171 7.66049 +1998 172 6.42686 +1998 173 6.82812 +1998 174 6.18820 +1998 175 3.67160 +1998 176 3.53641 +1998 177 6.61602 +1998 178 7.78775 +1998 179 8.49372 +1998 180 4.92731 +1998 181 3.67158 +1998 182 3.66796 +1998 183 9.43341 +1998 184 6.69202 +1998 185 9.81478 +1998 186 8.41207 +1998 187 6.09002 +1998 188 6.56286 +1998 189 0.59517 +1998 190 3.41203 +1998 191 2.03584 +1998 192 8.11107 +1998 193 8.33329 +1998 194 2.12616 +1998 195 8.28694 +1998 196 4.44710 +1998 197 5.23980 +1998 198 10.45198 +1998 199 7.45082 +1998 200 8.53371 +1998 201 6.25380 +1998 202 4.43445 +1998 203 5.51184 +1998 204 2.37439 +1998 205 3.86618 +1998 206 3.73372 +1998 207 7.43635 +1998 208 10.97574 +1998 209 5.34587 +1998 210 8.14148 +1998 211 6.78984 +1998 212 4.52650 +1998 213 8.89816 +1998 214 12.00286 +1998 215 11.71601 +1998 216 11.45802 +1998 217 8.42095 +1998 218 4.87134 +1998 219 10.60776 +1998 220 7.29060 +1998 221 3.07836 +1998 222 5.50565 +1998 223 9.66626 +1998 224 9.10233 +1998 225 10.59696 +1998 226 10.76553 +1998 227 12.00839 +1998 228 11.54390 +1998 229 10.74704 +1998 230 2.93181 +1998 231 12.92855 +1998 232 13.55011 +1998 233 15.52046 +1998 234 11.56844 +1998 235 9.98948 +1998 236 9.50322 +1998 237 7.92542 +1998 238 2.94935 +1998 239 14.65439 +1998 240 15.90771 +1998 241 6.58740 +1998 242 17.02884 +1998 243 14.23293 +1998 244 9.91431 +1998 245 11.98860 +1998 246 13.72127 +1998 247 13.59832 +1998 248 7.18039 +1998 249 14.32279 +1998 250 15.56539 +1998 251 15.19275 +1998 252 13.22672 +1998 253 14.57145 +1998 254 18.79451 +1998 255 19.00359 +1998 256 14.09219 +1998 257 8.36465 +1998 258 2.92120 +1998 259 15.29764 +1998 260 14.89830 +1998 261 14.62147 +1998 262 12.54398 +1998 263 15.96516 +1998 264 19.97464 +1998 265 20.01180 +1998 266 21.76528 +1998 267 15.74631 +1998 268 13.46328 +1998 269 5.75650 +1998 270 13.57646 +1998 271 16.93405 +1998 272 5.28800 +1998 273 19.16698 +1998 274 15.74191 +1998 275 20.19548 +1998 276 9.30666 +1998 277 20.85877 +1998 278 24.32557 +1998 279 24.77226 +1998 280 18.81835 +1998 281 12.20538 +1998 282 11.87292 +1998 283 8.91276 +1998 284 12.31131 +1998 285 16.39138 +1998 286 16.72644 +1998 287 16.52668 +1998 288 15.24338 +1998 289 21.13845 +1998 290 20.86353 +1998 291 16.29755 +1998 292 12.50372 +1998 293 23.67446 +1998 294 20.92314 +1998 295 23.54988 +1998 296 24.69614 +1998 297 20.09560 +1998 298 15.24640 +1998 299 15.06954 +1998 300 5.62148 +1998 301 16.75970 +1998 302 14.70416 +1998 303 19.50281 +1998 304 19.65894 +1998 305 19.50886 +1998 306 4.60311 +1998 307 19.09604 +1998 308 24.51764 +1998 309 17.78069 +1998 310 28.85795 +1998 311 22.21811 +1998 312 22.86550 +1998 313 26.49240 +1998 314 30.31888 +1998 315 26.30431 +1998 316 25.30060 +1998 317 31.73636 +1998 318 25.94454 +1998 319 27.90279 +1998 320 26.36185 +1998 321 28.95497 +1998 322 22.46625 +1998 323 24.79680 +1998 324 13.40133 +1998 325 17.83227 +1998 326 13.34180 +1998 327 20.66161 +1998 328 17.46999 +1998 329 30.39146 +1998 330 8.71629 +1998 331 8.24949 +1998 332 6.63493 +1998 333 17.22583 +1998 334 18.93586 +1998 335 23.80372 +1998 336 13.99922 +1998 337 5.37595 +1998 338 22.45268 +1998 339 23.24687 +1998 340 23.34709 +1998 341 23.99509 +1998 342 31.98485 +1998 343 22.28705 +1998 344 24.01816 +1998 345 32.05025 +1998 346 31.86112 +1998 347 19.05958 +1998 348 31.84393 +1998 349 32.36112 +1998 350 29.81215 +1998 351 8.81081 +1998 352 23.31876 +1998 353 20.39351 +1998 354 19.17052 +1998 355 23.54331 +1998 356 31.67346 +1998 357 32.20785 +1998 358 29.59243 +1998 359 31.09579 +1998 360 23.08020 +1998 361 20.32707 +1998 362 23.79568 +1998 363 18.72409 +1998 364 29.51631 +1998 365 29.73188 +1999 1 25.64101 +1999 2 29.06971 +1999 3 30.55994 +1999 4 28.49316 +1999 5 32.04861 +1999 6 31.04447 +1999 7 32.07125 +1999 8 28.65940 +1999 9 21.77997 +1999 10 26.71410 +1999 11 19.76685 +1999 12 12.85321 +1999 13 10.41293 +1999 14 10.09835 +1999 15 9.76432 +1999 16 16.47441 +1999 17 15.16458 +1999 18 24.00978 +1999 19 22.37276 +1999 20 18.48649 +1999 21 16.39915 +1999 22 17.88834 +1999 23 24.75153 +1999 24 31.40217 +1999 25 32.40164 +1999 26 30.56573 +1999 27 29.59157 +1999 28 23.22181 +1999 29 13.24979 +1999 30 8.63440 +1999 31 29.28070 +1999 32 27.88690 +1999 33 24.17826 +1999 34 29.43251 +1999 35 28.70528 +1999 36 24.02983 +1999 37 27.29506 +1999 38 28.66847 +1999 39 29.35051 +1999 40 22.01368 +1999 41 24.86272 +1999 42 28.99688 +1999 43 27.59728 +1999 44 24.72543 +1999 45 21.10942 +1999 46 22.04185 +1999 47 25.55885 +1999 48 24.07735 +1999 49 18.56261 +1999 50 16.01675 +1999 51 24.24954 +1999 52 27.75211 +1999 53 23.76691 +1999 54 26.19095 +1999 55 13.75955 +1999 56 3.83276 +1999 57 16.01433 +1999 58 26.64118 +1999 59 23.52836 +1999 60 26.53361 +1999 61 24.91888 +1999 62 20.87865 +1999 63 10.13826 +1999 64 7.01312 +1999 65 9.42572 +1999 66 15.32563 +1999 67 12.54148 +1999 68 12.89693 +1999 69 11.25040 +1999 70 19.05941 +1999 71 19.52744 +1999 72 19.87831 +1999 73 17.38368 +1999 74 19.47586 +1999 75 18.83555 +1999 76 15.72601 +1999 77 21.38054 +1999 78 21.23081 +1999 79 21.58091 +1999 80 15.17020 +1999 81 12.79878 +1999 82 14.82831 +1999 83 10.21663 +1999 84 13.46268 +1999 85 10.47228 +1999 86 9.34494 +1999 87 10.80423 +1999 88 14.46794 +1999 89 5.32373 +1999 90 18.00049 +1999 91 14.48099 +1999 92 11.17860 +1999 93 14.97718 +1999 94 13.72092 +1999 95 4.48176 +1999 96 6.35862 +1999 97 2.93210 +1999 98 4.87059 +1999 99 14.37420 +1999 100 15.54690 +1999 101 17.04603 +1999 102 13.41757 +1999 103 11.02689 +1999 104 10.34839 +1999 105 9.53916 +1999 106 7.35299 +1999 107 8.85583 +1999 108 14.69854 +1999 109 14.89225 +1999 110 13.52151 +1999 111 14.02428 +1999 112 11.55997 +1999 113 11.64266 +1999 114 9.47212 +1999 115 7.89947 +1999 116 7.94860 +1999 117 12.06300 +1999 118 11.81105 +1999 119 8.46298 +1999 120 5.32779 +1999 121 3.54408 +1999 122 11.50070 +1999 123 13.84716 +1999 124 9.40913 +1999 125 12.87991 +1999 126 8.88564 +1999 127 13.01210 +1999 128 9.88356 +1999 129 10.84838 +1999 130 9.76035 +1999 131 11.35892 +1999 132 5.31334 +1999 133 4.20971 +1999 134 4.19971 +1999 135 3.99791 +1999 136 11.25118 +1999 137 10.30908 +1999 138 9.41665 +1999 139 10.79749 +1999 140 11.00261 +1999 141 10.44835 +1999 142 10.35452 +1999 143 10.15502 +1999 144 9.66341 +1999 145 4.98459 +1999 146 1.50588 +1999 147 6.11720 +1999 148 4.09485 +1999 149 5.69130 +1999 150 3.52573 +1999 151 3.98907 +1999 152 4.97296 +1999 153 7.99982 +1999 154 6.54684 +1999 155 4.75625 +1999 156 8.15649 +1999 157 8.80874 +1999 158 6.12376 +1999 159 6.59032 +1999 160 9.36360 +1999 161 8.68968 +1999 162 5.76187 +1999 163 1.71003 +1999 164 5.49414 +1999 165 1.81732 +1999 166 6.05847 +1999 167 7.80706 +1999 168 7.87219 +1999 169 8.26312 +1999 170 8.35318 +1999 171 6.65626 +1999 172 9.63230 +1999 173 9.30925 +1999 174 9.61917 +1999 175 8.75362 +1999 176 3.31163 +1999 177 9.28498 +1999 178 8.97852 +1999 179 9.65606 +1999 180 8.65633 +1999 181 4.83069 +1999 182 7.80853 +1999 183 1.37023 +1999 184 7.28134 +1999 185 8.46714 +1999 186 7.93764 +1999 187 8.43216 +1999 188 7.37222 +1999 189 9.64734 +1999 190 10.14975 +1999 191 8.58837 +1999 192 8.19298 +1999 193 6.53052 +1999 194 9.14786 +1999 195 7.02312 +1999 196 1.60961 +1999 197 6.50611 +1999 198 7.32399 +1999 199 5.46000 +1999 200 7.72188 +1999 201 4.42981 +1999 202 7.12437 +1999 203 4.27785 +1999 204 11.41456 +1999 205 9.38477 +1999 206 6.58873 +1999 207 10.97859 +1999 208 10.66444 +1999 209 10.74540 +1999 210 10.21585 +1999 211 12.16477 +1999 212 12.18084 +1999 213 8.78316 +1999 214 3.67968 +1999 215 8.14811 +1999 216 7.99505 +1999 217 9.71093 +1999 218 11.36903 +1999 219 11.13506 +1999 220 12.94980 +1999 221 9.34546 +1999 222 9.46374 +1999 223 3.27631 +1999 224 10.19650 +1999 225 9.72579 +1999 226 7.87066 +1999 227 8.22310 +1999 228 10.18777 +1999 229 13.63167 +1999 230 13.12278 +1999 231 9.82230 +1999 232 3.28628 +1999 233 11.23952 +1999 234 13.40669 +1999 235 11.00710 +1999 236 12.00813 +1999 237 12.13021 +1999 238 13.09418 +1999 239 15.25694 +1999 240 13.26715 +1999 241 15.61939 +1999 242 10.93366 +1999 243 17.62638 +1999 244 11.81866 +1999 245 14.73509 +1999 246 12.29731 +1999 247 10.28557 +1999 248 12.23925 +1999 249 8.50020 +1999 250 12.49577 +1999 251 12.44722 +1999 252 19.43689 +1999 253 16.04362 +1999 254 10.54140 +1999 255 3.32887 +1999 256 13.72559 +1999 257 11.88760 +1999 258 12.11224 +1999 259 15.90970 +1999 260 18.14538 +1999 261 5.52426 +1999 262 15.58716 +1999 263 16.88731 +1999 264 18.60987 +1999 265 21.34598 +1999 266 16.06980 +1999 267 19.32906 +1999 268 15.23880 +1999 269 15.30481 +1999 270 21.81228 +1999 271 23.23909 +1999 272 23.21110 +1999 273 22.88097 +1999 274 18.10374 +1999 275 21.96824 +1999 276 15.47865 +1999 277 20.03080 +1999 278 15.55494 +1999 279 11.85080 +1999 280 6.34279 +1999 281 13.43555 +1999 282 21.77340 +1999 283 21.50090 +1999 284 11.96934 +1999 285 15.14065 +1999 286 22.73262 +1999 287 22.84770 +1999 288 24.19969 +1999 289 25.42277 +1999 290 12.89753 +1999 291 16.27836 +1999 292 18.38350 +1999 293 9.78912 +1999 294 21.97515 +1999 295 26.31174 +1999 296 19.33027 +1999 297 21.68588 +1999 298 16.07999 +1999 299 8.50313 +1999 300 5.31759 +1999 301 14.93070 +1999 302 16.82761 +1999 303 17.83987 +1999 304 15.58207 +1999 305 15.87358 +1999 306 15.01934 +1999 307 5.73727 +1999 308 4.25890 +1999 309 4.92732 +1999 310 15.33237 +1999 311 14.19716 +1999 312 14.97502 +1999 313 10.85098 +1999 314 18.88929 +1999 315 15.99169 +1999 316 22.94058 +1999 317 24.34562 +1999 318 24.44844 +1999 319 23.70574 +1999 320 20.14883 +1999 321 10.24160 +1999 322 28.20753 +1999 323 25.83982 +1999 324 23.18751 +1999 325 23.21093 +1999 326 32.68538 +1999 327 16.49713 +1999 328 20.75000 +1999 329 18.88626 +1999 330 21.26364 +1999 331 9.82619 +1999 332 18.30133 +1999 333 31.73031 +1999 334 28.65067 +1999 335 17.68072 +1999 336 28.66277 +1999 337 20.41883 +1999 338 33.05742 +1999 339 25.44981 +1999 340 24.79274 +1999 341 31.55812 +1999 342 22.41467 +1999 343 24.76310 +1999 344 17.69921 +1999 345 12.30085 +1999 346 16.52443 +1999 347 22.58885 +1999 348 30.02702 +1999 349 22.25111 +1999 350 24.90765 +1999 351 18.61142 +1999 352 12.54597 +1999 353 27.00838 +1999 354 8.94914 +1999 355 28.35518 +1999 356 21.31350 +1999 357 24.01929 +1999 358 26.45516 +1999 359 20.28378 +1999 360 21.67612 +1999 361 23.34856 +1999 362 21.61901 +1999 363 17.86285 +1999 364 16.30532 +1999 365 15.44486 +2000 1 23.52456 +2000 2 13.72239 +2000 3 22.56820 +2000 4 24.43211 +2000 5 24.08089 +2000 6 23.86541 +2000 7 18.34747 +2000 8 21.94266 +2000 9 27.91135 +2000 10 26.23778 +2000 11 23.74626 +2000 12 30.39085 +2000 13 29.13676 +2000 14 21.30883 +2000 15 13.84102 +2000 16 18.23610 +2000 17 24.13964 +2000 18 23.78739 +2000 19 22.00046 +2000 20 21.69651 +2000 21 28.16113 +2000 22 20.45131 +2000 23 21.15167 +2000 24 16.33772 +2000 25 20.25147 +2000 26 21.58885 +2000 27 23.00167 +2000 28 13.64852 +2000 29 9.04116 +2000 30 22.55049 +2000 31 17.50645 +2000 32 19.85714 +2000 33 23.40032 +2000 34 26.16607 +2000 35 24.01531 +2000 36 23.22492 +2000 37 29.02254 +2000 38 29.60055 +2000 39 25.37015 +2000 40 28.01978 +2000 41 14.83600 +2000 42 13.67496 +2000 43 16.14272 +2000 44 16.82623 +2000 45 17.20889 +2000 46 8.34932 +2000 47 24.71498 +2000 48 18.02883 +2000 49 18.28941 +2000 50 22.30502 +2000 51 24.87370 +2000 52 19.94138 +2000 53 26.70935 +2000 54 27.48678 +2000 55 25.87507 +2000 56 23.58219 +2000 57 18.46567 +2000 58 24.69554 +2000 59 23.20229 +2000 60 13.35347 +2000 61 6.81102 +2000 62 25.56300 +2000 63 25.71610 +2000 64 20.40224 +2000 65 13.74425 +2000 66 18.41789 +2000 67 7.09318 +2000 68 20.00428 +2000 69 17.29408 +2000 70 14.35761 +2000 71 15.74709 +2000 72 9.48629 +2000 73 15.67797 +2000 74 21.42513 +2000 75 18.03972 +2000 76 22.47653 +2000 77 22.98698 +2000 78 20.25069 +2000 79 19.46411 +2000 80 12.93883 +2000 81 5.12495 +2000 82 15.18316 +2000 83 14.66148 +2000 84 14.57266 +2000 85 13.68239 +2000 86 19.05777 +2000 87 13.73060 +2000 88 12.89745 +2000 89 4.75276 +2000 90 13.62407 +2000 91 16.71062 +2000 92 11.06559 +2000 93 8.51063 +2000 94 4.53880 +2000 95 10.41396 +2000 96 9.03347 +2000 97 9.24134 +2000 98 11.19105 +2000 99 8.78429 +2000 100 8.37395 +2000 101 12.23148 +2000 102 3.91537 +2000 103 17.14833 +2000 104 16.57973 +2000 105 14.13755 +2000 106 10.47522 +2000 107 11.71083 +2000 108 10.66098 +2000 109 4.82066 +2000 110 8.23605 +2000 111 8.16361 +2000 112 12.49188 +2000 113 8.01419 +2000 114 10.87707 +2000 115 10.79067 +2000 116 13.19743 +2000 117 14.08087 +2000 118 13.74088 +2000 119 13.98151 +2000 120 10.67887 +2000 121 12.79048 +2000 122 13.96302 +2000 123 11.89253 +2000 124 10.56828 +2000 125 8.78999 +2000 126 8.40100 +2000 127 5.65670 +2000 128 5.98260 +2000 129 4.86468 +2000 130 9.08340 +2000 131 8.08370 +2000 132 2.35037 +2000 133 5.29178 +2000 134 2.30516 +2000 135 8.52359 +2000 136 7.61559 +2000 137 10.02828 +2000 138 8.91562 +2000 139 8.36153 +2000 140 7.06038 +2000 141 6.78586 +2000 142 10.73848 +2000 143 7.95185 +2000 144 8.10730 +2000 145 8.87440 +2000 146 9.51981 +2000 147 9.93280 +2000 148 9.99847 +2000 149 6.15106 +2000 150 2.94857 +2000 151 7.98955 +2000 152 3.33846 +2000 153 6.40150 +2000 154 4.21161 +2000 155 5.89654 +2000 156 8.41977 +2000 157 6.55161 +2000 158 5.11675 +2000 159 8.82550 +2000 160 9.39946 +2000 161 7.32227 +2000 162 5.90753 +2000 163 6.09726 +2000 164 9.70419 +2000 165 9.51134 +2000 166 9.64025 +2000 167 9.36127 +2000 168 7.29890 +2000 169 7.06631 +2000 170 8.09679 +2000 171 9.22044 +2000 172 5.67788 +2000 173 8.65564 +2000 174 6.52839 +2000 175 6.60298 +2000 176 6.39283 +2000 177 7.39454 +2000 178 6.60716 +2000 179 2.08704 +2000 180 3.40165 +2000 181 6.31685 +2000 182 9.01264 +2000 183 4.32729 +2000 184 3.99428 +2000 185 7.14461 +2000 186 8.02487 +2000 187 6.87820 +2000 188 8.55238 +2000 189 7.13950 +2000 190 7.39374 +2000 191 9.90395 +2000 192 9.74644 +2000 193 8.63484 +2000 194 7.67671 +2000 195 5.91707 +2000 196 5.30040 +2000 197 6.68298 +2000 198 7.78260 +2000 199 7.17738 +2000 200 1.78254 +2000 201 3.33339 +2000 202 4.67774 +2000 203 6.76879 +2000 204 8.57881 +2000 205 8.49230 +2000 206 8.05676 +2000 207 6.28989 +2000 208 5.26939 +2000 209 2.65505 +2000 210 6.05134 +2000 211 9.08116 +2000 212 8.93739 +2000 213 10.05636 +2000 214 10.81797 +2000 215 8.01206 +2000 216 2.04037 +2000 217 10.32903 +2000 218 12.93080 +2000 219 13.27735 +2000 220 8.39722 +2000 221 10.64785 +2000 222 6.41108 +2000 223 9.16082 +2000 224 11.60205 +2000 225 13.42725 +2000 226 14.29920 +2000 227 14.48522 +2000 228 12.25584 +2000 229 9.50132 +2000 230 8.77150 +2000 231 8.49158 +2000 232 12.51141 +2000 233 9.36109 +2000 234 10.68120 +2000 235 14.53179 +2000 236 15.13123 +2000 237 6.72843 +2000 238 1.50993 +2000 239 12.63444 +2000 240 11.19882 +2000 241 15.62164 +2000 242 3.32110 +2000 243 8.64000 +2000 244 13.49084 +2000 245 14.63521 +2000 246 14.87471 +2000 247 14.99014 +2000 248 11.91992 +2000 249 12.49655 +2000 250 11.29092 +2000 251 8.91346 +2000 252 8.56386 +2000 253 14.65517 +2000 254 15.50586 +2000 255 13.90573 +2000 256 7.69821 +2000 257 15.91574 +2000 258 20.37191 +2000 259 17.87011 +2000 260 17.16483 +2000 261 18.56580 +2000 262 11.47625 +2000 263 12.21428 +2000 264 18.22366 +2000 265 14.91895 +2000 266 19.38833 +2000 267 14.85009 +2000 268 8.99865 +2000 269 19.96920 +2000 270 18.26712 +2000 271 22.78999 +2000 272 14.53006 +2000 273 7.81047 +2000 274 5.36406 +2000 275 3.86223 +2000 276 17.91668 +2000 277 16.20190 +2000 278 18.29658 +2000 279 18.97793 +2000 280 14.39778 +2000 281 13.84543 +2000 282 12.85165 +2000 283 17.42956 +2000 284 3.13773 +2000 285 15.85207 +2000 286 21.07261 +2000 287 25.47055 +2000 288 11.78384 +2000 289 21.83803 +2000 290 27.29125 +2000 291 24.98394 +2000 292 26.72050 +2000 293 26.56930 +2000 294 27.06333 +2000 295 26.56670 +2000 296 25.78556 +2000 297 23.05264 +2000 298 16.19317 +2000 299 19.57349 +2000 300 14.34689 +2000 301 18.08482 +2000 302 18.45210 +2000 303 18.55665 +2000 304 21.50168 +2000 305 16.74268 +2000 306 18.60615 +2000 307 26.28487 +2000 308 11.06585 +2000 309 6.04108 +2000 310 11.79472 +2000 311 19.21389 +2000 312 13.62476 +2000 313 27.03145 +2000 314 24.17394 +2000 315 20.20015 +2000 316 28.98253 +2000 317 18.93508 +2000 318 25.93607 +2000 319 20.35575 +2000 320 24.68042 +2000 321 23.22527 +2000 322 24.91223 +2000 323 26.31511 +2000 324 17.59743 +2000 325 18.42342 +2000 326 8.32531 +2000 327 31.60564 +2000 328 28.01874 +2000 329 20.92383 +2000 330 17.59380 +2000 331 26.14801 +2000 332 16.18566 +2000 333 24.49820 +2000 334 24.49976 +2000 335 31.03782 +2000 336 30.64530 +2000 337 15.86624 +2000 338 7.33548 +2000 339 22.01394 +2000 340 21.67171 +2000 341 21.33752 +2000 342 25.73925 +2000 343 20.00903 +2000 344 20.66584 +2000 345 11.03916 +2000 346 21.10657 +2000 347 27.61707 +2000 348 22.88261 +2000 349 12.68862 +2000 350 16.47380 +2000 351 16.53048 +2000 352 24.97280 +2000 353 25.06386 +2000 354 12.90419 +2000 355 26.75307 +2000 356 31.45789 +2000 357 31.00974 +2000 358 10.06180 +2000 359 16.94632 +2000 360 18.71338 +2000 361 16.78476 +2000 362 19.43214 +2000 363 5.53769 +2000 364 6.07586 +2000 365 22.00064 +2000 366 28.15361 +2001 1 25.81805 +2001 2 29.59917 +2001 3 28.42681 +2001 4 31.21658 +2001 5 29.68497 +2001 6 26.53707 +2001 7 26.41887 +2001 8 24.07726 +2001 9 13.32202 +2001 10 13.88102 +2001 11 12.79809 +2001 12 28.00328 +2001 13 28.80438 +2001 14 26.88578 +2001 15 15.20243 +2001 16 25.69147 +2001 17 23.72224 +2001 18 18.23584 +2001 19 27.77846 +2001 20 25.29671 +2001 21 27.13418 +2001 22 32.14737 +2001 23 24.24306 +2001 24 24.13221 +2001 25 6.48968 +2001 26 23.20661 +2001 27 27.18075 +2001 28 13.55685 +2001 29 19.13630 +2001 30 8.87777 +2001 31 28.07084 +2001 32 30.47604 +2001 33 15.55312 +2001 34 30.28622 +2001 35 27.43373 +2001 36 22.46564 +2001 37 9.73927 +2001 38 11.00753 +2001 39 26.58597 +2001 40 23.69814 +2001 41 3.39747 +2001 42 3.20485 +2001 43 18.69290 +2001 44 5.23652 +2001 45 16.25435 +2001 46 13.38958 +2001 47 2.85070 +2001 48 19.60511 +2001 49 14.08752 +2001 50 9.71335 +2001 51 24.68664 +2001 52 24.49967 +2001 53 5.19084 +2001 54 27.00423 +2001 55 21.03538 +2001 56 18.44847 +2001 57 20.10338 +2001 58 21.72537 +2001 59 18.76591 +2001 60 18.50541 +2001 61 18.92860 +2001 62 17.99081 +2001 63 19.62204 +2001 64 17.63476 +2001 65 17.84843 +2001 66 14.32408 +2001 67 4.50700 +2001 68 23.08677 +2001 69 16.39181 +2001 70 17.13830 +2001 71 15.49498 +2001 72 7.82111 +2001 73 21.72355 +2001 74 18.54412 +2001 75 16.73680 +2001 76 15.28053 +2001 77 16.32010 +2001 78 21.41796 +2001 79 21.80477 +2001 80 16.93380 +2001 81 18.92903 +2001 82 15.71167 +2001 83 14.13245 +2001 84 12.83213 +2001 85 12.32695 +2001 86 3.72743 +2001 87 14.39433 +2001 88 15.59969 +2001 89 19.21173 +2001 90 10.21861 +2001 91 1.67429 +2001 92 11.86739 +2001 93 12.51919 +2001 94 13.44099 +2001 95 15.90728 +2001 96 13.67349 +2001 97 17.87556 +2001 98 17.97180 +2001 99 9.28644 +2001 100 10.04348 +2001 101 4.68049 +2001 102 10.75032 +2001 103 15.39328 +2001 104 16.88360 +2001 105 16.22281 +2001 106 9.09576 +2001 107 12.90505 +2001 108 7.40456 +2001 109 10.38191 +2001 110 11.83222 +2001 111 10.29197 +2001 112 12.36367 +2001 113 13.41395 +2001 114 13.05780 +2001 115 14.48410 +2001 116 13.84223 +2001 117 8.81306 +2001 118 8.06715 +2001 119 7.29748 +2001 120 7.97995 +2001 121 3.31539 +2001 122 7.46139 +2001 123 6.89255 +2001 124 4.89208 +2001 125 9.06630 +2001 126 9.16445 +2001 127 9.57606 +2001 128 9.07442 +2001 129 3.62091 +2001 130 7.47397 +2001 131 3.34724 +2001 132 9.47894 +2001 133 9.02733 +2001 134 8.72364 +2001 135 12.01029 +2001 136 10.48801 +2001 137 6.87795 +2001 138 7.58880 +2001 139 9.60146 +2001 140 7.37173 +2001 141 4.48371 +2001 142 8.89246 +2001 143 6.89762 +2001 144 3.98627 +2001 145 9.72518 +2001 146 7.34292 +2001 147 10.84709 +2001 148 6.81972 +2001 149 2.25622 +2001 150 6.12308 +2001 151 9.39012 +2001 152 9.62824 +2001 153 10.02828 +2001 154 9.59593 +2001 155 8.87268 +2001 156 8.03002 +2001 157 6.88205 +2001 158 9.31116 +2001 159 4.50134 +2001 160 1.05645 +2001 161 9.58306 +2001 162 9.89133 +2001 163 8.67154 +2001 164 3.90453 +2001 165 3.78178 +2001 166 1.80095 +2001 167 4.69778 +2001 168 6.11228 +2001 169 9.44991 +2001 170 8.12490 +2001 171 7.29057 +2001 172 7.50429 +2001 173 4.43907 +2001 174 5.47505 +2001 175 9.25638 +2001 176 7.28552 +2001 177 8.39730 +2001 178 4.37908 +2001 179 7.53037 +2001 180 9.17767 +2001 181 9.88762 +2001 182 9.98922 +2001 183 7.54613 +2001 184 9.28169 +2001 185 6.46540 +2001 186 6.03374 +2001 187 6.68448 +2001 188 7.07715 +2001 189 8.20968 +2001 190 10.26199 +2001 191 10.06517 +2001 192 9.02310 +2001 193 10.20012 +2001 194 7.77635 +2001 195 4.24231 +2001 196 4.05219 +2001 197 5.69602 +2001 198 4.67694 +2001 199 8.17050 +2001 200 8.09661 +2001 201 8.38569 +2001 202 4.87949 +2001 203 9.23659 +2001 204 9.45769 +2001 205 11.30820 +2001 206 8.47443 +2001 207 8.12409 +2001 208 10.03622 +2001 209 4.81042 +2001 210 3.44731 +2001 211 8.21358 +2001 212 11.13152 +2001 213 8.86265 +2001 214 10.55341 +2001 215 12.75083 +2001 216 8.77971 +2001 217 8.54918 +2001 218 8.76787 +2001 219 7.46799 +2001 220 7.90645 +2001 221 8.18621 +2001 222 9.59766 +2001 223 13.14723 +2001 224 13.79462 +2001 225 8.85030 +2001 226 10.53251 +2001 227 13.62329 +2001 228 12.57457 +2001 229 8.09450 +2001 230 10.69044 +2001 231 11.65596 +2001 232 8.26478 +2001 233 9.58660 +2001 234 8.56077 +2001 235 8.33768 +2001 236 9.94231 +2001 237 11.26207 +2001 238 15.09036 +2001 239 15.54405 +2001 240 10.07865 +2001 241 4.75021 +2001 242 4.23603 +2001 243 3.97348 +2001 244 10.26026 +2001 245 10.79395 +2001 246 8.34025 +2001 247 9.54711 +2001 248 12.64300 +2001 249 3.63431 +2001 250 14.47606 +2001 251 16.85094 +2001 252 15.23413 +2001 253 11.95137 +2001 254 13.65863 +2001 255 13.14550 +2001 256 13.51944 +2001 257 6.79093 +2001 258 11.76578 +2001 259 15.77940 +2001 260 19.21277 +2001 261 19.17847 +2001 262 19.79450 +2001 263 15.38430 +2001 264 14.34923 +2001 265 18.01397 +2001 266 19.58774 +2001 267 21.09672 +2001 268 14.82062 +2001 269 18.21545 +2001 270 14.58665 +2001 271 16.94917 +2001 272 20.66351 +2001 273 20.74222 +2001 274 16.81456 +2001 275 16.98589 +2001 276 15.33704 +2001 277 16.59502 +2001 278 3.17353 +2001 279 12.73553 +2001 280 14.96724 +2001 281 5.29141 +2001 282 14.96940 +2001 283 18.53772 +2001 284 19.82534 +2001 285 16.54525 +2001 286 14.29203 +2001 287 21.73876 +2001 288 18.59008 +2001 289 21.45917 +2001 290 14.88776 +2001 291 16.40736 +2001 292 8.57410 +2001 293 17.61255 +2001 294 19.44570 +2001 295 22.80779 +2001 296 16.65948 +2001 297 27.44600 +2001 298 11.84388 +2001 299 21.29466 +2001 300 6.59968 +2001 301 17.97379 +2001 302 19.40147 +2001 303 18.50982 +2001 304 20.07798 +2001 305 19.72192 +2001 306 9.82498 +2001 307 20.17829 +2001 308 27.41835 +2001 309 18.20837 +2001 310 18.55310 +2001 311 17.29806 +2001 312 23.51376 +2001 313 17.83192 +2001 314 21.78274 +2001 315 21.50643 +2001 316 6.84567 +2001 317 19.55820 +2001 318 20.55948 +2001 319 19.36233 +2001 320 20.86275 +2001 321 22.12834 +2001 322 21.06596 +2001 323 26.43875 +2001 324 14.91860 +2001 325 4.33185 +2001 326 14.59365 +2001 327 7.81182 +2001 328 21.00194 +2001 329 25.49137 +2001 330 12.98004 +2001 331 17.95133 +2001 332 18.70811 +2001 333 7.18602 +2001 334 4.77098 +2001 335 10.05713 +2001 336 15.48323 +2001 337 20.41554 +2001 338 22.06621 +2001 339 27.44124 +2001 340 8.94516 +2001 341 6.93165 +2001 342 14.21988 +2001 343 21.84805 +2001 344 18.94752 +2001 345 19.19445 +2001 346 23.91163 +2001 347 31.28345 +2001 348 7.43437 +2001 349 13.56575 +2001 350 13.55063 +2001 351 4.71870 +2001 352 7.75439 +2001 353 21.88244 +2001 354 22.87224 +2001 355 26.89934 +2001 356 22.02396 +2001 357 11.64724 +2001 358 25.91793 +2001 359 23.78532 +2001 360 12.69449 +2001 361 25.27373 +2001 362 24.10845 +2001 363 24.34812 +2001 364 32.38652 +2001 365 32.68313 +2002 1 32.23506 +2002 2 29.76869 +2002 3 22.56284 +2002 4 27.83048 +2002 5 21.52630 +2002 6 26.54726 +2002 7 23.45380 +2002 8 7.70921 +2002 9 24.67195 +2002 10 17.96109 +2002 11 18.62490 +2002 12 24.88156 +2002 13 14.55996 +2002 14 20.96988 +2002 15 23.18484 +2002 16 23.27417 +2002 17 17.92031 +2002 18 26.97512 +2002 19 22.47506 +2002 20 32.03116 +2002 21 30.34169 +2002 22 19.30107 +2002 23 16.81154 +2002 24 31.98053 +2002 25 24.36324 +2002 26 22.75845 +2002 27 22.55714 +2002 28 24.39426 +2002 29 29.91012 +2002 30 23.40887 +2002 31 24.60750 +2002 32 29.86900 +2002 33 22.46884 +2002 34 22.88796 +2002 35 9.34312 +2002 36 29.28286 +2002 37 25.33654 +2002 38 10.51834 +2002 39 29.12587 +2002 40 18.41003 +2002 41 8.41215 +2002 42 5.99357 +2002 43 19.71855 +2002 44 21.52345 +2002 45 18.13916 +2002 46 18.82820 +2002 47 17.45643 +2002 48 25.20279 +2002 49 25.86375 +2002 50 19.82716 +2002 51 12.78193 +2002 52 13.45602 +2002 53 12.77467 +2002 54 19.33900 +2002 55 23.62962 +2002 56 24.25931 +2002 57 16.93682 +2002 58 18.62248 +2002 59 15.85855 +2002 60 4.38352 +2002 61 19.77800 +2002 62 20.65262 +2002 63 19.42911 +2002 64 23.65036 +2002 65 19.22530 +2002 66 15.98901 +2002 67 18.22755 +2002 68 15.53973 +2002 69 17.44217 +2002 70 21.47196 +2002 71 15.24839 +2002 72 13.76741 +2002 73 17.79728 +2002 74 22.58012 +2002 75 13.39883 +2002 76 16.22056 +2002 77 20.43645 +2002 78 20.40405 +2002 79 19.08749 +2002 80 16.90563 +2002 81 19.25467 +2002 82 17.18237 +2002 83 16.29625 +2002 84 15.73042 +2002 85 20.44613 +2002 86 12.51573 +2002 87 17.73740 +2002 88 13.46864 +2002 89 4.40436 +2002 90 16.02850 +2002 91 18.60719 +2002 92 17.09251 +2002 93 18.66275 +2002 94 10.02568 +2002 95 10.10500 +2002 96 12.75290 +2002 97 14.14774 +2002 98 17.36562 +2002 99 12.35442 +2002 100 13.08442 +2002 101 13.83618 +2002 102 12.90030 +2002 103 11.79619 +2002 104 15.68212 +2002 105 11.35477 +2002 106 13.58243 +2002 107 12.74996 +2002 108 15.60842 +2002 109 14.31397 +2002 110 11.32920 +2002 111 12.11008 +2002 112 8.78766 +2002 113 3.60168 +2002 114 4.29147 +2002 115 2.64788 +2002 116 7.49350 +2002 117 8.01386 +2002 118 10.50114 +2002 119 14.17392 +2002 120 10.24134 +2002 121 10.40455 +2002 122 10.86998 +2002 123 10.28324 +2002 124 11.56913 +2002 125 8.60368 +2002 126 9.87699 +2002 127 11.60810 +2002 128 10.97850 +2002 129 8.35387 +2002 130 7.44184 +2002 131 5.72220 +2002 132 4.09742 +2002 133 11.13005 +2002 134 8.49561 +2002 135 7.72254 +2002 136 11.07104 +2002 137 9.47480 +2002 138 5.10452 +2002 139 6.81030 +2002 140 4.83319 +2002 141 4.41095 +2002 142 5.46068 +2002 143 9.13740 +2002 144 9.27383 +2002 145 8.06293 +2002 146 7.41391 +2002 147 6.11907 +2002 148 8.55486 +2002 149 7.50045 +2002 150 7.41413 +2002 151 6.39645 +2002 152 8.69633 +2002 153 7.01773 +2002 154 8.14907 +2002 155 7.48116 +2002 156 6.56722 +2002 157 8.60235 +2002 158 6.24380 +2002 159 4.31884 +2002 160 2.65422 +2002 161 7.05034 +2002 162 6.79801 +2002 163 4.58857 +2002 164 3.18597 +2002 165 5.44957 +2002 166 7.50654 +2002 167 5.80099 +2002 168 3.51600 +2002 169 1.85476 +2002 170 0.79203 +2002 171 3.03995 +2002 172 4.52117 +2002 173 6.75955 +2002 174 8.67093 +2002 175 7.20067 +2002 176 7.30945 +2002 177 5.34956 +2002 178 4.19822 +2002 179 2.07617 +2002 180 3.09473 +2002 181 7.45014 +2002 182 7.62090 +2002 183 7.30305 +2002 184 4.09293 +2002 185 5.09789 +2002 186 6.50018 +2002 187 4.13094 +2002 188 6.49961 +2002 189 8.11088 +2002 190 7.25242 +2002 191 7.33285 +2002 192 1.35139 +2002 193 8.63504 +2002 194 10.55825 +2002 195 9.24687 +2002 196 9.87863 +2002 197 7.56646 +2002 198 9.40369 +2002 199 7.86026 +2002 200 8.08031 +2002 201 7.34564 +2002 202 4.01461 +2002 203 5.44976 +2002 204 8.89160 +2002 205 6.33934 +2002 206 6.73533 +2002 207 8.63236 +2002 208 8.16799 +2002 209 8.13705 +2002 210 11.19070 +2002 211 10.65450 +2002 212 11.70893 +2002 213 10.81979 +2002 214 7.94395 +2002 215 5.42166 +2002 216 4.90504 +2002 217 5.49169 +2002 218 8.11547 +2002 219 7.85951 +2002 220 8.38033 +2002 221 13.60092 +2002 222 11.49561 +2002 223 7.23274 +2002 224 8.15664 +2002 225 3.61819 +2002 226 10.52076 +2002 227 11.02879 +2002 228 12.68326 +2002 229 13.27173 +2002 230 14.58613 +2002 231 10.72483 +2002 232 10.93332 +2002 233 11.78565 +2002 234 12.47115 +2002 235 6.99226 +2002 236 11.35365 +2002 237 13.70762 +2002 238 15.10721 +2002 239 11.30121 +2002 240 15.56513 +2002 241 15.89052 +2002 242 12.74702 +2002 243 16.04664 +2002 244 16.42378 +2002 245 7.92708 +2002 246 10.24713 +2002 247 4.32103 +2002 248 15.49428 +2002 249 15.58094 +2002 250 9.87483 +2002 251 15.09710 +2002 252 10.42226 +2002 253 10.62366 +2002 254 14.90236 +2002 255 17.31957 +2002 256 20.57892 +2002 257 16.90865 +2002 258 19.40734 +2002 259 18.28138 +2002 260 10.85452 +2002 261 4.52454 +2002 262 13.55495 +2002 263 17.81257 +2002 264 12.75108 +2002 265 12.50752 +2002 266 12.86997 +2002 267 19.25718 +2002 268 21.38953 +2002 269 20.72598 +2002 270 21.94456 +2002 271 8.52534 +2002 272 14.66096 +2002 273 16.35483 +2002 274 22.10103 +2002 275 17.27654 +2002 276 22.39739 +2002 277 18.95400 +2002 278 24.08452 +2002 279 22.83060 +2002 280 18.35957 +2002 281 24.99077 +2002 282 25.05453 +2002 283 24.98766 +2002 284 14.48159 +2002 285 22.29509 +2002 286 19.95633 +2002 287 26.94859 +2002 288 8.16352 +2002 289 19.63742 +2002 290 20.61366 +2002 291 22.93911 +2002 292 13.04208 +2002 293 19.27420 +2002 294 21.03045 +2002 295 26.73639 +2002 296 28.26680 +2002 297 8.65028 +2002 298 16.80394 +2002 299 18.18323 +2002 300 21.58721 +2002 301 24.55358 +2002 302 21.08583 +2002 303 17.07497 +2002 304 16.27491 +2002 305 20.76183 +2002 306 25.78556 +2002 307 24.89003 +2002 308 9.45441 +2002 309 21.37130 +2002 310 21.20204 +2002 311 21.21155 +2002 312 23.35902 +2002 313 19.82785 +2002 314 25.01375 +2002 315 27.23017 +2002 316 25.80103 +2002 317 29.82485 +2002 318 29.57826 +2002 319 14.63538 +2002 320 21.86050 +2002 321 27.55564 +2002 322 16.47441 +2002 323 16.50732 +2002 324 32.42661 +2002 325 19.65012 +2002 326 24.89797 +2002 327 23.75240 +2002 328 27.77371 +2002 329 24.03138 +2002 330 9.58824 +2002 331 21.40923 +2002 332 28.74563 +2002 333 26.83377 +2002 334 21.73867 +2002 335 20.83588 +2002 336 21.02725 +2002 337 24.39426 +2002 338 23.54806 +2002 339 16.22264 +2002 340 11.93685 +2002 341 25.33801 +2002 342 20.58869 +2002 343 29.43302 +2002 344 24.04676 +2002 345 17.10573 +2002 346 28.05339 +2002 347 21.71465 +2002 348 24.31668 +2002 349 27.47390 +2002 350 18.34229 +2002 351 6.95167 +2002 352 22.87094 +2002 353 23.47860 +2002 354 29.93501 +2002 355 27.29117 +2002 356 26.96216 +2002 357 23.14250 +2002 358 23.66833 +2002 359 22.31418 +2002 360 33.50151 +2002 361 25.19761 +2002 362 32.48614 +2002 363 27.26300 +2002 364 22.67689 +2002 365 31.85378 +2003 1 31.21978 +2003 2 31.17191 +2003 3 24.17731 +2003 4 16.13269 +2003 5 13.58942 +2003 6 24.66003 +2003 7 17.22038 +2003 8 6.21785 +2003 9 7.34225 +2003 10 22.62280 +2003 11 24.02101 +2003 12 14.04501 +2003 13 28.88378 +2003 14 29.47018 +2003 15 29.50050 +2003 16 26.19536 +2003 17 27.04968 +2003 18 28.74874 +2003 19 21.35169 +2003 20 27.75462 +2003 21 18.13536 +2003 22 23.68656 +2003 23 21.62281 +2003 24 26.01348 +2003 25 31.03419 +2003 26 22.13853 +2003 27 29.27984 +2003 28 28.35052 +2003 29 24.75464 +2003 30 30.36701 +2003 31 30.60435 +2003 32 30.47026 +2003 33 23.14060 +2003 34 30.01933 +2003 35 30.23836 +2003 36 19.14322 +2003 37 28.38707 +2003 38 18.71683 +2003 39 18.91374 +2003 40 19.99944 +2003 41 17.38273 +2003 42 26.18620 +2003 43 18.01760 +2003 44 18.92765 +2003 45 27.26283 +2003 46 26.92578 +2003 47 23.17810 +2003 48 18.69852 +2003 49 6.44613 +2003 50 22.60466 +2003 51 17.81257 +2003 52 28.02306 +2003 53 7.47813 +2003 54 14.94366 +2003 55 13.00069 +2003 56 7.95211 +2003 57 6.52488 +2003 58 17.58542 +2003 59 15.92689 +2003 60 19.25597 +2003 61 6.90645 +2003 62 19.55595 +2003 63 22.58824 +2003 64 18.45426 +2003 65 18.22729 +2003 66 11.06680 +2003 67 17.46809 +2003 68 12.61233 +2003 69 3.93291 +2003 70 21.12506 +2003 71 22.67603 +2003 72 21.93074 +2003 73 14.43502 +2003 74 15.01295 +2003 75 17.01812 +2003 76 15.93225 +2003 77 22.44180 +2003 78 21.45830 +2003 79 19.50108 +2003 80 13.24823 +2003 81 10.97634 +2003 82 18.46472 +2003 83 18.03712 +2003 84 11.43677 +2003 85 7.06958 +2003 86 4.28740 +2003 87 13.97192 +2003 88 14.61404 +2003 89 11.96830 +2003 90 12.93684 +2003 91 16.43008 +2003 92 13.89001 +2003 93 17.93111 +2003 94 12.23381 +2003 95 4.30816 +2003 96 16.49843 +2003 97 15.37946 +2003 98 16.44840 +2003 99 15.81708 +2003 100 16.02202 +2003 101 14.06773 +2003 102 14.72100 +2003 103 9.73676 +2003 104 8.72709 +2003 105 8.35053 +2003 106 14.16580 +2003 107 10.25171 +2003 108 10.15425 +2003 109 7.64931 +2003 110 2.61193 +2003 111 7.12737 +2003 112 12.45888 +2003 113 11.06775 +2003 114 14.55944 +2003 115 14.46630 +2003 116 11.26500 +2003 117 14.14040 +2003 118 12.86323 +2003 119 8.74722 +2003 120 9.25914 +2003 121 6.29950 +2003 122 11.16150 +2003 123 10.70954 +2003 124 5.08632 +2003 125 7.55654 +2003 126 7.34163 +2003 127 10.85867 +2003 128 8.62141 +2003 129 7.26973 +2003 130 9.07330 +2003 131 7.45042 +2003 132 12.16365 +2003 133 10.18388 +2003 134 11.42839 +2003 135 11.11208 +2003 136 10.67697 +2003 137 7.27055 +2003 138 6.10529 +2003 139 2.76114 +2003 140 1.77985 +2003 141 6.13520 +2003 142 7.44181 +2003 143 5.23136 +2003 144 7.76037 +2003 145 10.38156 +2003 146 9.61416 +2003 147 8.25041 +2003 148 10.51678 +2003 149 7.59525 +2003 150 8.64804 +2003 151 8.05607 +2003 152 8.29982 +2003 153 5.68398 +2003 154 5.99441 +2003 155 2.93295 +2003 156 5.05253 +2003 157 7.89159 +2003 158 7.67085 +2003 159 7.96457 +2003 160 9.17715 +2003 161 9.66133 +2003 162 9.80217 +2003 163 9.60820 +2003 164 6.20357 +2003 165 4.86637 +2003 166 6.52559 +2003 167 6.30849 +2003 168 2.17755 +2003 169 8.09248 +2003 170 7.91807 +2003 171 7.22406 +2003 172 7.38507 +2003 173 3.13267 +2003 174 4.28720 +2003 175 8.86032 +2003 176 9.76761 +2003 177 6.87044 +2003 178 3.46661 +2003 179 1.42745 +2003 180 5.14056 +2003 181 6.86428 +2003 182 8.69538 +2003 183 4.81438 +2003 184 8.58051 +2003 185 8.36301 +2003 186 9.76674 +2003 187 8.47299 +2003 188 7.51258 +2003 189 6.87136 +2003 190 5.09667 +2003 191 7.28415 +2003 192 9.92287 +2003 193 10.36765 +2003 194 10.04547 +2003 195 2.41203 +2003 196 5.05034 +2003 197 7.37284 +2003 198 7.62444 +2003 199 9.01308 +2003 200 10.97686 +2003 201 10.90135 +2003 202 11.06482 +2003 203 8.17112 +2003 204 10.60620 +2003 205 10.94939 +2003 206 9.61304 +2003 207 6.63973 +2003 208 3.61951 +2003 209 3.96376 +2003 210 11.40186 +2003 211 7.70259 +2003 212 5.89242 +2003 213 5.33700 +2003 214 10.82981 +2003 215 10.86592 +2003 216 11.28315 +2003 217 11.50969 +2003 218 10.33301 +2003 219 7.56500 +2003 220 7.19674 +2003 221 10.55082 +2003 222 7.22492 +2003 223 11.34164 +2003 224 12.69665 +2003 225 11.97780 +2003 226 2.84820 +2003 227 12.20409 +2003 228 11.88562 +2003 229 12.38717 +2003 230 12.71903 +2003 231 6.00477 +2003 232 7.68802 +2003 233 10.35936 +2003 234 9.84934 +2003 235 12.04710 +2003 236 12.93218 +2003 237 10.80613 +2003 238 9.40395 +2003 239 13.02385 +2003 240 15.48599 +2003 241 12.21886 +2003 242 13.12001 +2003 243 8.36529 +2003 244 10.17904 +2003 245 14.08130 +2003 246 10.64508 +2003 247 5.77080 +2003 248 11.63151 +2003 249 15.07568 +2003 250 14.83860 +2003 251 13.63686 +2003 252 16.99851 +2003 253 11.21636 +2003 254 13.10593 +2003 255 14.17815 +2003 256 9.55057 +2003 257 12.93477 +2003 258 12.04459 +2003 259 13.78434 +2003 260 13.70477 +2003 261 19.12801 +2003 262 11.55894 +2003 263 10.68241 +2003 264 17.00844 +2003 265 20.13906 +2003 266 14.98980 +2003 267 15.38559 +2003 268 9.80217 +2003 269 15.11957 +2003 270 10.21196 +2003 271 16.90191 +2003 272 13.38854 +2003 273 24.11381 +2003 274 15.65171 +2003 275 4.81585 +2003 276 18.06036 +2003 277 19.61055 +2003 278 24.57648 +2003 279 21.70411 +2003 280 17.98321 +2003 281 6.74346 +2003 282 7.45765 +2003 283 14.67279 +2003 284 2.94674 +2003 285 15.19111 +2003 286 24.21075 +2003 287 25.18923 +2003 288 24.45466 +2003 289 26.07768 +2003 290 24.75196 +2003 291 24.82739 +2003 292 22.74808 +2003 293 16.84956 +2003 294 18.87987 +2003 295 18.79278 +2003 296 23.80164 +2003 297 14.91238 +2003 298 23.61528 +2003 299 16.98434 +2003 300 4.99440 +2003 301 20.45123 +2003 302 11.99068 +2003 303 21.48310 +2003 304 22.56535 +2003 305 21.64251 +2003 306 14.93683 +2003 307 24.25775 +2003 308 26.49421 +2003 309 22.49493 +2003 310 19.14780 +2003 311 12.16832 +2003 312 18.96972 +2003 313 20.67051 +2003 314 20.35368 +2003 315 22.81167 +2003 316 12.49284 +2003 317 27.89830 +2003 318 18.64158 +2003 319 31.28017 +2003 320 20.34858 +2003 321 30.22842 +2003 322 29.96343 +2003 323 30.43233 +2003 324 28.58674 +2003 325 12.89969 +2003 326 6.99524 +2003 327 14.53516 +2003 328 6.42487 +2003 329 8.23896 +2003 330 18.99150 +2003 331 24.10249 +2003 332 27.65146 +2003 333 22.39091 +2003 334 27.50795 +2003 335 26.44644 +2003 336 23.70030 +2003 337 22.72899 +2003 338 23.77460 +2003 339 20.07755 +2003 340 26.14404 +2003 341 29.34429 +2003 342 8.34553 +2003 343 4.94556 +2003 344 22.24627 +2003 345 20.83199 +2003 346 19.65781 +2003 347 22.37648 +2003 348 33.10805 +2003 349 25.75549 +2003 350 32.15877 +2003 351 31.76055 +2003 352 33.52622 +2003 353 23.12556 +2003 354 8.10929 +2003 355 21.57624 +2003 356 7.05292 +2003 357 17.21304 +2003 358 18.45400 +2003 359 22.14881 +2003 360 27.63305 +2003 361 17.52296 +2003 362 5.68604 +2003 363 21.43308 +2003 364 33.61712 +2003 365 32.33226 +2004 1 31.42610 +2004 2 28.05088 +2004 3 26.32988 +2004 4 32.35611 +2004 5 32.39732 +2004 6 13.87593 +2004 7 13.52497 +2004 8 20.20499 +2004 9 33.39049 +2004 10 32.54144 +2004 11 29.67693 +2004 12 22.22519 +2004 13 18.82699 +2004 14 17.84324 +2004 15 28.49005 +2004 16 32.57798 +2004 17 27.56583 +2004 18 12.74383 +2004 19 13.38716 +2004 20 27.64100 +2004 21 23.83811 +2004 22 29.44452 +2004 23 27.11569 +2004 24 24.67670 +2004 25 27.13971 +2004 26 19.00610 +2004 27 18.23170 +2004 28 20.20758 +2004 29 7.70817 +2004 30 15.45281 +2004 31 12.43400 +2004 32 3.79774 +2004 33 16.20009 +2004 34 5.31395 +2004 35 21.27462 +2004 36 9.75378 +2004 37 27.92586 +2004 38 11.99042 +2004 39 19.36207 +2004 40 20.27661 +2004 41 19.33589 +2004 42 5.07292 +2004 43 25.76094 +2004 44 25.70003 +2004 45 22.73668 +2004 46 15.07481 +2004 47 21.09275 +2004 48 15.77759 +2004 49 16.15092 +2004 50 22.89012 +2004 51 15.44314 +2004 52 23.05852 +2004 53 17.64858 +2004 54 18.58300 +2004 55 26.24936 +2004 56 16.98460 +2004 57 8.26333 +2004 58 2.95184 +2004 59 7.07076 +2004 60 18.51293 +2004 61 18.71320 +2004 62 21.02769 +2004 63 25.38017 +2004 64 24.76742 +2004 65 23.71844 +2004 66 23.20531 +2004 67 13.39433 +2004 68 13.15345 +2004 69 18.85205 +2004 70 21.97783 +2004 71 21.15668 +2004 72 15.46361 +2004 73 16.99039 +2004 74 15.74977 +2004 75 14.09841 +2004 76 5.79277 +2004 77 21.33251 +2004 78 22.04055 +2004 79 14.68653 +2004 80 18.86000 +2004 81 18.73938 +2004 82 21.56820 +2004 83 17.09554 +2004 84 20.67414 +2004 85 10.30121 +2004 86 12.33040 +2004 87 15.94659 +2004 88 17.46861 +2004 89 19.80539 +2004 90 20.08757 +2004 91 11.98074 +2004 92 7.07041 +2004 93 19.17406 +2004 94 15.80507 +2004 95 15.96473 +2004 96 15.13875 +2004 97 12.72992 +2004 98 12.52074 +2004 99 13.75419 +2004 100 14.99213 +2004 101 13.24106 +2004 102 11.54546 +2004 103 13.80819 +2004 104 13.44643 +2004 105 14.24287 +2004 106 12.53543 +2004 107 14.28183 +2004 108 14.24762 +2004 109 13.94124 +2004 110 11.82133 +2004 111 11.20167 +2004 112 14.36028 +2004 113 10.93668 +2004 114 11.78591 +2004 115 5.55334 +2004 116 9.52733 +2004 117 7.65793 +2004 118 4.56184 +2004 119 3.70903 +2004 120 9.16021 +2004 121 2.99811 +2004 122 7.17850 +2004 123 7.78248 +2004 124 11.98092 +2004 125 9.48309 +2004 126 10.14224 +2004 127 8.45846 +2004 128 7.72286 +2004 129 10.95552 +2004 130 9.96356 +2004 131 4.52814 +2004 132 1.09958 +2004 133 9.47920 +2004 134 3.25183 +2004 135 9.55187 +2004 136 11.94074 +2004 137 10.97902 +2004 138 10.47790 +2004 139 10.70582 +2004 140 9.70168 +2004 141 10.34830 +2004 142 2.30429 +2004 143 7.71798 +2004 144 10.96381 +2004 145 8.01775 +2004 146 8.40613 +2004 147 7.14808 +2004 148 3.05956 +2004 149 7.38314 +2004 150 5.39597 +2004 151 8.07189 +2004 152 7.73396 +2004 153 7.55905 +2004 154 4.30117 +2004 155 3.33535 +2004 156 7.06383 +2004 157 8.23374 +2004 158 9.41700 +2004 159 9.80821 +2004 160 8.56596 +2004 161 8.17213 +2004 162 8.24776 +2004 163 7.93576 +2004 164 9.29051 +2004 165 6.82307 +2004 166 4.96119 +2004 167 4.34470 +2004 168 2.36790 +2004 169 1.51618 +2004 170 6.54058 +2004 171 2.71022 +2004 172 7.24102 +2004 173 6.30145 +2004 174 9.39384 +2004 175 7.71195 +2004 176 6.01097 +2004 177 7.85899 +2004 178 2.41631 +2004 179 4.23613 +2004 180 3.61312 +2004 181 4.00369 +2004 182 8.95268 +2004 183 6.73087 +2004 184 6.92481 +2004 185 9.83120 +2004 186 7.35131 +2004 187 6.75499 +2004 188 7.25758 +2004 189 8.80001 +2004 190 9.45665 +2004 191 9.22657 +2004 192 9.21802 +2004 193 10.13463 +2004 194 9.97445 +2004 195 8.18611 +2004 196 1.74137 +2004 197 1.85459 +2004 198 0.55340 +2004 199 7.35354 +2004 200 10.99820 +2004 201 7.37414 +2004 202 8.21098 +2004 203 8.76701 +2004 204 9.00400 +2004 205 8.28688 +2004 206 9.82990 +2004 207 11.16677 +2004 208 1.90544 +2004 209 4.44881 +2004 210 5.87510 +2004 211 11.10940 +2004 212 7.78486 +2004 213 9.87794 +2004 214 11.68629 +2004 215 12.50787 +2004 216 11.08313 +2004 217 3.22699 +2004 218 6.98809 +2004 219 8.18282 +2004 220 8.56471 +2004 221 10.89608 +2004 222 8.90793 +2004 223 7.44821 +2004 224 8.46794 +2004 225 7.36970 +2004 226 9.20393 +2004 227 3.51484 +2004 228 8.42161 +2004 229 13.72092 +2004 230 6.53670 +2004 231 10.97626 +2004 232 14.11016 +2004 233 12.73415 +2004 234 10.66850 +2004 235 13.45732 +2004 236 12.38008 +2004 237 13.82884 +2004 238 15.93397 +2004 239 15.14678 +2004 240 16.18963 +2004 241 16.11852 +2004 242 13.71488 +2004 243 15.42266 +2004 244 5.46986 +2004 245 8.94689 +2004 246 14.45463 +2004 247 13.00562 +2004 248 14.57317 +2004 249 17.15861 +2004 250 17.98511 +2004 251 13.49084 +2004 252 16.66760 +2004 253 11.05920 +2004 254 10.76993 +2004 255 10.84199 +2004 256 8.07476 +2004 257 13.33878 +2004 258 14.39510 +2004 259 12.17298 +2004 260 14.94927 +2004 261 11.80500 +2004 262 19.39861 +2004 263 19.70145 +2004 264 15.94616 +2004 265 17.43371 +2004 266 10.13809 +2004 267 10.75075 +2004 268 3.14018 +2004 269 23.01972 +2004 270 13.22594 +2004 271 5.21904 +2004 272 22.20299 +2004 273 13.49084 +2004 274 17.53073 +2004 275 18.56477 +2004 276 23.71559 +2004 277 5.25965 +2004 278 18.57479 +2004 279 15.58207 +2004 280 6.81024 +2004 281 13.21669 +2004 282 13.45576 +2004 283 19.29701 +2004 284 19.80919 +2004 285 16.21175 +2004 286 14.34041 +2004 287 16.52383 +2004 288 19.94164 +2004 289 6.90187 +2004 290 21.43869 +2004 291 18.45953 +2004 292 20.31454 +2004 293 23.07908 +2004 294 27.72265 +2004 295 25.10145 +2004 296 14.57222 +2004 297 8.79811 +2004 298 15.50768 +2004 299 8.47650 +2004 300 24.95405 +2004 301 26.01055 +2004 302 9.57528 +2004 303 19.46436 +2004 304 10.35279 +2004 305 9.04012 +2004 306 18.53366 +2004 307 19.40034 +2004 308 19.85092 +2004 309 18.01915 +2004 310 20.32284 +2004 311 23.54651 +2004 312 11.69770 +2004 313 19.06848 +2004 314 22.39263 +2004 315 18.93603 +2004 316 15.38965 +2004 317 22.37484 +2004 318 7.37796 +2004 319 20.71302 +2004 320 20.54203 +2004 321 21.43463 +2004 322 25.86393 +2004 323 24.48576 +2004 324 24.42329 +2004 325 23.97522 +2004 326 21.85730 +2004 327 20.03460 +2004 328 21.05758 +2004 329 24.43651 +2004 330 25.77658 +2004 331 24.14016 +2004 332 27.28875 +2004 333 19.97775 +2004 334 27.22274 +2004 335 15.23483 +2004 336 11.59436 +2004 337 24.91301 +2004 338 12.53629 +2004 339 17.17753 +2004 340 26.97728 +2004 341 31.66232 +2004 342 26.88863 +2004 343 20.47455 +2004 344 19.16387 +2004 345 21.95122 +2004 346 13.47227 +2004 347 25.65588 +2004 348 21.02846 +2004 349 13.12546 +2004 350 19.80478 +2004 351 22.97160 +2004 352 23.19408 +2004 353 29.31630 +2004 354 23.50572 +2004 355 8.28241 +2004 356 22.17110 +2004 357 18.79399 +2004 358 24.36921 +2004 359 21.06588 +2004 360 18.08482 +2004 361 33.72918 +2004 362 29.70639 +2004 363 19.34211 +2004 364 4.78529 +2004 365 25.22094 +2004 366 19.93265 +2005 1 26.28729 +2005 2 23.68008 +2005 3 20.71215 +2005 4 9.65451 +2005 5 6.77293 +2005 6 7.63791 +2005 7 23.68112 +2005 8 18.15350 +2005 9 21.01006 +2005 10 29.54534 +2005 11 23.34588 +2005 12 30.56668 +2005 13 31.95988 +2005 14 30.46905 +2005 15 32.31343 +2005 16 24.81175 +2005 17 28.84490 +2005 18 30.52115 +2005 19 18.21226 +2005 20 21.55775 +2005 21 29.11870 +2005 22 26.73017 +2005 23 22.32870 +2005 24 24.46891 +2005 25 26.53655 +2005 26 31.31412 +2005 27 25.59902 +2005 28 30.72099 +2005 29 30.73732 +2005 30 19.83036 +2005 31 16.53178 +2005 32 13.73777 +2005 33 14.81881 +2005 34 9.10466 +2005 35 17.94511 +2005 36 22.64233 +2005 37 10.29845 +2005 38 20.12282 +2005 39 23.11891 +2005 40 23.79724 +2005 41 22.35237 +2005 42 22.15149 +2005 43 18.76478 +2005 44 16.16440 +2005 45 24.92588 +2005 46 27.46380 +2005 47 24.05540 +2005 48 26.31718 +2005 49 26.60118 +2005 50 25.98471 +2005 51 24.83672 +2005 52 15.84075 +2005 53 16.11084 +2005 54 19.10416 +2005 55 21.57373 +2005 56 18.52926 +2005 57 18.07298 +2005 58 17.68375 +2005 59 24.81909 +2005 60 26.02930 +2005 61 22.00720 +2005 62 18.80634 +2005 63 23.85426 +2005 64 15.77863 +2005 65 14.09599 +2005 66 20.61012 +2005 67 21.34676 +2005 68 20.19228 +2005 69 20.17958 +2005 70 21.27928 +2005 71 20.91226 +2005 72 19.49892 +2005 73 18.56883 +2005 74 16.99894 +2005 75 4.95405 +2005 76 15.70398 +2005 77 16.78614 +2005 78 14.94107 +2005 79 15.09909 +2005 80 13.42362 +2005 81 15.52288 +2005 82 5.73123 +2005 83 9.07822 +2005 84 15.83859 +2005 85 11.88553 +2005 86 12.73424 +2005 87 12.99871 +2005 88 12.25765 +2005 89 16.35526 +2005 90 14.67789 +2005 91 14.55710 +2005 92 16.52556 +2005 93 12.92976 +2005 94 14.19034 +2005 95 11.70184 +2005 96 15.14540 +2005 97 11.25516 +2005 98 13.17997 +2005 99 15.52634 +2005 100 13.74978 +2005 101 9.53882 +2005 102 16.37211 +2005 103 17.23576 +2005 104 16.70017 +2005 105 11.36074 +2005 106 10.47686 +2005 107 15.66432 +2005 108 14.88698 +2005 109 11.86523 +2005 110 10.64059 +2005 111 15.46404 +2005 112 9.09827 +2005 113 11.14379 +2005 114 14.50993 +2005 115 11.46398 +2005 116 13.24236 +2005 117 9.48499 +2005 118 14.00579 +2005 119 9.44257 +2005 120 8.84624 +2005 121 8.23101 +2005 122 3.12858 +2005 123 7.55813 +2005 124 11.76060 +2005 125 12.81830 +2005 126 11.76474 +2005 127 7.17893 +2005 128 12.92501 +2005 129 9.22415 +2005 130 9.27167 +2005 131 9.50996 +2005 132 12.11950 +2005 133 10.74738 +2005 134 9.56163 +2005 135 2.11324 +2005 136 3.39238 +2005 137 3.86559 +2005 138 5.30807 +2005 139 3.54389 +2005 140 5.19226 +2005 141 1.58564 +2005 142 8.02886 +2005 143 9.16272 +2005 144 9.74117 +2005 145 6.12395 +2005 146 1.72886 +2005 147 6.29622 +2005 148 5.19226 +2005 149 8.17269 +2005 150 8.88356 +2005 151 8.48406 +2005 152 9.29733 +2005 153 8.80485 +2005 154 6.01204 +2005 155 8.69460 +2005 156 6.82876 +2005 157 10.18656 +2005 158 8.25147 +2005 159 9.14492 +2005 160 5.61876 +2005 161 6.67805 +2005 162 6.51519 +2005 163 8.29920 +2005 164 8.96210 +2005 165 7.23089 +2005 166 8.06434 +2005 167 6.02745 +2005 168 2.27167 +2005 169 6.62803 +2005 170 9.15477 +2005 171 1.17435 +2005 172 4.64559 +2005 173 6.68444 +2005 174 1.49070 +2005 175 3.64075 +2005 176 9.73391 +2005 177 9.63256 +2005 178 7.46016 +2005 179 7.18711 +2005 180 9.68760 +2005 181 8.75500 +2005 182 9.97108 +2005 183 5.36268 +2005 184 4.34636 +2005 185 4.40497 +2005 186 4.71192 +2005 187 4.48152 +2005 188 5.50968 +2005 189 8.71690 +2005 190 7.67595 +2005 191 4.44162 +2005 192 6.05086 +2005 193 7.84031 +2005 194 7.45642 +2005 195 6.40745 +2005 196 8.48324 +2005 197 2.86216 +2005 198 3.61466 +2005 199 6.99521 +2005 200 6.91924 +2005 201 10.10180 +2005 202 11.26207 +2005 203 7.65018 +2005 204 7.12254 +2005 205 7.08360 +2005 206 7.13705 +2005 207 6.64741 +2005 208 6.16826 +2005 209 9.83457 +2005 210 11.13877 +2005 211 6.33453 +2005 212 8.12957 +2005 213 7.60431 +2005 214 12.52783 +2005 215 11.26889 +2005 216 11.63324 +2005 217 11.77338 +2005 218 4.16934 +2005 219 7.45800 +2005 220 9.48318 +2005 221 9.84571 +2005 222 9.20670 +2005 223 9.91716 +2005 224 11.13463 +2005 225 9.12600 +2005 226 14.56039 +2005 227 13.77873 +2005 228 8.66290 +2005 229 10.89297 +2005 230 13.58899 +2005 231 13.58407 +2005 232 10.60932 +2005 233 8.35486 +2005 234 4.74762 +2005 235 3.57717 +2005 236 13.41775 +2005 237 13.03482 +2005 238 11.82712 +2005 239 14.91445 +2005 240 15.90443 +2005 241 14.32460 +2005 242 15.53567 +2005 243 14.97277 +2005 244 17.36588 +2005 245 17.20086 +2005 246 12.24936 +2005 247 9.18553 +2005 248 9.93419 +2005 249 9.71300 +2005 250 15.97277 +2005 251 10.15070 +2005 252 9.27737 +2005 253 7.59229 +2005 254 11.22457 +2005 255 13.89900 +2005 256 10.34104 +2005 257 13.04631 +2005 258 11.75800 +2005 259 14.23440 +2005 260 8.87293 +2005 261 14.11111 +2005 262 20.41502 +2005 263 16.25452 +2005 264 16.99687 +2005 265 13.43676 +2005 266 21.49520 +2005 267 13.57586 +2005 268 12.86444 +2005 269 12.24444 +2005 270 5.83888 +2005 271 13.60921 +2005 272 14.48150 +2005 273 5.87719 +2005 274 8.78982 +2005 275 11.42018 +2005 276 18.07920 +2005 277 16.95695 +2005 278 15.56556 +2005 279 20.47222 +2005 280 16.67606 +2005 281 13.50225 +2005 282 14.00527 +2005 283 13.77009 +2005 284 13.30370 +2005 285 11.43279 +2005 286 16.30549 +2005 287 16.70268 +2005 288 18.09320 +2005 289 20.74654 +2005 290 22.74938 +2005 291 18.27913 +2005 292 8.05690 +2005 293 3.05229 +2005 294 12.76888 +2005 295 18.10538 +2005 296 24.25663 +2005 297 23.53329 +2005 298 24.34285 +2005 299 22.61356 +2005 300 17.45824 +2005 301 15.93752 +2005 302 15.88084 +2005 303 21.86836 +2005 304 25.49016 +2005 305 17.77818 +2005 306 23.77832 +2005 307 15.52720 +2005 308 22.96443 +2005 309 19.68045 +2005 310 4.29685 +2005 311 19.72607 +2005 312 27.26585 +2005 313 23.92183 +2005 314 27.19846 +2005 315 22.58574 +2005 316 19.24223 +2005 317 21.77237 +2005 318 24.33473 +2005 319 19.91416 +2005 320 17.25546 +2005 321 28.99981 +2005 322 26.35044 +2005 323 26.83117 +2005 324 18.92722 +2005 325 25.33248 +2005 326 30.57618 +2005 327 16.84567 +2005 328 26.80266 +2005 329 6.51982 +2005 330 18.71536 +2005 331 18.79615 +2005 332 28.41281 +2005 333 30.00067 +2005 334 21.95320 +2005 335 31.29417 +2005 336 25.57716 +2005 337 22.96158 +2005 338 12.63781 +2005 339 21.67525 +2005 340 23.21412 +2005 341 21.96780 +2005 342 23.74747 +2005 343 17.99099 +2005 344 13.10334 +2005 345 16.94045 +2005 346 23.76207 +2005 347 22.19849 +2005 348 14.60212 +2005 349 17.45608 +2005 350 9.07943 +2005 351 26.72283 +2005 352 16.80134 +2005 353 21.80382 +2005 354 18.45651 +2005 355 30.46179 +2005 356 26.79368 +2005 357 28.37497 +2005 358 24.47306 +2005 359 17.17934 +2005 360 29.63442 +2005 361 19.70335 +2005 362 24.53985 +2005 363 24.22716 +2005 364 27.84318 +2005 365 27.89683 +2006 1 17.16111 +2006 2 29.03403 +2006 3 22.10138 +2006 4 20.77877 +2006 5 27.46103 +2006 6 28.28926 +2006 7 32.51534 +2006 8 32.36345 +2006 9 23.41837 +2006 10 25.99370 +2006 11 27.01581 +2006 12 15.94054 +2006 13 22.92909 +2006 14 28.03006 +2006 15 32.38471 +2006 16 27.45014 +2006 17 27.78909 +2006 18 6.59532 +2006 19 24.51038 +2006 20 19.38660 +2006 21 22.86014 +2006 22 23.26337 +2006 23 2.58586 +2006 24 13.58234 +2006 25 23.31780 +2006 26 19.58152 +2006 27 19.95209 +2006 28 18.21217 +2006 29 13.78702 +2006 30 15.88196 +2006 31 16.76851 +2006 32 20.88668 +2006 33 19.50972 +2006 34 18.49798 +2006 35 27.93735 +2006 36 23.32342 +2006 37 24.15735 +2006 38 16.48564 +2006 39 22.90507 +2006 40 15.96154 +2006 41 20.76754 +2006 42 19.16715 +2006 43 23.02145 +2006 44 18.53539 +2006 45 26.42734 +2006 46 17.79011 +2006 47 15.20847 +2006 48 25.81926 +2006 49 14.88516 +2006 50 20.45123 +2006 51 19.51301 +2006 52 21.37847 +2006 53 21.94923 +2006 54 27.40582 +2006 55 26.60005 +2006 56 21.54151 +2006 57 25.63687 +2006 58 24.28479 +2006 59 23.65658 +2006 60 21.27695 +2006 61 15.38680 +2006 62 23.65148 +2006 63 17.33607 +2006 64 21.70800 +2006 65 10.45837 +2006 66 15.17089 +2006 67 16.56858 +2006 68 18.51336 +2006 69 13.89519 +2006 70 14.64964 +2006 71 24.04348 +2006 72 18.90406 +2006 73 23.11960 +2006 74 19.72996 +2006 75 14.90659 +2006 76 13.13375 +2006 77 10.65338 +2006 78 14.06065 +2006 79 11.52472 +2006 80 14.15500 +2006 81 9.81599 +2006 82 5.76799 +2006 83 14.93199 +2006 84 6.59508 +2006 85 7.43324 +2006 86 7.58512 +2006 87 17.73429 +2006 88 15.44262 +2006 89 7.77352 +2006 90 13.18715 +2006 91 2.63796 +2006 92 14.68567 +2006 93 11.89901 +2006 94 12.80267 +2006 95 13.99697 +2006 96 11.74150 +2006 97 11.23831 +2006 98 9.98119 +2006 99 11.38692 +2006 100 14.19379 +2006 101 13.64550 +2006 102 11.77658 +2006 103 16.35587 +2006 104 12.43348 +2006 105 10.53251 +2006 106 11.18742 +2006 107 2.64597 +2006 108 11.12115 +2006 109 15.12060 +2006 110 11.03769 +2006 111 11.00425 +2006 112 8.64760 +2006 113 9.19719 +2006 114 4.41318 +2006 115 11.45742 +2006 116 11.02715 +2006 117 6.84997 +2006 118 8.79267 +2006 119 8.69348 +2006 120 12.41361 +2006 121 6.04484 +2006 122 7.58467 +2006 123 12.72646 +2006 124 5.91430 +2006 125 10.30026 +2006 126 12.33490 +2006 127 11.98489 +2006 128 4.91161 +2006 129 9.07546 +2006 130 4.01612 +2006 131 6.77979 +2006 132 8.67836 +2006 133 7.21861 +2006 134 11.21723 +2006 135 9.91414 +2006 136 10.97626 +2006 137 11.34942 +2006 138 9.41881 +2006 139 10.26423 +2006 140 8.09747 +2006 141 6.68027 +2006 142 2.80708 +2006 143 2.15037 +2006 144 3.82073 +2006 145 5.48055 +2006 146 2.51764 +2006 147 6.67317 +2006 148 7.37346 +2006 149 9.77046 +2006 150 10.36092 +2006 151 9.96814 +2006 152 10.29482 +2006 153 8.34389 +2006 154 2.90881 +2006 155 9.62505 +2006 156 10.08746 +2006 157 9.42684 +2006 158 9.40429 +2006 159 7.94458 +2006 160 8.19093 +2006 161 7.34387 +2006 162 1.72538 +2006 163 6.64067 +2006 164 8.86438 +2006 165 7.26310 +2006 166 7.59762 +2006 167 5.58142 +2006 168 6.95348 +2006 169 6.30733 +2006 170 7.27269 +2006 171 8.18622 +2006 172 7.14430 +2006 173 5.24691 +2006 174 8.13692 +2006 175 9.26873 +2006 176 8.88978 +2006 177 9.34960 +2006 178 9.43730 +2006 179 6.57673 +2006 180 9.44136 +2006 181 9.21525 +2006 182 9.62444 +2006 183 8.67637 +2006 184 5.38510 +2006 185 6.77589 +2006 186 4.00534 +2006 187 6.31074 +2006 188 7.50227 +2006 189 7.96218 +2006 190 8.06095 +2006 191 6.68894 +2006 192 5.22766 +2006 193 5.23521 +2006 194 7.05629 +2006 195 8.06636 +2006 196 10.08513 +2006 197 9.23063 +2006 198 8.46025 +2006 199 2.29890 +2006 200 5.45675 +2006 201 9.27124 +2006 202 10.87543 +2006 203 7.49316 +2006 204 10.12643 +2006 205 10.11943 +2006 206 10.15468 +2006 207 11.56429 +2006 208 11.79101 +2006 209 11.78712 +2006 210 7.01640 +2006 211 3.40095 +2006 212 6.84373 +2006 213 4.76333 +2006 214 7.08096 +2006 215 9.43073 +2006 216 5.93139 +2006 217 1.11981 +2006 218 5.08791 +2006 219 9.60803 +2006 220 10.56361 +2006 221 10.69805 +2006 222 9.81832 +2006 223 10.62219 +2006 224 10.87845 +2006 225 11.06499 +2006 226 12.67799 +2006 227 12.29196 +2006 228 14.59002 +2006 229 14.61810 +2006 230 10.88899 +2006 231 7.85043 +2006 232 10.16366 +2006 233 13.00199 +2006 234 14.39372 +2006 235 12.21333 +2006 236 12.04546 +2006 237 10.70954 +2006 238 13.08969 +2006 239 12.07146 +2006 240 10.76069 +2006 241 13.03111 +2006 242 12.51271 +2006 243 17.27844 +2006 244 10.94887 +2006 245 9.70384 +2006 246 12.81485 +2006 247 10.18958 +2006 248 11.25550 +2006 249 15.78269 +2006 250 11.25662 +2006 251 4.80992 +2006 252 8.72899 +2006 253 16.59761 +2006 254 14.84983 +2006 255 17.47276 +2006 256 15.56539 +2006 257 15.54621 +2006 258 13.50708 +2006 259 18.96186 +2006 260 16.45998 +2006 261 17.10521 +2006 262 19.64848 +2006 263 18.81481 +2006 264 13.59858 +2006 265 19.14581 +2006 266 21.42651 +2006 267 21.17932 +2006 268 20.17250 +2006 269 19.44821 +2006 270 14.33393 +2006 271 15.97044 +2006 272 17.85793 +2006 273 14.21470 +2006 274 5.64825 +2006 275 16.06772 +2006 276 17.31992 +2006 277 21.73003 +2006 278 19.29450 +2006 279 23.97064 +2006 280 22.18009 +2006 281 12.19234 +2006 282 23.13300 +2006 283 21.30062 +2006 284 25.09678 +2006 285 25.92181 +2006 286 21.46487 +2006 287 12.35840 +2006 288 5.61584 +2006 289 23.36256 +2006 290 18.67294 +2006 291 15.56677 +2006 292 17.42792 +2006 293 15.54379 +2006 294 8.43755 +2006 295 10.79611 +2006 296 19.94397 +2006 297 17.27620 +2006 298 22.36956 +2006 299 13.79151 +2006 300 16.13926 +2006 301 10.58953 +2006 302 19.33857 +2006 303 20.97472 +2006 304 28.46759 +2006 305 19.02917 +2006 306 20.23747 +2006 307 21.32888 +2006 308 16.56107 +2006 309 11.19908 +2006 310 16.39570 +2006 311 17.99133 +2006 312 15.75746 +2006 313 20.88124 +2006 314 24.46710 +2006 315 18.89819 +2006 316 29.47657 +2006 317 25.09523 +2006 318 24.22941 +2006 319 14.76360 +2006 320 15.80904 +2006 321 6.59666 +2006 322 19.10857 +2006 323 22.26044 +2006 324 27.13694 +2006 325 22.42434 +2006 326 28.23803 +2006 327 26.80724 +2006 328 26.13963 +2006 329 24.40187 +2006 330 25.90393 +2006 331 22.54573 +2006 332 18.51483 +2006 333 7.99660 +2006 334 28.44608 +2006 335 31.46567 +2006 336 31.86562 +2006 337 19.96557 +2006 338 27.08139 +2006 339 27.41947 +2006 340 32.97162 +2006 341 16.10418 +2006 342 27.09936 +2006 343 25.93028 +2006 344 32.88635 +2006 345 31.91460 +2006 346 28.20528 +2006 347 29.98469 +2006 348 27.25860 +2006 349 32.44501 +2006 350 17.61826 +2006 351 9.05412 +2006 352 11.71826 +2006 353 18.58732 +2006 354 25.73087 +2006 355 27.47537 +2006 356 24.78902 +2006 357 20.63189 +2006 358 11.77641 +2006 359 27.49715 +2006 360 20.22702 +2006 361 23.93297 +2006 362 31.81948 +2006 363 25.14551 +2006 364 24.92916 +2006 365 22.31194 +2007 1 28.30300 +2007 2 26.42916 +2007 3 33.39818 +2007 4 31.23723 +2007 5 30.31275 +2007 6 27.94090 +2007 7 17.49159 +2007 8 5.44582 +2007 9 14.70321 +2007 10 18.94571 +2007 11 5.84226 +2007 12 10.87716 +2007 13 15.77517 +2007 14 24.31521 +2007 15 17.80980 +2007 16 13.77812 +2007 17 32.49953 +2007 18 31.91547 +2007 19 24.67048 +2007 20 25.73191 +2007 21 26.79705 +2007 22 16.31327 +2007 23 5.67575 +2007 24 18.59371 +2007 25 13.89761 +2007 26 25.07535 +2007 27 22.39488 +2007 28 19.64926 +2007 29 25.69916 +2007 30 30.47872 +2007 31 27.38016 +2007 32 26.90332 +2007 33 22.65028 +2007 34 19.47145 +2007 35 18.66888 +2007 36 28.77725 +2007 37 19.75432 +2007 38 24.15770 +2007 39 23.16997 +2007 40 21.35290 +2007 41 23.30960 +2007 42 11.47254 +2007 43 24.93167 +2007 44 23.40403 +2007 45 20.84547 +2007 46 21.10156 +2007 47 27.49956 +2007 48 27.54052 +2007 49 21.60950 +2007 50 13.22240 +2007 51 16.49004 +2007 52 18.46308 +2007 53 23.11036 +2007 54 21.12834 +2007 55 23.73434 +2007 56 18.52511 +2007 57 24.46364 +2007 58 10.16245 +2007 59 8.32867 +2007 60 14.73034 +2007 61 19.24906 +2007 62 14.64160 +2007 63 14.62130 +2007 64 19.98397 +2007 65 13.59400 +2007 66 16.32943 +2007 67 24.71792 +2007 68 23.53424 +2007 69 17.70690 +2007 70 12.21057 +2007 71 14.13668 +2007 72 14.25324 +2007 73 16.67632 +2007 74 15.81137 +2007 75 14.16018 +2007 76 10.36394 +2007 77 18.63873 +2007 78 21.96979 +2007 79 16.66207 +2007 80 15.54958 +2007 81 21.81419 +2007 82 19.80729 +2007 83 15.48029 +2007 84 13.63936 +2007 85 15.91402 +2007 86 5.76207 +2007 87 3.12930 +2007 88 5.25756 +2007 89 11.13549 +2007 90 14.74658 +2007 91 15.05200 +2007 92 14.65767 +2007 93 13.46388 +2007 94 13.09807 +2007 95 17.26134 +2007 96 12.90911 +2007 97 13.52722 +2007 98 14.93796 +2007 99 14.39787 +2007 100 11.13005 +2007 101 8.61454 +2007 102 14.36193 +2007 103 11.44662 +2007 104 11.37059 +2007 105 11.57648 +2007 106 12.99810 +2007 107 9.95760 +2007 108 13.13721 +2007 109 15.26766 +2007 110 14.30084 +2007 111 11.99439 +2007 112 5.13676 +2007 113 11.55868 +2007 114 13.19371 +2007 115 11.30198 +2007 116 11.01600 +2007 117 4.56735 +2007 118 11.26198 +2007 119 2.05614 +2007 120 7.58472 +2007 121 5.25712 +2007 122 10.58279 +2007 123 11.15303 +2007 124 8.91717 +2007 125 10.30761 +2007 126 11.72595 +2007 127 12.71644 +2007 128 11.59177 +2007 129 7.74089 +2007 130 5.66038 +2007 131 9.83370 +2007 132 11.56974 +2007 133 7.76488 +2007 134 8.53467 +2007 135 7.80659 +2007 136 8.84304 +2007 137 9.36325 +2007 138 11.00572 +2007 139 6.18964 +2007 140 3.98920 +2007 141 5.82377 +2007 142 3.32163 +2007 143 7.43963 +2007 144 10.00572 +2007 145 7.92891 +2007 146 9.08945 +2007 147 10.54149 +2007 148 10.59204 +2007 149 10.17084 +2007 150 9.33492 +2007 151 7.80495 +2007 152 1.25573 +2007 153 8.64181 +2007 154 5.96041 +2007 155 6.65728 +2007 156 8.14565 +2007 157 6.68940 +2007 158 7.40319 +2007 159 6.53742 +2007 160 1.28285 +2007 161 3.92749 +2007 162 7.52150 +2007 163 4.87582 +2007 164 5.94711 +2007 165 8.32631 +2007 166 9.60949 +2007 167 7.26987 +2007 168 9.51592 +2007 169 9.70142 +2007 170 2.72183 +2007 171 5.47563 +2007 172 5.36648 +2007 173 8.11457 +2007 174 6.56626 +2007 175 6.87903 +2007 176 9.30744 +2007 177 9.86895 +2007 178 6.70874 +2007 179 2.24966 +2007 180 0.59444 +2007 181 2.77941 +2007 182 5.08554 +2007 183 7.09365 +2007 184 6.95819 +2007 185 6.67040 +2007 186 4.45351 +2007 187 3.45895 +2007 188 9.38883 +2007 189 6.25284 +2007 190 2.15210 +2007 191 2.49830 +2007 192 8.88443 +2007 193 7.37753 +2007 194 9.17879 +2007 195 9.33379 +2007 196 2.84254 +2007 197 5.47239 +2007 198 8.55389 +2007 199 5.26503 +2007 200 3.54807 +2007 201 4.19910 +2007 202 6.74799 +2007 203 9.99847 +2007 204 8.79854 +2007 205 7.09755 +2007 206 7.02743 +2007 207 7.30457 +2007 208 7.39955 +2007 209 0.90704 +2007 210 6.87599 +2007 211 8.41754 +2007 212 7.74334 +2007 213 8.15034 +2007 214 10.03812 +2007 215 2.36073 +2007 216 9.36593 +2007 217 7.37184 +2007 218 8.62355 +2007 219 12.73553 +2007 220 9.04625 +2007 221 9.39410 +2007 222 8.08098 +2007 223 7.66676 +2007 224 13.12770 +2007 225 12.34414 +2007 226 10.48213 +2007 227 5.58554 +2007 228 9.62626 +2007 229 6.11906 +2007 230 11.38260 +2007 231 12.25809 +2007 232 13.48030 +2007 233 8.87941 +2007 234 14.65975 +2007 235 11.47720 +2007 236 12.68101 +2007 237 14.08424 +2007 238 3.00134 +2007 239 10.39072 +2007 240 11.73779 +2007 241 14.72636 +2007 242 15.65395 +2007 243 14.65620 +2007 244 10.11087 +2007 245 15.61965 +2007 246 10.04676 +2007 247 4.36209 +2007 248 14.95567 +2007 249 18.20716 +2007 250 10.38018 +2007 251 4.98773 +2007 252 11.73649 +2007 253 16.51113 +2007 254 16.68375 +2007 255 12.30647 +2007 256 12.21549 +2007 257 15.87419 +2007 258 7.81561 +2007 259 15.29539 +2007 260 12.41853 +2007 261 9.94455 +2007 262 14.10057 +2007 263 13.28737 +2007 264 7.21253 +2007 265 11.17921 +2007 266 14.24926 +2007 267 15.42300 +2007 268 16.41807 +2007 269 20.22684 +2007 270 21.74878 +2007 271 13.33143 +2007 272 14.05823 +2007 273 20.81436 +2007 274 17.52814 +2007 275 19.10347 +2007 276 22.77901 +2007 277 21.59110 +2007 278 15.23586 +2007 279 22.14441 +2007 280 14.83488 +2007 281 13.64826 +2007 282 6.74609 +2007 283 17.86761 +2007 284 17.39431 +2007 285 13.69760 +2007 286 21.03149 +2007 287 17.18004 +2007 288 14.57767 +2007 289 16.11187 +2007 290 20.03201 +2007 291 20.35878 +2007 292 17.78579 +2007 293 20.54281 +2007 294 16.75331 +2007 295 21.92832 +2007 296 24.36117 +2007 297 27.65837 +2007 298 27.87489 +2007 299 14.15189 +2007 300 26.40799 +2007 301 23.41509 +2007 302 27.19051 +2007 303 29.02807 +2007 304 15.94322 +2007 305 24.52291 +2007 306 19.47154 +2007 307 8.34725 +2007 308 14.83756 +2007 309 12.61276 +2007 310 15.49688 +2007 311 23.15598 +2007 312 29.68799 +2007 313 26.31390 +2007 314 26.34120 +2007 315 25.05557 +2007 316 25.45698 +2007 317 27.62009 +2007 318 26.65716 +2007 319 10.56594 +2007 320 26.05712 +2007 321 21.42573 +2007 322 25.35149 +2007 323 28.54699 +2007 324 24.30268 +2007 325 30.60150 +2007 326 28.80179 +2007 327 12.97244 +2007 328 32.03695 +2007 329 32.64520 +2007 330 32.13415 +2007 331 26.18784 +2007 332 23.95941 +2007 333 26.33507 +2007 334 22.70627 +2007 335 23.39280 +2007 336 23.62003 +2007 337 22.71637 +2007 338 9.97920 +2007 339 5.92342 +2007 340 21.59188 +2007 341 20.97256 +2007 342 7.83317 +2007 343 11.52567 +2007 344 15.71538 +2007 345 20.83121 +2007 346 19.27619 +2007 347 18.27965 +2007 348 20.49348 +2007 349 16.18324 +2007 350 19.84219 +2007 351 15.76981 +2007 352 9.50659 +2007 353 18.54533 +2007 354 23.12764 +2007 355 24.86514 +2007 356 24.29162 +2007 357 21.25423 +2007 358 17.22773 +2007 359 28.51390 +2007 360 32.85135 +2007 361 18.76997 +2007 362 29.90883 +2007 363 33.33252 +2007 364 30.25080 +2007 365 33.86310 +2008 1 25.99068 +2008 2 32.36535 +2008 3 26.36055 +2008 4 22.70860 +2008 5 15.88663 +2008 6 14.14895 +2008 7 8.49775 +2008 8 21.87251 +2008 9 31.07713 +2008 10 33.28050 +2008 11 20.18736 +2008 12 31.51034 +2008 13 31.53410 +2008 14 32.16879 +2008 15 27.54156 +2008 16 27.28166 +2008 17 26.08001 +2008 18 32.33503 +2008 19 17.11912 +2008 20 9.56560 +2008 21 16.45142 +2008 22 21.23790 +2008 23 24.15010 +2008 24 30.47440 +2008 25 32.54947 +2008 26 24.28713 +2008 27 21.43878 +2008 28 26.84033 +2008 29 25.74651 +2008 30 15.06790 +2008 31 12.33092 +2008 32 24.81909 +2008 33 20.42652 +2008 34 24.87620 +2008 35 29.67728 +2008 36 29.63131 +2008 37 30.35923 +2008 38 29.48028 +2008 39 24.07666 +2008 40 9.02388 +2008 41 18.47413 +2008 42 18.49591 +2008 43 23.13585 +2008 44 11.45880 +2008 45 21.26235 +2008 46 21.69357 +2008 47 21.24732 +2008 48 25.56438 +2008 49 13.45473 +2008 50 11.77580 +2008 51 19.54904 +2008 52 13.80421 +2008 53 12.20659 +2008 54 5.67381 +2008 55 16.55605 +2008 56 25.48653 +2008 57 21.00142 +2008 58 18.03514 +2008 59 21.61996 +2008 60 6.57459 +2008 61 7.81270 +2008 62 18.97543 +2008 63 10.17714 +2008 64 19.54143 +2008 65 20.63318 +2008 66 15.49722 +2008 67 23.53467 +2008 68 22.56811 +2008 69 21.59741 +2008 70 14.63124 +2008 71 19.45175 +2008 72 14.27285 +2008 73 14.71936 +2008 74 21.62834 +2008 75 22.87397 +2008 76 22.96987 +2008 77 21.66195 +2008 78 17.78242 +2008 79 20.36837 +2008 80 20.65599 +2008 81 21.18027 +2008 82 11.94895 +2008 83 13.63496 +2008 84 14.73517 +2008 85 18.55950 +2008 86 12.80526 +2008 87 13.61172 +2008 88 14.39225 +2008 89 13.37982 +2008 90 9.62004 +2008 91 7.49320 +2008 92 18.76876 +2008 93 13.92094 +2008 94 12.54416 +2008 95 13.55175 +2008 96 16.34334 +2008 97 13.77354 +2008 98 15.53057 +2008 99 15.44858 +2008 100 17.65048 +2008 101 16.53333 +2008 102 14.88067 +2008 103 13.26828 +2008 104 2.15669 +2008 105 2.30223 +2008 106 6.41184 +2008 107 7.12078 +2008 108 13.47244 +2008 109 14.24892 +2008 110 14.89735 +2008 111 11.56870 +2008 112 9.67723 +2008 113 11.50727 +2008 114 11.58322 +2008 115 11.64344 +2008 116 6.41426 +2008 117 4.32254 +2008 118 9.30813 +2008 119 3.10649 +2008 120 10.24065 +2008 121 9.32152 +2008 122 11.24937 +2008 123 13.80119 +2008 124 4.80971 +2008 125 5.05716 +2008 126 6.18573 +2008 127 12.02308 +2008 128 4.69900 +2008 129 3.49113 +2008 130 6.26523 +2008 131 10.94861 +2008 132 12.09272 +2008 133 12.35088 +2008 134 8.43947 +2008 135 11.82954 +2008 136 11.66538 +2008 137 10.62642 +2008 138 11.04598 +2008 139 8.58377 +2008 140 7.07359 +2008 141 7.84677 +2008 142 9.91924 +2008 143 7.37750 +2008 144 9.56465 +2008 145 8.48698 +2008 146 7.61859 +2008 147 8.00359 +2008 148 9.57779 +2008 149 9.98585 +2008 150 8.39535 +2008 151 7.43831 +2008 152 5.76842 +2008 153 7.76573 +2008 154 10.19822 +2008 155 9.74652 +2008 156 9.53364 +2008 157 5.80094 +2008 158 5.66158 +2008 159 9.94075 +2008 160 8.70981 +2008 161 9.71257 +2008 162 9.64794 +2008 163 5.49107 +2008 164 4.28274 +2008 165 5.45055 +2008 166 4.56132 +2008 167 4.08193 +2008 168 0.76896 +2008 169 9.19529 +2008 170 9.20402 +2008 171 8.69219 +2008 172 4.34057 +2008 173 0.95165 +2008 174 4.13152 +2008 175 4.97084 +2008 176 7.47497 +2008 177 7.71416 +2008 178 5.09109 +2008 179 6.22151 +2008 180 5.24546 +2008 181 9.70315 +2008 182 9.06396 +2008 183 3.51621 +2008 184 5.29418 +2008 185 8.43805 +2008 186 6.58288 +2008 187 9.75758 +2008 188 8.71214 +2008 189 9.97929 +2008 190 10.18164 +2008 191 7.53024 +2008 192 4.94444 +2008 193 1.56620 +2008 194 8.16312 +2008 195 7.60898 +2008 196 8.38549 +2008 197 6.07171 +2008 198 2.64212 +2008 199 4.08781 +2008 200 1.42703 +2008 201 6.60531 +2008 202 8.63389 +2008 203 1.70880 +2008 204 5.89881 +2008 205 10.18164 +2008 206 11.50373 +2008 207 2.14123 +2008 208 5.22090 +2008 209 9.22588 +2008 210 3.00487 +2008 211 3.42240 +2008 212 8.30161 +2008 213 6.59435 +2008 214 5.83643 +2008 215 7.88203 +2008 216 7.51142 +2008 217 10.46313 +2008 218 9.46909 +2008 219 7.20515 +2008 220 8.42060 +2008 221 6.37298 +2008 222 13.14308 +2008 223 9.94205 +2008 224 2.52547 +2008 225 8.81755 +2008 226 10.57035 +2008 227 8.22479 +2008 228 10.80389 +2008 229 6.84669 +2008 230 12.37067 +2008 231 12.99465 +2008 232 13.88534 +2008 233 10.24350 +2008 234 9.00271 +2008 235 10.43755 +2008 236 1.10330 +2008 237 11.06758 +2008 238 12.79169 +2008 239 13.70373 +2008 240 13.34197 +2008 241 15.47441 +2008 242 8.04214 +2008 243 13.15604 +2008 244 10.85599 +2008 245 11.40523 +2008 246 9.76320 +2008 247 11.06188 +2008 248 14.19034 +2008 249 15.72152 +2008 250 15.15810 +2008 251 3.25293 +2008 252 6.60942 +2008 253 12.66581 +2008 254 11.76526 +2008 255 11.85805 +2008 256 13.99144 +2008 257 18.87045 +2008 258 17.92238 +2008 259 18.91028 +2008 260 15.93423 +2008 261 15.61162 +2008 262 11.03449 +2008 263 17.56452 +2008 264 19.50731 +2008 265 21.15452 +2008 266 14.00881 +2008 267 16.04992 +2008 268 14.17859 +2008 269 22.17041 +2008 270 10.62910 +2008 271 22.30451 +2008 272 16.41790 +2008 273 19.64278 +2008 274 21.15910 +2008 275 20.51594 +2008 276 19.46756 +2008 277 11.85477 +2008 278 6.37983 +2008 279 6.45137 +2008 280 7.58320 +2008 281 15.85837 +2008 282 22.21966 +2008 283 21.01939 +2008 284 16.52737 +2008 285 21.60233 +2008 286 23.48793 +2008 287 18.85594 +2008 288 18.65989 +2008 289 12.40635 +2008 290 11.84242 +2008 291 17.12932 +2008 292 17.38368 +2008 293 18.66871 +2008 294 16.94693 +2008 295 21.54358 +2008 296 18.37331 +2008 297 13.14913 +2008 298 17.42515 +2008 299 23.16557 +2008 300 25.95119 +2008 301 13.29091 +2008 302 14.03412 +2008 303 23.33206 +2008 304 20.62368 +2008 305 14.56479 +2008 306 18.92903 +2008 307 18.26721 +2008 308 16.03031 +2008 309 19.62723 +2008 310 20.18624 +2008 311 23.74730 +2008 312 25.94834 +2008 313 28.22109 +2008 314 10.95656 +2008 315 29.21054 +2008 316 28.79798 +2008 317 21.58514 +2008 318 28.36443 +2008 319 27.82849 +2008 320 20.20049 +2008 321 8.18787 +2008 322 25.63410 +2008 323 29.24225 +2008 324 24.46960 +2008 325 28.20165 +2008 326 21.32412 +2008 327 21.27496 +2008 328 8.68692 +2008 329 21.01084 +2008 330 25.33922 +2008 331 24.66409 +2008 332 26.68136 +2008 333 29.49152 +2008 334 30.25832 +2008 335 9.49234 +2008 336 23.26234 +2008 337 30.50568 +2008 338 30.60841 +2008 339 20.15081 +2008 340 33.91165 +2008 341 25.35140 +2008 342 19.29563 +2008 343 14.29212 +2008 344 18.65817 +2008 345 32.41901 +2008 346 23.01895 +2008 347 25.23528 +2008 348 26.09055 +2008 349 8.01529 +2008 350 23.67714 +2008 351 24.98291 +2008 352 25.14905 +2008 353 23.15053 +2008 354 16.68626 +2008 355 23.51903 +2008 356 24.60534 +2008 357 27.96552 +2008 358 14.42517 +2008 359 21.99761 +2008 360 19.29666 +2008 361 18.01760 +2008 362 28.37506 +2008 363 9.51756 +2008 364 17.99254 +2008 365 30.80281 +2008 366 29.30990 +2009 1 21.71085 +2009 2 14.41472 +2009 3 34.00056 +2009 4 29.40520 +2009 5 30.19404 +2009 6 33.06563 +2009 7 32.65764 +2009 8 20.65556 +2009 9 14.98271 +2009 10 19.63466 +2009 11 26.77337 +2009 12 24.66072 +2009 13 25.15717 +2009 14 30.74043 +2009 15 32.35559 +2009 16 32.31135 +2009 17 17.60072 +2009 18 25.65994 +2009 19 23.70056 +2009 20 30.58612 +2009 21 27.10575 +2009 22 28.96638 +2009 23 28.17141 +2009 24 23.33837 +2009 25 24.29896 +2009 26 24.68845 +2009 27 27.48963 +2009 28 29.57662 +2009 29 28.05970 +2009 30 25.03837 +2009 31 27.39295 +2009 32 26.64844 +2009 33 18.53004 +2009 34 21.53295 +2009 35 17.43543 +2009 36 20.89117 +2009 37 29.09477 +2009 38 28.81889 +2009 39 25.64464 +2009 40 11.01272 +2009 41 16.47847 +2009 42 12.09082 +2009 43 23.56042 +2009 44 22.81694 +2009 45 25.55004 +2009 46 16.59295 +2009 47 18.27075 +2009 48 18.21908 +2009 49 20.68865 +2009 50 2.05046 +2009 51 16.63183 +2009 52 19.40561 +2009 53 19.66447 +2009 54 19.81731 +2009 55 19.07340 +2009 56 17.53998 +2009 57 14.55036 +2009 58 3.24262 +2009 59 18.18858 +2009 60 19.06589 +2009 61 22.59680 +2009 62 24.56136 +2009 63 6.68855 +2009 64 3.15035 +2009 65 11.87724 +2009 66 16.39716 +2009 67 17.29702 +2009 68 15.75832 +2009 69 16.49169 +2009 70 18.21796 +2009 71 10.61804 +2009 72 11.51600 +2009 73 17.20017 +2009 74 17.90467 +2009 75 11.38838 +2009 76 13.18836 +2009 77 16.61705 +2009 78 19.85697 +2009 79 17.13208 +2009 80 17.89586 +2009 81 19.14356 +2009 82 21.14925 +2009 83 21.23263 +2009 84 19.67397 +2009 85 18.87831 +2009 86 11.64396 +2009 87 19.87235 +2009 88 19.32345 +2009 89 12.04831 +2009 90 18.68175 +2009 91 19.53081 +2009 92 17.23697 +2009 93 18.38635 +2009 94 17.71468 +2009 95 18.25943 +2009 96 10.31702 +2009 97 12.15130 +2009 98 12.50113 +2009 99 14.79712 +2009 100 15.24070 +2009 101 16.97138 +2009 102 13.51192 +2009 103 12.79437 +2009 104 13.15345 +2009 105 11.52697 +2009 106 16.04085 +2009 107 15.97968 +2009 108 8.26640 +2009 109 2.03015 +2009 110 14.40547 +2009 111 15.08976 +2009 112 14.47528 +2009 113 9.68293 +2009 114 2.71412 +2009 115 3.14171 +2009 116 9.27685 +2009 117 9.63896 +2009 118 6.07493 +2009 119 10.25585 +2009 120 11.86341 +2009 121 2.88157 +2009 122 12.50484 +2009 123 13.01581 +2009 124 10.25801 +2009 125 8.03962 +2009 126 12.26154 +2009 127 5.04738 +2009 128 11.17817 +2009 129 9.11667 +2009 130 8.06646 +2009 131 8.98923 +2009 132 9.89919 +2009 133 9.45199 +2009 134 7.11342 +2009 135 7.06862 +2009 136 7.38226 +2009 137 6.19091 +2009 138 9.19892 +2009 139 9.25301 +2009 140 11.27537 +2009 141 9.59308 +2009 142 9.93730 +2009 143 2.14563 +2009 144 6.26558 +2009 145 7.28355 +2009 146 8.56343 +2009 147 10.55195 +2009 148 7.24135 +2009 149 5.24912 +2009 150 9.46089 +2009 151 10.11597 +2009 152 10.46356 +2009 153 9.99708 +2009 154 9.72510 +2009 155 8.57437 +2009 156 7.43639 +2009 157 9.85971 +2009 158 6.68248 +2009 159 4.15012 +2009 160 1.60987 +2009 161 6.78332 +2009 162 2.17886 +2009 163 6.68718 +2009 164 7.35366 +2009 165 7.55770 +2009 166 7.65166 +2009 167 9.20074 +2009 168 9.69944 +2009 169 9.81660 +2009 170 8.86196 +2009 171 9.61217 +2009 172 9.15762 +2009 173 9.63749 +2009 174 9.50512 +2009 175 8.76131 +2009 176 1.85133 +2009 177 3.03629 +2009 178 0.94440 +2009 179 1.80519 +2009 180 2.40757 +2009 181 5.47202 +2009 182 9.82256 +2009 183 7.26755 +2009 184 6.04129 +2009 185 4.10750 +2009 186 6.65461 +2009 187 7.18185 +2009 188 7.75893 +2009 189 10.05877 +2009 190 9.70065 +2009 191 3.74411 +2009 192 2.65621 +2009 193 6.72351 +2009 194 7.18808 +2009 195 7.72174 +2009 196 4.19263 +2009 197 3.42263 +2009 198 2.50236 +2009 199 8.28712 +2009 200 8.09684 +2009 201 6.30179 +2009 202 9.37958 +2009 203 6.14209 +2009 204 7.00138 +2009 205 10.68967 +2009 206 10.95785 +2009 207 11.43513 +2009 208 8.93117 +2009 209 3.48379 +2009 210 8.87311 +2009 211 8.22954 +2009 212 5.95773 +2009 213 9.63455 +2009 214 9.69892 +2009 215 10.03311 +2009 216 10.82359 +2009 217 11.90894 +2009 218 12.40505 +2009 219 11.51444 +2009 220 11.91542 +2009 221 6.95019 +2009 222 6.65182 +2009 223 7.75970 +2009 224 6.61752 +2009 225 2.62449 +2009 226 1.72635 +2009 227 4.00072 +2009 228 9.04910 +2009 229 10.76596 +2009 230 2.31485 +2009 231 6.41126 +2009 232 10.59826 +2009 233 11.86263 +2009 234 7.63030 +2009 235 11.27762 +2009 236 4.88583 +2009 237 11.14024 +2009 238 12.06109 +2009 239 12.20780 +2009 240 10.60603 +2009 241 5.27132 +2009 242 13.12796 +2009 243 10.78151 +2009 244 14.75634 +2009 245 16.97285 +2009 246 17.20889 +2009 247 18.70525 +2009 248 18.93162 +2009 249 18.10858 +2009 250 17.30696 +2009 251 19.00005 +2009 252 13.06610 +2009 253 6.93705 +2009 254 7.40749 +2009 255 9.32662 +2009 256 15.19534 +2009 257 15.48979 +2009 258 13.94306 +2009 259 15.49593 +2009 260 13.53335 +2009 261 5.37085 +2009 262 21.11106 +2009 263 18.63579 +2009 264 13.35571 +2009 265 3.83322 +2009 266 3.46245 +2009 267 12.67168 +2009 268 11.64309 +2009 269 16.99134 +2009 270 9.40740 +2009 271 13.03266 +2009 272 13.56713 +2009 273 17.22531 +2009 274 15.53446 +2009 275 20.78594 +2009 276 3.31131 +2009 277 10.15554 +2009 278 17.42532 +2009 279 24.64214 +2009 280 13.99248 +2009 281 6.44288 +2009 282 10.09515 +2009 283 25.65380 +2009 284 13.41187 +2009 285 15.05676 +2009 286 13.36116 +2009 287 3.80734 +2009 288 18.89559 +2009 289 18.17096 +2009 290 17.99721 +2009 291 23.79542 +2009 292 22.00980 +2009 293 25.98342 +2009 294 11.52887 +2009 295 20.25017 +2009 296 22.64570 +2009 297 18.73187 +2009 298 21.90784 +2009 299 20.17518 +2009 300 20.00514 +2009 301 25.95784 +2009 302 18.98787 +2009 303 24.24756 +2009 304 25.71860 +2009 305 20.45148 +2009 306 18.73290 +2009 307 19.64408 +2009 308 6.47377 +2009 309 28.92681 +2009 310 29.14229 +2009 311 24.55142 +2009 312 13.60904 +2009 313 28.30127 +2009 314 13.76706 +2009 315 29.72160 +2009 316 17.77706 +2009 317 25.45551 +2009 318 15.77733 +2009 319 22.26519 +2009 320 16.45376 +2009 321 9.15797 +2009 322 25.85952 +2009 323 24.36238 +2009 324 17.91927 +2009 325 15.41350 +2009 326 16.85111 +2009 327 26.94237 +2009 328 30.57886 +2009 329 31.14651 +2009 330 32.71571 +2009 331 17.74751 +2009 332 24.69675 +2009 333 8.49019 +2009 334 13.61543 +2009 335 6.25565 +2009 336 18.75182 +2009 337 13.66183 +2009 338 16.79772 +2009 339 19.88211 +2009 340 23.74332 +2009 341 31.39560 +2009 342 33.38876 +2009 343 32.32691 +2009 344 27.16796 +2009 345 11.69225 +2009 346 30.10530 +2009 347 23.29128 +2009 348 31.07782 +2009 349 22.71300 +2009 350 27.17228 +2009 351 31.56944 +2009 352 31.91184 +2009 353 25.76647 +2009 354 22.69106 +2009 355 20.07521 +2009 356 19.71631 +2009 357 22.59161 +2009 358 32.95814 +2009 359 30.89811 +2009 360 28.47908 +2009 361 16.54733 +2009 362 12.68724 +2009 363 30.88956 +2009 364 29.72229 +2009 365 33.39878 +2010 1 30.63744 +2010 2 27.80162 +2010 3 20.93878 +2010 4 32.54472 +2010 5 28.51813 +2010 6 19.03357 +2010 7 19.76443 +2010 8 33.30642 +2010 9 30.23706 +2010 10 23.37422 +2010 11 28.62181 +2010 12 24.32074 +2010 13 32.25675 +2010 14 16.92766 +2010 15 17.06167 +2010 16 12.79489 +2010 17 13.16805 +2010 18 19.47292 +2010 19 19.87736 +2010 20 12.66244 +2010 21 18.11843 +2010 22 16.30765 +2010 23 24.54503 +2010 24 25.43452 +2010 25 18.84108 +2010 26 23.11710 +2010 27 24.55574 +2010 28 25.45448 +2010 29 14.01235 +2010 30 14.31873 +2010 31 15.62812 +2010 32 19.51638 +2010 33 21.81747 +2010 34 24.79991 +2010 35 12.56541 +2010 36 19.30314 +2010 37 19.74335 +2010 38 13.06981 +2010 39 24.70366 +2010 40 25.53638 +2010 41 19.17190 +2010 42 21.83587 +2010 43 20.46565 +2010 44 16.86001 +2010 45 10.71861 +2010 46 4.32962 +2010 47 8.90490 +2010 48 8.06509 +2010 49 21.55188 +2010 50 20.73324 +2010 51 26.38284 +2010 52 21.90430 +2010 53 18.66612 +2010 54 17.84471 +2010 55 11.40610 +2010 56 24.52905 +2010 57 25.47037 +2010 58 17.80739 +2010 59 21.42711 +2010 60 16.39665 +2010 61 20.67647 +2010 62 25.52783 +2010 63 25.45897 +2010 64 22.04124 +2010 65 20.51749 +2010 66 21.40258 +2010 67 17.18479 +2010 68 19.30141 +2010 69 19.78940 +2010 70 17.97612 +2010 71 20.57599 +2010 72 22.89272 +2010 73 21.62678 +2010 74 20.53175 +2010 75 17.66137 +2010 76 23.17706 +2010 77 13.60411 +2010 78 12.72421 +2010 79 20.45148 +2010 80 11.50813 +2010 81 9.76363 +2010 82 10.22872 +2010 83 12.38449 +2010 84 16.50853 +2010 85 19.81161 +2010 86 16.25581 +2010 87 19.12585 +2010 88 13.40444 +2010 89 16.13641 +2010 90 17.27922 +2010 91 17.09631 +2010 92 15.63546 +2010 93 11.62365 +2010 94 16.95574 +2010 95 8.59682 +2010 96 13.57629 +2010 97 13.68973 +2010 98 16.50689 +2010 99 17.35603 +2010 100 16.28148 +2010 101 14.23656 +2010 102 12.81442 +2010 103 13.26620 +2010 104 13.28556 +2010 105 16.41790 +2010 106 13.23760 +2010 107 15.85587 +2010 108 10.09670 +2010 109 14.86261 +2010 110 14.69906 +2010 111 13.48842 +2010 112 9.91621 +2010 113 11.50217 +2010 114 11.59030 +2010 115 9.03347 +2010 116 6.67133 +2010 117 11.03544 +2010 118 10.14137 +2010 119 9.03675 +2010 120 10.79844 +2010 121 13.94548 +2010 122 8.77738 +2010 123 13.05081 +2010 124 13.64990 +2010 125 12.39823 +2010 126 11.62961 +2010 127 9.49476 +2010 128 10.65969 +2010 129 8.47217 +2010 130 8.65149 +2010 131 3.61733 +2010 132 8.42909 +2010 133 8.18319 +2010 134 5.54677 +2010 135 8.70083 +2010 136 8.56239 +2010 137 8.94110 +2010 138 10.17127 +2010 139 7.39836 +2010 140 3.41665 +2010 141 9.89660 +2010 142 5.96542 +2010 143 0.70580 +2010 144 7.05777 +2010 145 6.09914 +2010 146 5.53163 +2010 147 6.72572 +2010 148 7.23970 +2010 149 9.32161 +2010 150 9.14864 +2010 151 1.69774 +2010 152 6.44338 +2010 153 7.46140 +2010 154 10.15433 +2010 155 6.72686 +2010 156 1.05092 +2010 157 5.73721 +2010 158 6.80380 +2010 159 9.45052 +2010 160 3.15476 +2010 161 4.63752 +2010 162 5.78628 +2010 163 7.14107 +2010 164 7.50900 +2010 165 9.47298 +2010 166 9.33751 +2010 167 7.36522 +2010 168 7.03430 +2010 169 5.05907 +2010 170 2.57069 +2010 171 6.70925 +2010 172 7.73151 +2010 173 6.46718 +2010 174 3.47671 +2010 175 5.45911 +2010 176 4.20603 +2010 177 7.14238 +2010 178 5.91767 +2010 179 6.47892 +2010 180 6.12730 +2010 181 9.28187 +2010 182 8.04120 +2010 183 7.85128 +2010 184 4.98869 +2010 185 3.17425 +2010 186 6.54075 +2010 187 7.46180 +2010 188 8.56671 +2010 189 7.98141 +2010 190 10.24212 +2010 191 9.96849 +2010 192 9.00081 +2010 193 9.21594 +2010 194 8.52637 +2010 195 8.18026 +2010 196 6.66408 +2010 197 7.08516 +2010 198 8.42962 +2010 199 6.93255 +2010 200 7.55373 +2010 201 5.19896 +2010 202 3.53179 +2010 203 6.97307 +2010 204 9.26372 +2010 205 11.02378 +2010 206 10.37292 +2010 207 8.20114 +2010 208 9.43514 +2010 209 7.71562 +2010 210 11.06369 +2010 211 7.01895 +2010 212 4.58112 +2010 213 5.08032 +2010 214 2.81071 +2010 215 1.90807 +2010 216 10.46278 +2010 217 8.69849 +2010 218 2.85576 +2010 219 9.86550 +2010 220 11.67195 +2010 221 13.23458 +2010 222 12.35606 +2010 223 9.88053 +2010 224 6.57717 +2010 225 0.70630 +2010 226 1.68283 +2010 227 7.04244 +2010 228 10.61009 +2010 229 9.34468 +2010 230 12.39062 +2010 231 7.15948 +2010 232 6.34240 +2010 233 12.22664 +2010 234 11.77736 +2010 235 13.20987 +2010 236 9.87673 +2010 237 9.62073 +2010 238 8.71759 +2010 239 8.58578 +2010 240 10.51790 +2010 241 13.09833 +2010 242 10.19010 +2010 243 15.52988 +2010 244 6.68337 +2010 245 10.99276 +2010 246 17.97587 +2010 247 13.55400 +2010 248 3.91757 +2010 249 5.28541 +2010 250 8.30055 +2010 251 2.54771 +2010 252 14.03300 +2010 253 8.34405 +2010 254 7.77409 +2010 255 12.93252 +2010 256 12.87300 +2010 257 15.75625 +2010 258 3.17390 +2010 259 9.74540 +2010 260 14.66718 +2010 261 15.08250 +2010 262 14.19025 +2010 263 17.66154 +2010 264 19.97352 +2010 265 16.01294 +2010 266 14.99515 +2010 267 8.33368 +2010 268 12.05798 +2010 269 14.95904 +2010 270 19.98864 +2010 271 13.39001 +2010 272 8.52244 +2010 273 10.16418 +2010 274 23.99337 +2010 275 22.11304 +2010 276 23.04573 +2010 277 20.81972 +2010 278 11.89711 +2010 279 16.12967 +2010 280 14.30542 +2010 281 18.73515 +2010 282 19.87995 +2010 283 11.98817 +2010 284 22.28170 +2010 285 7.64649 +2010 286 8.50738 +2010 287 17.40416 +2010 288 20.47792 +2010 289 7.63685 +2010 290 22.74212 +2010 291 15.00725 +2010 292 23.23547 +2010 293 20.73341 +2010 294 23.54478 +2010 295 26.86262 +2010 296 23.12107 +2010 297 25.65518 +2010 298 22.78109 +2010 299 18.82103 +2010 300 17.25304 +2010 301 21.83000 +2010 302 27.17893 +2010 303 24.91214 +2010 304 22.60725 +2010 305 18.91279 +2010 306 17.33521 +2010 307 17.87538 +2010 308 10.34476 +2010 309 22.17257 +2010 310 27.52739 +2010 311 21.71932 +2010 312 18.93715 +2010 313 18.59769 +2010 314 25.21662 +2010 315 20.53339 +2010 316 27.30491 +2010 317 23.64569 +2010 318 11.31028 +2010 319 14.65335 +2010 320 31.20319 +2010 321 25.83438 +2010 322 24.16625 +2010 323 12.99862 +2010 324 21.59205 +2010 325 22.45821 +2010 326 21.92832 +2010 327 19.34902 +2010 328 31.26738 +2010 329 23.84960 +2010 330 31.71390 +2010 331 23.09982 +2010 332 22.40231 +2010 333 21.21949 +2010 334 23.21525 +2010 335 18.29987 +2010 336 24.05203 +2010 337 29.64315 +2010 338 20.51749 +2010 339 28.76273 +2010 340 30.00819 +2010 341 8.55630 +2010 342 15.85025 +2010 343 32.92695 +2010 344 15.18031 +2010 345 31.00455 +2010 346 17.80436 +2010 347 10.49319 +2010 348 23.67032 +2010 349 11.84224 +2010 350 9.15054 +2010 351 6.47393 +2010 352 6.53083 +2010 353 8.09570 +2010 354 17.52192 +2010 355 19.01491 +2010 356 33.33545 +2010 357 20.71613 +2010 358 30.02694 +2010 359 32.04490 +2010 360 22.80442 +2010 361 5.54252 +2010 362 31.96817 +2010 363 23.09481 +2010 364 25.77364 +2010 365 31.73748 +2011 1 26.72024 +2011 2 30.29988 +2011 3 21.14813 +2011 4 26.80206 +2011 5 18.23861 +2011 6 23.52128 +2011 7 30.16500 +2011 8 29.05027 +2011 9 25.03647 +2011 10 32.43663 +2011 11 19.89438 +2011 12 24.43772 +2011 13 24.15545 +2011 14 20.19686 +2011 15 31.88523 +2011 16 31.55052 +2011 17 5.75312 +2011 18 27.03732 +2011 19 29.57144 +2011 20 22.51282 +2011 21 10.09964 +2011 22 2.68848 +2011 23 6.96366 +2011 24 7.11361 +2011 25 22.94758 +2011 26 30.07860 +2011 27 15.95817 +2011 28 25.55297 +2011 29 28.83574 +2011 30 13.52557 +2011 31 31.19412 +2011 32 27.21859 +2011 33 15.90745 +2011 34 15.92171 +2011 35 17.61532 +2011 36 26.50476 +2011 37 15.90468 +2011 38 19.58221 +2011 39 18.73083 +2011 40 9.62159 +2011 41 8.67784 +2011 42 22.76441 +2011 43 23.35306 +2011 44 21.90508 +2011 45 21.47800 +2011 46 18.87900 +2011 47 20.35515 +2011 48 22.20108 +2011 49 20.89765 +2011 50 21.26382 +2011 51 19.78119 +2011 52 17.81663 +2011 53 19.55128 +2011 54 15.84369 +2011 55 22.81012 +2011 56 17.23300 +2011 57 20.50108 +2011 58 18.34436 +2011 59 17.94735 +2011 60 11.71204 +2011 61 19.29165 +2011 62 10.54339 +2011 63 3.40928 +2011 64 11.76854 +2011 65 20.61634 +2011 66 23.78523 +2011 67 21.72122 +2011 68 18.73031 +2011 69 22.48085 +2011 70 18.97551 +2011 71 17.72099 +2011 72 16.28044 +2011 73 15.99420 +2011 74 18.83097 +2011 75 20.09992 +2011 76 14.58311 +2011 77 22.55895 +2011 78 19.27299 +2011 79 4.13950 +2011 80 10.96986 +2011 81 17.70898 +2011 82 16.81914 +2011 83 11.32695 +2011 84 4.32345 +2011 85 7.00701 +2011 86 18.39897 +2011 87 18.32337 +2011 88 19.26063 +2011 89 19.48000 +2011 90 14.27190 +2011 91 5.62063 +2011 92 9.78247 +2011 93 8.65970 +2011 94 13.52765 +2011 95 13.24002 +2011 96 12.75299 +2011 97 15.39691 +2011 98 17.63562 +2011 99 9.92382 +2011 100 10.88372 +2011 101 15.70536 +2011 102 14.63365 +2011 103 11.04348 +2011 104 12.26197 +2011 105 4.33115 +2011 106 12.34112 +2011 107 10.50754 +2011 108 16.28571 +2011 109 12.11820 +2011 110 9.42166 +2011 111 4.06891 +2011 112 8.45852 +2011 113 8.97212 +2011 114 2.40842 +2011 115 4.14293 +2011 116 7.40681 +2011 117 9.88883 +2011 118 13.82849 +2011 119 12.80586 +2011 120 7.62898 +2011 121 3.43661 +2011 122 8.84796 +2011 123 9.63472 +2011 124 10.73062 +2011 125 2.53831 +2011 126 4.64349 +2011 127 9.05498 +2011 128 9.09291 +2011 129 6.90870 +2011 130 2.82626 +2011 131 9.84925 +2011 132 8.05386 +2011 133 8.37977 +2011 134 6.43872 +2011 135 7.86637 +2011 136 6.63574 +2011 137 10.36696 +2011 138 11.43271 +2011 139 6.90480 +2011 140 8.02349 +2011 141 8.47322 +2011 142 6.08303 +2011 143 8.72519 +2011 144 5.14521 +2011 145 0.86165 +2011 146 5.05390 +2011 147 8.68484 +2011 148 10.06482 +2011 149 7.81790 +2011 150 7.65319 +2011 151 9.98456 +2011 152 8.07904 +2011 153 4.81620 +2011 154 1.81995 +2011 155 5.32312 +2011 156 4.24520 +2011 157 5.55034 +2011 158 6.47386 +2011 159 6.23100 +2011 160 1.29907 +2011 161 4.95950 +2011 162 6.10536 +2011 163 7.88225 +2011 164 7.19034 +2011 165 7.68868 +2011 166 8.46654 +2011 167 5.06697 +2011 168 3.40915 +2011 169 4.25614 +2011 170 6.06315 +2011 171 9.28947 +2011 172 5.04477 +2011 173 3.79396 +2011 174 5.06898 +2011 175 7.90665 +2011 176 8.88788 +2011 177 9.26709 +2011 178 6.04212 +2011 179 7.37215 +2011 180 7.97173 +2011 181 9.56595 +2011 182 9.59930 +2011 183 7.22090 +2011 184 5.42438 +2011 185 2.70435 +2011 186 5.96174 +2011 187 6.25304 +2011 188 8.11934 +2011 189 5.42674 +2011 190 6.33227 +2011 191 6.55324 +2011 192 7.47676 +2011 193 6.27866 +2011 194 3.11577 +2011 195 8.87587 +2011 196 10.18008 +2011 197 10.34346 +2011 198 10.52084 +2011 199 10.01307 +2011 200 6.55579 +2011 201 3.98822 +2011 202 4.68840 +2011 203 5.67734 +2011 204 4.75710 +2011 205 8.61107 +2011 206 11.71930 +2011 207 7.36773 +2011 208 8.21510 +2011 209 8.40082 +2011 210 7.87927 +2011 211 12.29282 +2011 212 9.46253 +2011 213 9.21482 +2011 214 9.69071 +2011 215 12.58425 +2011 216 10.52352 +2011 217 7.79236 +2011 218 6.75078 +2011 219 9.74773 +2011 220 9.99138 +2011 221 8.25930 +2011 222 4.26904 +2011 223 8.44275 +2011 224 9.17179 +2011 225 12.12287 +2011 226 12.04554 +2011 227 14.41532 +2011 228 10.93772 +2011 229 11.33628 +2011 230 13.31303 +2011 231 14.83160 +2011 232 15.58570 +2011 233 15.38594 +2011 234 15.53316 +2011 235 9.35608 +2011 236 10.66928 +2011 237 10.81123 +2011 238 9.41648 +2011 239 11.91404 +2011 240 6.96590 +2011 241 8.43483 +2011 242 10.71308 +2011 243 12.52212 +2011 244 14.54466 +2011 245 17.67450 +2011 246 17.43215 +2011 247 12.44169 +2011 248 13.05124 +2011 249 15.98331 +2011 250 11.97020 +2011 251 15.65378 +2011 252 18.90199 +2011 253 3.12485 +2011 254 13.23112 +2011 255 14.52462 +2011 256 16.47933 +2011 257 14.27630 +2011 258 15.77673 +2011 259 14.98772 +2011 260 12.53301 +2011 261 9.53286 +2011 262 17.00810 +2011 263 18.99936 +2011 264 17.75537 +2011 265 16.91116 +2011 266 13.85398 +2011 267 4.46020 +2011 268 19.99711 +2011 269 18.16776 +2011 270 18.98001 +2011 271 19.55232 +2011 272 22.83431 +2011 273 8.16646 +2011 274 10.52499 +2011 275 2.81927 +2011 276 17.51207 +2011 277 16.81413 +2011 278 16.76324 +2011 279 21.04903 +2011 280 16.50197 +2011 281 18.45089 +2011 282 8.02450 +2011 283 13.92111 +2011 284 2.91730 +2011 285 10.34018 +2011 286 18.95841 +2011 287 19.74050 +2011 288 21.83285 +2011 289 11.97253 +2011 290 19.85835 +2011 291 16.15473 +2011 292 17.62560 +2011 293 26.18214 +2011 294 15.50172 +2011 295 11.79248 +2011 296 19.82768 +2011 297 26.38725 +2011 298 19.04990 +2011 299 10.53924 +2011 300 19.59794 +2011 301 11.03198 +2011 302 20.31869 +2011 303 21.38288 +2011 304 9.05844 +2011 305 17.45487 +2011 306 22.71326 +2011 307 24.72327 +2011 308 24.15277 +2011 309 12.79981 +2011 310 27.32702 +2011 311 24.82764 +2011 312 21.44975 +2011 313 25.72983 +2011 314 23.21326 +2011 315 21.30909 +2011 316 22.21932 +2011 317 17.55968 +2011 318 19.39179 +2011 319 22.98344 +2011 320 22.60388 +2011 321 26.01815 +2011 322 27.78071 +2011 323 28.42076 +2011 324 21.21034 +2011 325 26.60532 +2011 326 21.38322 +2011 327 19.42151 +2011 328 22.14829 +2011 329 28.28520 +2011 330 31.18686 +2011 331 19.41900 +2011 332 16.39293 +2011 333 32.63838 +2011 334 26.63963 +2011 335 19.61790 +2011 336 17.02702 +2011 337 9.06725 +2011 338 21.15469 +2011 339 15.65542 +2011 340 23.84562 +2011 341 28.24433 +2011 342 20.16688 +2011 343 17.78017 +2011 344 20.44967 +2011 345 3.89506 +2011 346 8.08048 +2011 347 11.51703 +2011 348 3.70850 +2011 349 20.54160 +2011 350 19.26193 +2011 351 11.67523 +2011 352 18.68305 +2011 353 23.36446 +2011 354 24.27270 +2011 355 19.16888 +2011 356 24.30527 +2011 357 27.40297 +2011 358 19.82750 +2011 359 17.17934 +2011 360 15.44322 +2011 361 17.89992 +2011 362 17.44019 +2011 363 5.94928 +2011 364 4.77972 +2011 365 13.24339 +2012 1 21.19271 +2012 2 11.34812 +2012 3 18.12871 +2012 4 22.67724 +2012 5 20.89498 +2012 6 5.96279 +2012 7 9.75482 +2012 8 23.37993 +2012 9 19.40682 +2012 10 25.70694 +2012 11 21.16740 +2012 12 23.47021 +2012 13 24.16910 +2012 14 19.81748 +2012 15 24.58676 +2012 16 21.80356 +2012 17 21.75975 +2012 18 21.72226 +2012 19 19.97430 +2012 20 30.02538 +2012 21 8.19113 +2012 22 31.37046 +2012 23 25.28202 +2012 24 30.82147 +2012 25 26.12874 +2012 26 11.12478 +2012 27 29.13157 +2012 28 20.79259 +2012 29 16.39976 +2012 30 20.37390 +2012 31 23.73823 +2012 32 12.15778 +2012 33 9.97903 +2012 34 25.97573 +2012 35 27.36694 +2012 36 13.13582 +2012 37 20.65418 +2012 38 21.49373 +2012 39 20.22468 +2012 40 21.50004 +2012 41 16.04500 +2012 42 12.51755 +2012 43 9.04444 +2012 44 19.15566 +2012 45 8.80952 +2012 46 23.09230 +2012 47 18.91305 +2012 48 20.60623 +2012 49 23.70686 +2012 50 19.43810 +2012 51 14.97148 +2012 52 7.08790 +2012 53 4.32214 +2012 54 19.08412 +2012 55 20.26676 +2012 56 21.47429 +2012 57 24.22647 +2012 58 14.88283 +2012 59 20.54514 +2012 60 20.73263 +2012 61 10.40265 +2012 62 17.40804 +2012 63 17.00585 +2012 64 20.70213 +2012 65 17.13182 +2012 66 15.03084 +2012 67 14.01702 +2012 68 23.89271 +2012 69 18.51846 +2012 70 7.24651 +2012 71 8.30474 +2012 72 20.20879 +2012 73 18.72012 +2012 74 9.27141 +2012 75 18.04784 +2012 76 19.57046 +2012 77 11.38674 +2012 78 2.69833 +2012 79 13.64766 +2012 80 8.96849 +2012 81 14.95817 +2012 82 13.47693 +2012 83 12.39278 +2012 84 10.82186 +2012 85 20.43204 +2012 86 17.04102 +2012 87 19.88807 +2012 88 20.25899 +2012 89 14.95048 +2012 90 14.61352 +2012 91 15.55926 +2012 92 10.92390 +2012 93 14.83592 +2012 94 17.39223 +2012 95 15.18687 +2012 96 15.73379 +2012 97 11.54451 +2012 98 11.39763 +2012 99 15.39873 +2012 100 15.78839 +2012 101 9.63066 +2012 102 8.36582 +2012 103 15.92646 +2012 104 16.19006 +2012 105 10.05739 +2012 106 10.27452 +2012 107 13.58450 +2012 108 16.07109 +2012 109 14.83281 +2012 110 14.47070 +2012 111 13.71574 +2012 112 14.04449 +2012 113 10.75395 +2012 114 11.63868 +2012 115 9.00487 +2012 116 9.39488 +2012 117 4.18081 +2012 118 9.67931 +2012 119 9.16773 +2012 120 8.54772 +2012 121 11.25723 +2012 122 11.03069 +2012 123 13.24590 +2012 124 12.93339 +2012 125 13.23372 +2012 126 12.19242 +2012 127 11.73044 +2012 128 7.69411 +2012 129 4.41806 +2012 130 7.77252 +2012 131 9.65736 +2012 132 11.80466 +2012 133 4.77916 +2012 134 3.44413 +2012 135 6.93408 +2012 136 8.91518 +2012 137 9.62116 +2012 138 9.68691 +2012 139 11.21869 +2012 140 11.23476 +2012 141 11.26725 +2012 142 10.92545 +2012 143 10.38917 +2012 144 8.73962 +2012 145 7.15967 +2012 146 8.22900 +2012 147 6.62342 +2012 148 3.51749 +2012 149 10.41301 +2012 150 9.89392 +2012 151 7.44008 +2012 152 10.06836 +2012 153 9.50694 +2012 154 6.80585 +2012 155 8.48125 +2012 156 2.36840 +2012 157 4.99096 +2012 158 7.04563 +2012 159 7.20360 +2012 160 6.82963 +2012 161 7.04323 +2012 162 7.61950 +2012 163 8.94024 +2012 164 9.62574 +2012 165 9.16963 +2012 166 6.42965 +2012 167 9.08332 +2012 168 9.24506 +2012 169 4.04192 +2012 170 5.22698 +2012 171 6.59944 +2012 172 6.22478 +2012 173 7.68436 +2012 174 7.01499 +2012 175 5.92904 +2012 176 7.23355 +2012 177 5.62062 +2012 178 8.06073 +2012 179 7.21079 +2012 180 9.74436 +2012 181 9.67585 +2012 182 9.36783 +2012 183 8.65892 +2012 184 2.02703 +2012 185 6.46452 +2012 186 8.49665 +2012 187 8.40770 +2012 188 10.09895 +2012 189 10.00521 +2012 190 8.91397 +2012 191 9.46443 +2012 192 8.85479 +2012 193 7.89588 +2012 194 7.57353 +2012 195 8.49131 +2012 196 0.88279 +2012 197 0.75381 +2012 198 9.96434 +2012 199 10.98878 +2012 200 10.22406 +2012 201 9.78195 +2012 202 6.29889 +2012 203 2.28623 +2012 204 0.94843 +2012 205 3.85457 +2012 206 4.06396 +2012 207 9.13101 +2012 208 10.38364 +2012 209 9.61701 +2012 210 6.05873 +2012 211 3.69465 +2012 212 10.85823 +2012 213 8.26965 +2012 214 6.60281 +2012 215 8.01442 +2012 216 6.39663 +2012 217 7.98482 +2012 218 10.48118 +2012 219 9.81996 +2012 220 8.95752 +2012 221 10.69952 +2012 222 13.04130 +2012 223 9.24843 +2012 224 7.55603 +2012 225 8.67421 +2012 226 7.57020 +2012 227 8.61322 +2012 228 10.72708 +2012 229 10.71593 +2012 230 10.55229 +2012 231 8.84926 +2012 232 7.89654 +2012 233 12.31753 +2012 234 12.12935 +2012 235 13.02895 +2012 236 12.68819 +2012 237 9.86213 +2012 238 11.60896 +2012 239 5.72194 +2012 240 14.49213 +2012 241 15.98322 +2012 242 10.90092 +2012 243 14.74468 +2012 244 14.89501 +2012 245 7.59149 +2012 246 3.13539 +2012 247 10.56828 +2012 248 13.82625 +2012 249 10.32290 +2012 250 7.16528 +2012 251 10.84908 +2012 252 13.00285 +2012 253 14.84603 +2012 254 14.95878 +2012 255 18.97983 +2012 256 18.66456 +2012 257 13.64541 +2012 258 8.58895 +2012 259 1.41173 +2012 260 12.78832 +2012 261 18.60676 +2012 262 11.35123 +2012 263 13.98263 +2012 264 17.59156 +2012 265 15.76757 +2012 266 15.14454 +2012 267 14.50777 +2012 268 11.00866 +2012 269 11.73096 +2012 270 8.80131 +2012 271 10.55298 +2012 272 14.71764 +2012 273 18.24016 +2012 274 12.28409 +2012 275 16.95030 +2012 276 14.08130 +2012 277 13.51158 +2012 278 15.24925 +2012 279 16.59969 +2012 280 23.59843 +2012 281 8.92460 +2012 282 16.64833 +2012 283 18.01164 +2012 284 19.98397 +2012 285 24.56922 +2012 286 7.76778 +2012 287 20.35601 +2012 288 19.77964 +2012 289 21.72027 +2012 290 17.98623 +2012 291 14.25885 +2012 292 23.14699 +2012 293 19.19566 +2012 294 9.02768 +2012 295 19.51508 +2012 296 8.69702 +2012 297 28.78727 +2012 298 26.12123 +2012 299 21.40482 +2012 300 26.88500 +2012 301 20.54117 +2012 302 19.69669 +2012 303 26.12978 +2012 304 28.11897 +2012 305 26.20538 +2012 306 21.07443 +2012 307 12.83498 +2012 308 21.65314 +2012 309 20.35506 +2012 310 22.04220 +2012 311 24.35305 +2012 312 25.39071 +2012 313 27.25505 +2012 314 30.87936 +2012 315 20.83743 +2012 316 19.21908 +2012 317 19.71743 +2012 318 23.97790 +2012 319 13.15621 +2012 320 23.00556 +2012 321 4.34104 +2012 322 25.02948 +2012 323 28.74070 +2012 324 31.87564 +2012 325 29.50491 +2012 326 25.10387 +2012 327 24.83447 +2012 328 24.99708 +2012 329 28.72022 +2012 330 29.06047 +2012 331 32.18746 +2012 332 26.53966 +2012 333 27.10385 +2012 334 24.86886 +2012 335 31.87970 +2012 336 19.21285 +2012 337 28.76092 +2012 338 24.24591 +2012 339 7.66544 +2012 340 13.42656 +2012 341 24.08391 +2012 342 29.42525 +2012 343 31.47768 +2012 344 31.83909 +2012 345 33.26901 +2012 346 21.34417 +2012 347 13.73000 +2012 348 21.99882 +2012 349 33.47922 +2012 350 30.88627 +2012 351 15.68488 +2012 352 13.73380 +2012 353 24.95362 +2012 354 22.86956 +2012 355 17.78293 +2012 356 24.50321 +2012 357 14.98738 +2012 358 14.77665 +2012 359 22.14354 +2012 360 12.40246 +2012 361 16.48054 +2012 362 8.63162 +2012 363 23.62556 +2012 364 6.70732 +2012 365 30.27188 +2012 366 31.03652 +2013 1 29.97086 +2013 2 8.71163 +2013 3 26.16494 +2013 4 33.62325 +2013 5 22.35902 +2013 6 31.85689 +2013 7 20.00523 +2013 8 31.59043 +2013 9 28.35086 +2013 10 25.86246 +2013 11 30.27180 +2013 12 24.83654 +2013 13 13.53370 +2013 14 17.44269 +2013 15 21.62419 +2013 16 22.11270 +2013 17 23.78074 +2013 18 31.35240 +2013 19 27.12338 +2013 20 26.70244 +2013 21 30.61601 +2013 22 25.59194 +2013 23 22.00971 +2013 24 25.69242 +2013 25 31.20345 +2013 26 30.73041 +2013 27 31.84350 +2013 28 31.29468 +2013 29 27.84637 +2013 30 29.07325 +2013 31 24.14984 +2013 32 18.49262 +2013 33 20.23272 +2013 34 11.70288 +2013 35 16.06608 +2013 36 28.77155 +2013 37 28.64316 +2013 38 24.92580 +2013 39 28.83315 +2013 40 27.89078 +2013 41 24.95923 +2013 42 27.11267 +2013 43 13.96466 +2013 44 29.02988 +2013 45 26.55513 +2013 46 26.42527 +2013 47 25.86479 +2013 48 17.28916 +2013 49 20.50479 +2013 50 25.27623 +2013 51 24.20781 +2013 52 22.68121 +2013 53 25.13203 +2013 54 27.00812 +2013 55 26.81813 +2013 56 26.95274 +2013 57 23.99967 +2013 58 24.56827 +2013 59 22.20696 +2013 60 18.01457 +2013 61 22.83293 +2013 62 23.43954 +2013 63 8.60762 +2013 64 18.15013 +2013 65 23.96917 +2013 66 20.94708 +2013 67 24.46632 +2013 68 24.11148 +2013 69 24.29387 +2013 70 23.70159 +2013 71 17.09951 +2013 72 9.69391 +2013 73 11.88225 +2013 74 19.71570 +2013 75 8.82014 +2013 76 14.86236 +2013 77 17.84488 +2013 78 16.73758 +2013 79 17.90951 +2013 80 14.83263 +2013 81 19.05008 +2013 82 18.40069 +2013 83 16.62180 +2013 84 18.23420 +2013 85 17.47215 +2013 86 18.47638 +2013 87 14.19716 +2013 88 10.60370 +2013 89 10.91612 +2013 90 14.91592 +2013 91 15.24796 +2013 92 13.48229 +2013 93 6.35256 +2013 94 13.16511 +2013 95 14.98591 +2013 96 16.05165 +2013 97 18.20923 +2013 98 16.01666 +2013 99 17.19740 +2013 100 15.28044 +2013 101 12.32202 +2013 102 14.06359 +2013 103 12.84008 +2013 104 7.69358 +2013 105 2.43746 +2013 106 8.36494 +2013 107 12.32902 +2013 108 11.03976 +2013 109 5.29014 +2013 110 4.90692 +2013 111 8.69253 +2013 112 12.10550 +2013 113 9.01584 +2013 114 11.36082 +2013 115 12.11916 +2013 116 11.12115 +2013 117 12.85235 +2013 118 12.93157 +2013 119 10.99889 +2013 120 12.11985 +2013 121 8.69927 +2013 122 8.55404 +2013 123 8.45770 +2013 124 6.82640 +2013 125 2.96193 +2013 126 12.45326 +2013 127 9.52672 +2013 128 6.07716 +2013 129 7.82736 +2013 130 11.97703 +2013 131 11.85564 +2013 132 11.90074 +2013 133 11.01635 +2013 134 8.79371 +2013 135 11.16668 +2013 136 3.73668 +2013 137 3.63760 +2013 138 6.02151 +2013 139 8.84831 +2013 140 4.15220 +2013 141 6.34996 +2013 142 7.02479 +2013 143 10.99189 +2013 144 4.63118 +2013 145 9.63827 +2013 146 8.18448 +2013 147 8.44716 +2013 148 10.10379 +2013 149 9.56448 +2013 150 8.38877 +2013 151 6.97175 +2013 152 7.45580 +2013 153 7.71288 +2013 154 2.17184 +2013 155 6.53511 +2013 156 7.59370 +2013 157 8.87311 +2013 158 8.01911 +2013 159 1.19570 +2013 160 7.08849 +2013 161 5.96038 +2013 162 8.26526 +2013 163 8.37948 +2013 164 8.58639 +2013 165 4.53813 +2013 166 0.86976 +2013 167 3.33255 +2013 168 5.65465 +2013 169 5.85478 +2013 170 6.97907 +2013 171 8.19706 +2013 172 8.50197 +2013 173 5.27839 +2013 174 8.99364 +2013 175 8.31210 +2013 176 7.77462 +2013 177 3.60171 +2013 178 7.12491 +2013 179 9.67447 +2013 180 5.85725 +2013 181 6.50035 +2013 182 8.35535 +2013 183 2.83677 +2013 184 7.16754 +2013 185 4.03080 +2013 186 6.63898 +2013 187 8.13834 +2013 188 8.50088 +2013 189 9.51350 +2013 190 5.33562 +2013 191 7.19843 +2013 192 8.02023 +2013 193 4.08383 +2013 194 8.46304 +2013 195 9.66367 +2013 196 10.32074 +2013 197 8.27948 +2013 198 9.32982 +2013 199 9.09671 +2013 200 3.23552 +2013 201 6.77995 +2013 202 8.41678 +2013 203 8.78809 +2013 204 3.42474 +2013 205 8.43616 +2013 206 8.92452 +2013 207 10.20540 +2013 208 10.44196 +2013 209 11.01505 +2013 210 11.30302 +2013 211 7.92352 +2013 212 6.74835 +2013 213 4.02071 +2013 214 8.00666 +2013 215 6.04130 +2013 216 9.29301 +2013 217 10.33888 +2013 218 8.41228 +2013 219 8.78688 +2013 220 10.09221 +2013 221 2.60792 +2013 222 4.32537 +2013 223 9.75482 +2013 224 9.48318 +2013 225 11.41983 +2013 226 11.51781 +2013 227 7.33564 +2013 228 9.45320 +2013 229 12.83161 +2013 230 10.08996 +2013 231 10.54935 +2013 232 7.80773 +2013 233 7.54231 +2013 234 10.02404 +2013 235 11.42934 +2013 236 6.63036 +2013 237 8.33906 +2013 238 13.27648 +2013 239 11.65424 +2013 240 7.16144 +2013 241 11.52377 +2013 242 12.68611 +2013 243 12.96147 +2013 244 13.80033 +2013 245 17.16690 +2013 246 11.21247 +2013 247 15.29911 +2013 248 17.45323 +2013 249 8.64156 +2013 250 13.41334 +2013 251 14.58812 +2013 252 14.94228 +2013 253 7.12686 +2013 254 2.70951 +2013 255 17.01708 +2013 256 16.69887 +2013 257 14.11068 +2013 258 13.22965 +2013 259 15.60470 +2013 260 21.02682 +2013 261 10.34130 +2013 262 3.50752 +2013 263 7.33187 +2013 264 13.11682 +2013 265 12.68715 +2013 266 4.20116 +2013 267 10.39815 +2013 268 13.18188 +2013 269 19.03876 +2013 270 17.56063 +2013 271 14.12294 +2013 272 12.26327 +2013 273 22.73253 +2013 274 21.76770 +2013 275 23.13265 +2013 276 17.00948 +2013 277 17.52287 +2013 278 13.90124 +2013 279 18.89940 +2013 280 15.61265 +2013 281 15.65050 +2013 282 22.16160 +2013 283 11.89693 +2013 284 17.78397 +2013 285 15.59140 +2013 286 13.60048 +2013 287 11.07864 +2013 288 21.50980 +2013 289 16.08276 +2013 290 22.29682 +2013 291 25.06084 +2013 292 26.33913 +2013 293 25.02118 +2013 294 17.04309 +2013 295 11.03198 +2013 296 19.04697 +2013 297 12.79187 +2013 298 26.18456 +2013 299 18.15765 +2013 300 22.08557 +2013 301 23.89798 +2013 302 22.42547 +2013 303 16.79124 +2013 304 19.88600 +2013 305 26.39745 +2013 306 21.46020 +2013 307 20.52553 +2013 308 19.36259 +2013 309 15.96974 +2013 310 17.85180 +2013 311 21.33657 +2013 312 22.82697 +2013 313 27.26888 +2013 314 29.33004 +2013 315 25.75273 +2013 316 29.77664 +2013 317 28.57723 +2013 318 25.49724 +2013 319 24.42390 +2013 320 23.27659 +2013 321 26.61543 +2013 322 21.93463 +2013 323 24.15632 +2013 324 23.65122 +2013 325 24.58400 +2013 326 29.23897 +2013 327 29.86425 +2013 328 30.53134 +2013 329 14.05650 +2013 330 13.87653 +2013 331 14.90996 +2013 332 21.83579 +2013 333 19.29303 +2013 334 27.02920 +2013 335 29.36382 +2013 336 23.76060 +2013 337 6.68418 +2013 338 3.28538 +2013 339 17.96412 +2013 340 17.03341 +2013 341 22.52949 +2013 342 22.52845 +2013 343 20.38340 +2013 344 29.40538 +2013 345 31.36285 +2013 346 24.03691 +2013 347 27.89951 +2013 348 28.26714 +2013 349 29.50404 +2013 350 26.84638 +2013 351 28.25608 +2013 352 32.35455 +2013 353 33.52683 +2013 354 33.48743 +2013 355 30.94848 +2013 356 9.17698 +2013 357 22.64553 +2013 358 14.76334 +2013 359 19.42428 +2013 360 26.69043 +2013 361 17.59596 +2013 362 9.59031 +2013 363 21.32827 +2013 364 30.90545 +2013 365 22.01360 +2014 1 32.01120 +2014 2 25.56965 +2014 3 20.74412 +2014 4 15.91920 +2014 5 33.77998 +2014 6 32.08283 +2014 7 25.50951 +2014 8 25.22137 +2014 9 24.08737 +2014 10 27.87169 +2014 11 15.83591 +2014 12 16.66371 +2014 13 32.76409 +2014 14 14.20252 +2014 15 23.69589 +2014 16 30.89197 +2014 17 31.55121 +2014 18 31.14703 +2014 19 4.75172 +2014 20 8.21039 +2014 21 17.73490 +2014 22 27.94971 +2014 23 28.25798 +2014 24 28.24848 +2014 25 13.50164 +2014 26 27.36850 +2014 27 31.91210 +2014 28 30.35405 +2014 29 25.82885 +2014 30 24.57795 +2014 31 26.07293 +2014 32 30.36632 +2014 33 28.50362 +2014 34 17.71839 +2014 35 19.26625 +2014 36 24.28713 +2014 37 10.92252 +2014 38 10.24289 +2014 39 21.04220 +2014 40 15.93492 +2014 41 19.70551 +2014 42 16.70700 +2014 43 17.82492 +2014 44 17.38420 +2014 45 26.21799 +2014 46 24.73209 +2014 47 24.05532 +2014 48 20.44803 +2014 49 12.48489 +2014 50 23.66384 +2014 51 21.60631 +2014 52 7.55975 +2014 53 26.35502 +2014 54 27.53300 +2014 55 27.26084 +2014 56 20.44941 +2014 57 25.41309 +2014 58 24.63160 +2014 59 25.92760 +2014 60 22.68605 +2014 61 15.79435 +2014 62 24.94765 +2014 63 21.31428 +2014 64 23.99181 +2014 65 23.73356 +2014 66 22.83293 +2014 67 17.04205 +2014 68 17.94269 +2014 69 18.46947 +2014 70 17.29624 +2014 71 37.24531 +2014 72 14.75280 +2014 73 4.27050 +2014 74 7.80742 +2014 75 17.22937 +2014 76 17.47276 +2014 77 20.09059 +2014 78 20.12740 +2014 79 18.59432 +2014 80 17.49591 +2014 81 15.75107 +2014 82 16.45799 +2014 83 16.81586 +2014 84 20.87718 +2014 85 20.55534 +2014 86 20.13103 +2014 87 18.33296 +2014 88 19.30884 +2014 89 19.43533 +2014 90 16.87236 +2014 91 13.23596 +2014 92 14.05184 +2014 93 16.39146 +2014 94 14.58708 +2014 95 15.17936 +2014 96 11.82462 +2014 97 10.78453 +2014 98 9.15339 +2014 99 6.47465 +2014 100 4.82432 +2014 101 10.85244 +2014 102 7.63613 +2014 103 4.15079 +2014 104 7.72723 +2014 105 5.59112 +2014 106 2.02764 +2014 107 6.61795 +2014 108 7.60494 +2014 109 8.18860 +2014 110 11.41975 +2014 111 12.83481 +2014 112 13.78348 +2014 113 8.17532 +2014 114 10.98714 +2014 115 13.84932 +2014 116 12.97192 +2014 117 11.87749 +2014 118 12.38302 +2014 119 14.09322 +2014 120 13.09038 +2014 121 11.63627 +2014 122 9.14129 +2014 123 12.25886 +2014 124 3.22982 +2014 125 9.93332 +2014 126 6.79310 +2014 127 8.44455 +2014 128 9.03226 +2014 129 11.79291 +2014 130 11.55859 +2014 131 9.46927 +2014 132 7.76347 +2014 133 7.30863 +2014 134 10.31262 +2014 135 11.91214 +2014 136 11.60689 +2014 137 10.88407 +2014 138 10.26242 +2014 139 5.20712 +2014 140 7.22815 +2014 141 9.75819 +2014 142 5.73027 +2014 143 6.24450 +2014 144 7.53703 +2014 145 8.37645 +2014 146 15.04578 +2014 147 10.64612 +2014 148 3.44387 +2014 149 2.68427 +2014 150 10.06119 +2014 151 9.22856 +2014 152 5.86204 +2014 153 6.19472 +2014 154 8.11922 +2014 155 5.87719 +2014 156 5.66119 +2014 157 7.01120 +2014 158 4.76743 +2014 159 2.38805 +2014 160 2.09134 +2014 161 4.15783 +2014 162 1.37899 +2014 163 9.39643 +2014 164 9.61917 +2014 165 6.87162 +2014 166 4.08262 +2014 167 4.57347 +2014 168 7.20827 +2014 169 6.49884 +2014 170 7.68518 +2014 171 6.26546 +2014 172 7.78740 +2014 173 6.20729 +2014 174 3.74098 +2014 175 3.20435 +2014 176 5.21027 +2014 177 5.77117 +2014 178 8.65909 +2014 179 9.48542 +2014 180 1.79393 +2014 181 4.94834 +2014 182 7.37528 +2014 183 8.94456 +2014 184 8.10763 +2014 185 6.70885 +2014 186 9.06828 +2014 187 6.00590 +2014 188 6.12370 +2014 189 3.78733 +2014 190 6.66964 +2014 191 6.24995 +2014 192 2.33185 +2014 193 6.82722 +2014 194 9.71836 +2014 195 10.30951 +2014 196 8.61015 +2014 197 10.15900 +2014 198 10.35426 +2014 199 10.18691 +2014 200 7.26862 +2014 201 7.90778 +2014 202 10.85599 +2014 203 10.18189 +2014 204 10.69917 +2014 205 8.57402 +2014 206 10.81469 +2014 207 10.72380 +2014 208 11.69251 +2014 209 8.91320 +2014 210 7.08799 +2014 211 7.86896 +2014 212 8.53821 +2014 213 4.97651 +2014 214 2.01849 +2014 215 7.38596 +2014 216 11.60179 +2014 217 9.02992 +2014 218 8.44436 +2014 219 10.72708 +2014 220 12.95162 +2014 221 11.56585 +2014 222 7.33398 +2014 223 8.67249 +2014 224 11.20548 +2014 225 10.76181 +2014 226 13.69388 +2014 227 13.98151 +2014 228 14.70606 +2014 229 13.84802 +2014 230 4.17277 +2014 231 7.19353 +2014 232 11.95240 +2014 233 13.12606 +2014 234 15.00267 +2014 235 14.47762 +2014 236 13.57266 +2014 237 10.72509 +2014 238 13.38345 +2014 239 12.79740 +2014 240 11.87447 +2014 241 10.17006 +2014 242 8.24418 +2014 243 4.90272 +2014 244 11.15364 +2014 245 12.23398 +2014 246 10.38701 +2014 247 9.35004 +2014 248 6.59818 +2014 249 15.08700 +2014 250 17.38964 +2014 251 15.18696 +2014 252 9.29863 +2014 253 10.14258 +2014 254 9.14613 +2014 255 8.53419 +2014 256 13.02800 +2014 257 14.40685 +2014 258 10.31478 +2014 259 15.04751 +2014 260 9.01947 +2014 261 12.41793 +2014 262 14.14558 +2014 263 17.14409 +2014 264 16.37237 +2014 265 20.74611 +2014 266 21.82032 +2014 267 21.55870 +2014 268 18.00671 +2014 269 17.61039 +2014 270 13.67963 +2014 271 17.55164 +2014 272 20.29260 +2014 273 18.77593 +2014 274 13.27164 +2014 275 11.65044 +2014 276 19.08369 +2014 277 14.79444 +2014 278 12.69769 +2014 279 24.33154 +2014 280 13.74451 +2014 281 20.81808 +2014 282 18.61220 +2014 283 16.94615 +2014 284 21.34503 +2014 285 18.36510 +2014 286 15.96059 +2014 287 25.36281 +2014 288 20.19704 +2014 289 13.72058 +2014 290 13.40738 +2014 291 13.29782 +2014 292 20.08040 +2014 293 20.98613 +2014 294 9.14164 +2014 295 17.55294 +2014 296 24.03207 +2014 297 26.87800 +2014 298 20.73600 +2014 299 9.27876 +2014 300 8.35301 +2014 301 15.96948 +2014 302 20.63837 +2014 303 18.51060 +2014 304 28.22524 +2014 305 22.90870 +2014 306 5.72466 +2014 307 18.37002 +2014 308 22.27936 +2014 309 22.66574 +2014 310 23.35591 +2014 311 28.54967 +2014 312 23.29811 +2014 313 22.27833 +2014 314 12.86004 +2014 315 24.01255 +2014 316 25.71273 +2014 317 20.93723 +2014 318 12.64594 +2014 319 20.92176 +2014 320 7.40107 +2014 321 26.32548 +2014 322 23.02992 +2014 323 24.57579 +2014 324 25.33101 +2014 325 18.45305 +2014 326 27.11310 +2014 327 22.87259 +2014 328 18.44113 +2014 329 16.10038 +2014 330 31.28769 +2014 331 15.60876 +2014 332 24.00278 +2014 333 23.02525 +2014 334 25.82842 +2014 335 32.54403 +2014 336 30.31188 +2014 337 23.48482 +2014 338 15.29556 +2014 339 25.65380 +2014 340 26.43598 +2014 341 28.38707 +2014 342 10.64223 +2014 343 13.20762 +2014 344 15.26291 +2014 345 10.56482 +2014 346 20.12412 +2014 347 5.99522 +2014 348 23.05895 +2014 349 26.34327 +2014 350 4.93044 +2014 351 20.99624 +2014 352 21.37208 +2014 353 15.47925 +2014 354 18.66568 +2014 355 31.62612 +2014 356 22.52051 +2014 357 21.17889 +2014 358 12.32021 +2014 359 23.01264 +2014 360 20.14148 +2014 361 20.16732 +2014 362 22.43532 +2014 363 24.09108 +2014 364 19.85308 +2014 365 31.80851 +2015 1 23.87750 +2015 2 28.80317 +2015 3 21.94672 +2015 4 29.16985 +2015 5 31.48399 +2015 6 22.41683 +2015 7 25.85771 +2015 8 16.67442 +2015 9 24.08452 +2015 10 32.57963 +2015 11 32.15575 +2015 12 26.56308 +2015 13 25.69432 +2015 14 24.12962 +2015 15 20.17043 +2015 16 20.14779 +2015 17 32.57384 +2015 18 30.57480 +2015 19 23.02137 +2015 20 29.30584 +2015 21 26.40444 +2015 22 19.96980 +2015 23 26.52947 +2015 24 29.73076 +2015 25 31.26185 +2015 26 17.96446 +2015 27 22.59179 +2015 28 24.49362 +2015 29 21.86058 +2015 30 15.04621 +2015 31 11.08961 +2015 32 18.63156 +2015 33 25.58045 +2015 34 16.47104 +2015 35 27.35476 +2015 36 24.48118 +2015 37 29.91263 +2015 38 30.02651 +2015 39 15.56021 +2015 40 20.64675 +2015 41 27.78909 +2015 42 18.93024 +2015 43 17.53462 +2015 44 19.16499 +2015 45 18.60011 +2015 46 19.35300 +2015 47 19.15531 +2015 48 25.13912 +2015 49 27.08113 +2015 50 27.10705 +2015 51 14.71980 +2015 52 14.01970 +2015 53 17.47535 +2015 54 17.47302 +2015 55 17.74621 +2015 56 17.68608 +2015 57 18.56209 +2015 58 25.60222 +2015 59 25.27805 +2015 60 21.55274 +2015 61 14.92128 +2015 62 11.92873 +2015 63 19.16948 +2015 64 10.31400 +2015 65 15.46620 +2015 66 19.42782 +2015 67 19.82275 +2015 68 21.57952 +2015 69 16.26376 +2015 70 12.52169 +2015 71 16.89587 +2015 72 19.05517 +2015 73 12.54960 +2015 74 7.35344 +2015 75 14.60497 +2015 76 16.89543 +2015 77 16.28096 +2015 78 23.14034 +2015 79 19.25424 +2015 80 15.08000 +2015 81 12.19864 +2015 82 11.11752 +2015 83 14.33030 +2015 84 12.91905 +2015 85 12.95464 +2015 86 8.58203 +2015 87 8.15185 +2015 88 13.98410 +2015 89 17.27724 +2015 90 14.80429 +2015 91 11.28004 +2015 92 18.47163 +2015 93 14.38085 +2015 94 10.66850 +2015 95 7.96303 +2015 96 12.47495 +2015 97 8.50637 +2015 98 4.05791 +2015 99 7.91498 +2015 100 10.08539 +2015 101 11.14983 +2015 102 6.79775 +2015 103 16.03757 +2015 104 14.94193 +2015 105 16.82113 +2015 106 11.76794 +2015 107 2.17846 +2015 108 10.37992 +2015 109 10.44369 +2015 110 10.24911 +2015 111 12.24746 +2015 112 11.12789 +2015 113 14.05011 +2015 114 8.96996 +2015 115 10.05454 +2015 116 1.31362 +2015 117 9.95700 +2015 118 10.81944 +2015 119 10.96649 +2015 120 13.81182 +2015 121 11.62305 +2015 122 11.40592 +2015 123 10.34173 +2015 124 8.67802 +2015 125 8.44347 +2015 126 6.77290 +2015 127 1.33017 +2015 128 10.72198 +2015 129 10.55039 +2015 130 6.44744 +2015 131 2.58349 +2015 132 10.74168 +2015 133 5.68187 +2015 134 6.58555 +2015 135 11.75403 +2015 136 9.58772 +2015 137 9.05204 +2015 138 8.41266 +2015 139 9.35600 +2015 140 7.06600 +2015 141 10.28523 +2015 142 0.69009 +2015 143 9.37380 +2015 144 10.53778 +2015 145 7.92490 +2015 146 10.40005 +2015 147 10.63308 +2015 148 10.32005 +2015 149 8.47939 +2015 150 6.93209 +2015 151 2.68762 +2015 152 2.00553 +2015 153 6.53346 +2015 154 5.65649 +2015 155 7.69255 +2015 156 3.50318 +2015 157 7.58392 +2015 158 9.67334 +2015 159 4.47771 +2015 160 5.43387 +2015 161 7.89907 +2015 162 6.19977 +2015 163 6.32710 +2015 164 5.55063 +2015 165 6.57151 +2015 166 9.27202 +2015 167 9.69952 +2015 168 5.09613 +2015 169 4.36226 +2015 170 2.37564 +2015 171 7.03137 +2015 172 9.60094 +2015 173 7.55937 +2015 174 8.06655 +2015 175 9.59740 +2015 176 7.70198 +2015 177 9.32420 +2015 178 8.64078 +2015 179 7.43058 +2015 180 7.04422 +2015 181 7.83103 +2015 182 7.23506 +2015 183 6.86223 +2015 184 1.84974 +2015 185 8.67067 +2015 186 7.39059 +2015 187 5.20555 +2015 188 4.32274 +2015 189 9.70618 +2015 190 9.01074 +2015 191 10.36238 +2015 192 9.99769 +2015 193 10.37189 +2015 194 6.86716 +2015 195 1.67829 +2015 196 8.09210 +2015 197 7.27409 +2015 198 2.16648 +2015 199 9.88839 +2015 200 8.61156 +2015 201 11.13990 +2015 202 11.00287 +2015 203 10.86005 +2015 204 8.70497 +2015 205 8.48008 +2015 206 4.94033 +2015 207 2.79695 +2015 208 7.77365 +2015 209 8.88244 +2015 210 12.04883 +2015 211 7.44875 +2015 212 7.31276 +2015 213 7.28563 +2015 214 6.27744 +2015 215 6.74250 +2015 216 2.08498 +2015 217 9.28187 +2015 218 9.68872 +2015 219 10.69356 +2015 220 10.01082 +2015 221 12.23614 +2015 222 12.91188 +2015 223 13.67124 +2015 224 14.10869 +2015 225 3.77851 +2015 226 10.11977 +2015 227 11.20807 +2015 228 12.98203 +2015 229 7.97948 +2015 230 7.05658 +2015 231 13.51201 +2015 232 13.94332 +2015 233 9.65546 +2015 234 10.32204 +2015 235 12.00632 +2015 236 2.36762 +2015 237 14.55909 +2015 238 16.47467 +2015 239 13.77199 +2015 240 11.91586 +2015 241 6.74997 +2015 242 3.35931 +2015 243 2.34770 +2015 244 10.60716 +2015 245 11.69009 +2015 246 7.99026 +2015 247 13.20140 +2015 248 15.39104 +2015 249 16.61723 +2015 250 14.24736 +2015 251 9.87898 +2015 252 6.50605 +2015 253 17.24276 +2015 254 18.50947 +2015 255 14.69586 +2015 256 10.42874 +2015 257 14.57646 +2015 258 14.24235 +2015 259 13.12744 +2015 260 8.78818 +2015 261 13.54044 +2015 262 8.82688 +2015 263 9.27901 +2015 264 14.89346 +2015 265 15.65551 +2015 266 15.39855 +2015 267 18.56460 +2015 268 18.29304 +2015 269 19.46877 +2015 270 16.00983 +2015 271 18.67476 +2015 272 16.38904 +2015 273 16.23067 +2015 274 12.53647 +2015 275 17.12655 +2015 276 17.45297 +2015 277 23.33776 +2015 278 24.15027 +2015 279 23.82731 +2015 280 15.11196 +2015 281 21.39074 +2015 282 18.48614 +2015 283 22.52612 +2015 284 18.97577 +2015 285 15.69421 +2015 286 16.56729 +2015 287 23.87275 +2015 288 23.42131 +2015 289 22.17076 +2015 290 13.92250 +2015 291 20.58039 +2015 292 19.84539 +2015 293 16.68246 +2015 294 10.85219 +2015 295 17.84860 +2015 296 6.59750 +2015 297 25.67004 +2015 298 19.47223 +2015 299 22.14907 +2015 300 14.53239 +2015 301 15.61455 +2015 302 20.74447 +2015 303 14.14930 +2015 304 27.72593 +2015 305 22.08116 +2015 306 19.12576 +2015 307 8.61638 +2015 308 23.03320 +2015 309 30.45211 +2015 310 30.18721 +2015 311 26.65751 +2015 312 27.35234 +2015 313 24.07631 +2015 314 24.16980 +2015 315 13.27406 +2015 316 27.60497 +2015 317 30.24320 +2015 318 9.08349 +2015 319 3.65472 +2015 320 27.63953 +2015 321 24.74626 +2015 322 21.20990 +2015 323 9.21620 +2015 324 18.46195 +2015 325 24.83162 +2015 326 32.17476 +2015 327 31.25779 +2015 328 26.64533 +2015 329 24.13524 +2015 330 21.58505 +2015 331 12.63617 +2015 332 32.50109 +2015 333 19.97922 +2015 334 8.94110 +2015 335 10.82808 +2015 336 19.79796 +2015 337 19.27005 +2015 338 27.61897 +2015 339 15.85449 +2015 340 21.53874 +2015 341 26.95464 +2015 342 27.62925 +2015 343 29.97855 +2015 344 29.07084 +2015 345 20.14528 +2015 346 21.72156 +2015 347 24.68923 +2015 348 27.44479 +2015 349 22.47238 +2015 350 26.82806 +2015 351 25.31131 +2015 352 30.48978 +2015 353 28.48340 +2015 354 32.43931 +2015 355 32.39283 +2015 356 17.45029 +2015 357 11.25481 +2015 358 20.77548 +2015 359 30.33236 +2015 360 30.79270 +2015 361 27.87756 +2015 362 32.64486 +2015 363 29.90442 +2015 364 24.16392 +2015 365 12.02904 +2016 1 4.71699 +2016 2 13.70529 +2016 3 22.83803 +2016 4 29.59978 +2016 5 31.61488 +2016 6 15.65654 +2016 7 7.06199 +2016 8 30.07040 +2016 9 23.34502 +2016 10 13.15146 +2016 11 15.07939 +2016 12 32.05068 +2016 13 18.25295 +2016 14 17.51371 +2016 15 29.59295 +2016 16 23.10345 +2016 17 12.70892 +2016 18 19.91425 +2016 19 24.03389 +2016 20 31.29693 +2016 21 29.30152 +2016 22 28.86157 +2016 23 26.23864 +2016 24 22.38192 +2016 25 17.83011 +2016 26 15.54898 +2016 27 16.08509 +2016 28 20.38859 +2016 29 24.88061 +2016 30 17.38385 +2016 31 9.33777 +2016 32 20.51983 +2016 33 25.00399 +2016 34 20.61755 +2016 35 8.32590 +2016 36 10.61001 +2016 37 20.39282 +2016 38 19.24724 +2016 39 7.59633 +2016 40 22.38978 +2016 41 18.57574 +2016 42 25.51962 +2016 43 18.06434 +2016 44 20.59586 +2016 45 18.54455 +2016 46 16.34550 +2016 47 7.09531 +2016 48 6.88754 +2016 49 18.96437 +2016 50 18.93741 +2016 51 25.17627 +2016 52 20.49149 +2016 53 10.73226 +2016 54 24.26639 +2016 55 24.46986 +2016 56 24.17334 +2016 57 17.34471 +2016 58 19.15747 +2016 59 4.04482 +2016 60 7.11128 +2016 61 17.80661 +2016 62 22.84805 +2016 63 18.15826 +2016 64 21.01447 +2016 65 18.57764 +2016 66 16.41375 +2016 67 23.39228 +2016 68 20.99641 +2016 69 23.26899 +2016 70 14.79004 +2016 71 23.92347 +2016 72 19.96773 +2016 73 11.43919 +2016 74 12.31027 +2016 75 15.26031 +2016 76 6.91563 +2016 77 8.19942 +2016 78 11.60464 +2016 79 10.09757 +2016 80 13.78901 +2016 81 15.39302 +2016 82 10.99544 +2016 83 1.89822 +2016 84 12.18784 +2016 85 16.40667 +2016 86 14.94055 +2016 87 15.07239 +2016 88 19.59837 +2016 89 18.50714 +2016 90 16.70630 +2016 91 9.93894 +2016 92 6.62559 +2016 93 12.99542 +2016 94 14.00769 +2016 95 13.18360 +2016 96 16.49920 +2016 97 13.00579 +2016 98 8.39370 +2016 99 9.05584 +2016 100 6.43996 +2016 101 10.49898 +2016 102 10.07649 +2016 103 10.48447 +2016 104 17.39500 +2016 105 17.00032 +2016 106 9.12868 +2016 107 3.40975 +2016 108 9.83336 +2016 109 14.27656 +2016 110 11.84172 +2016 111 11.06568 +2016 112 12.23061 +2016 113 10.81616 +2016 114 5.14344 +2016 115 13.57137 +2016 116 14.22516 +2016 117 9.64250 +2016 118 12.58684 +2016 119 11.57397 +2016 120 13.12813 +2016 121 7.95002 +2016 122 7.24031 +2016 123 8.92961 +2016 124 10.49743 +2016 125 5.88476 +2016 126 7.37628 +2016 127 11.12694 +2016 128 7.87764 +2016 129 11.13713 +2016 130 7.85162 +2016 131 3.60847 +2016 132 8.27990 +2016 133 7.52092 +2016 134 11.32453 +2016 135 7.30645 +2016 136 7.69028 +2016 137 11.49604 +2016 138 4.56088 +2016 139 9.37483 +2016 140 8.05199 +2016 141 7.87092 +2016 142 9.58971 +2016 143 6.75933 +2016 144 6.26166 +2016 145 4.08316 +2016 146 7.73755 +2016 147 5.63279 +2016 148 5.27693 +2016 149 5.91426 +2016 150 7.73734 +2016 151 7.30862 +2016 152 9.77806 +2016 153 9.91492 +2016 154 9.74195 +2016 155 9.78342 +2016 156 9.83621 +2016 157 9.78480 +2016 158 8.25542 +2016 159 6.69457 +2016 160 5.03662 +2016 161 3.00946 +2016 162 7.47465 +2016 163 5.36863 +2016 164 9.68008 +2016 165 6.59572 +2016 166 6.89819 +2016 167 6.90237 +2016 168 7.64682 +2016 169 8.09298 +2016 170 8.38885 +2016 171 7.20050 +2016 172 2.96551 +2016 173 1.36331 +2016 174 4.25706 +2016 175 7.26009 +2016 176 2.22070 +2016 177 4.76333 +2016 178 3.72751 +2016 179 6.49061 +2016 180 1.85307 +2016 181 4.16220 +2016 182 9.52828 +2016 183 10.15796 +2016 184 9.29413 +2016 185 9.42166 +2016 186 7.25243 +2016 187 7.83361 +2016 188 4.88552 +2016 189 2.30723 +2016 190 6.96666 +2016 191 7.64611 +2016 192 8.94897 +2016 193 10.29067 +2016 194 7.16600 +2016 195 7.25336 +2016 196 7.33702 +2016 197 9.13827 +2016 198 8.64225 +2016 199 10.21827 +2016 200 5.88981 +2016 201 9.22752 +2016 202 8.92097 +2016 203 6.46451 +2016 204 6.02863 +2016 205 7.83732 +2016 206 8.71448 +2016 207 4.52571 +2016 208 7.50508 +2016 209 2.31242 +2016 210 8.64855 +2016 211 7.45751 +2016 212 9.29966 +2016 213 8.47207 +2016 214 11.20098 +2016 215 4.32065 +2016 216 3.94555 +2016 217 6.57350 +2016 218 8.23288 +2016 219 11.93409 +2016 220 13.18784 +2016 221 12.54234 +2016 222 5.92830 +2016 223 4.42997 +2016 224 10.66159 +2016 225 6.20146 +2016 226 12.86220 +2016 227 13.56549 +2016 228 13.73112 +2016 229 14.64385 +2016 230 14.06445 +2016 231 11.76111 +2016 232 11.59419 +2016 233 13.43477 +2016 234 8.69003 +2016 235 14.68308 +2016 236 8.40208 +2016 237 1.81374 +2016 238 6.32556 +2016 239 13.73846 +2016 240 12.19761 +2016 241 2.69210 +2016 242 13.73190 +2016 243 16.53947 +2016 244 11.90195 +2016 245 8.70532 +2016 246 11.59203 +2016 247 7.48762 +2016 248 11.19632 +2016 249 11.49189 +2016 250 9.76337 +2016 251 10.15736 +2016 252 14.74744 +2016 253 17.58603 +2016 254 18.59656 +2016 255 15.14592 +2016 256 13.63228 +2016 257 8.51869 +2016 258 4.86639 +2016 259 4.78916 +2016 260 3.74750 +2016 261 7.79896 +2016 262 16.59804 +2016 263 13.51780 +2016 264 2.57017 +2016 265 6.07175 +2016 266 12.46864 +2016 267 12.75126 +2016 268 4.76524 +2016 269 7.50266 +2016 270 8.00708 +2016 271 11.50217 +2016 272 3.88830 +2016 273 8.90551 +2016 274 11.73010 +2016 275 6.05144 +2016 276 17.08655 +2016 277 14.89069 +2016 278 19.63284 +2016 279 11.59816 +2016 280 18.63156 +2016 281 21.63015 +2016 282 14.28607 +2016 283 10.92537 +2016 284 14.41333 +2016 285 14.53179 +2016 286 22.11235 +2016 287 14.23086 +2016 288 20.87813 +2016 289 21.22010 +2016 290 25.65372 +2016 291 25.80647 +2016 292 14.67202 +2016 293 11.40402 +2016 294 21.85324 +2016 295 21.10882 +2016 296 19.57003 +2016 297 20.18183 +2016 298 11.15199 +2016 299 18.29805 +2016 300 20.43472 +2016 301 18.35724 +2016 302 26.31493 +2016 303 26.64576 +2016 304 23.21076 +2016 305 20.59508 +2016 306 16.44589 +2016 307 25.76111 +2016 308 22.22847 +2016 309 18.97240 +2016 310 18.98510 +2016 311 12.80275 +2016 312 20.74559 +2016 313 29.65740 +2016 314 25.61596 +2016 315 16.84921 +2016 316 8.66341 +2016 317 22.32291 +2016 318 19.50566 +2016 319 4.71734 +2016 320 21.44007 +2016 321 21.66636 +2016 322 29.73300 +2016 323 16.50067 +2016 324 30.27836 +2016 325 30.77352 +2016 326 31.48131 +2016 327 32.31282 +2016 328 30.25201 +2016 329 9.19305 +2016 330 21.69832 +2016 331 18.17744 +2016 332 24.58356 +2016 333 22.10674 +2016 334 20.15859 +2016 335 17.40848 +2016 336 24.83801 +2016 337 25.08330 +2016 338 23.25352 +2016 339 23.65053 +2016 340 23.77426 +2016 341 20.12895 +2016 342 6.96137 +2016 343 18.07661 +2016 344 9.96011 +2016 345 27.67072 +2016 346 25.33075 +2016 347 28.43787 +2016 348 13.29929 +2016 349 17.00171 +2016 350 31.97163 +2016 351 33.72797 +2016 352 27.37731 +2016 353 15.39562 +2016 354 34.48397 +2016 355 30.93016 +2016 356 23.20220 +2016 357 28.26179 +2016 358 26.75290 +2016 359 29.13520 +2016 360 21.91277 +2016 361 27.41170 +2016 362 31.96161 +2016 363 18.82094 +2016 364 27.77440 +2016 365 25.70193 +2016 366 16.27318 +2017 1 8.01701 +2017 2 11.23476 +2017 3 27.10601 +2017 4 33.86379 +2017 5 25.53431 +2017 6 31.56166 +2017 7 24.82047 +2017 8 25.80673 +2017 9 25.74642 +2017 10 29.83193 +2017 11 28.91583 +2017 12 23.11001 +2017 13 28.37773 +2017 14 10.27028 +2017 15 31.93284 +2017 16 33.03867 +2017 17 25.11994 +2017 18 14.56315 +2017 19 27.73094 +2017 20 20.90716 +2017 21 21.82006 +2017 22 18.63873 +2017 23 30.41574 +2017 24 11.27477 +2017 25 31.27049 +2017 26 31.36614 +2017 27 29.74873 +2017 28 27.20373 +2017 29 26.87308 +2017 30 27.96803 +2017 31 19.69669 +2017 32 16.38585 +2017 33 21.11953 +2017 34 30.59493 +2017 35 29.92058 +2017 36 28.83393 +2017 37 20.19453 +2017 38 10.63005 +2017 39 18.67095 +2017 40 20.78827 +2017 41 26.86409 +2017 42 17.44623 +2017 43 12.55651 +2017 44 12.94626 +2017 45 20.42021 +2017 46 2.91197 +2017 47 8.36384 +2017 48 11.55228 +2017 49 18.54706 +2017 50 17.91789 +2017 51 22.00124 +2017 52 12.96467 +2017 53 22.21240 +2017 54 21.18511 +2017 55 19.90751 +2017 56 24.54745 +2017 57 19.38678 +2017 58 17.37271 +2017 59 16.47510 +2017 60 22.31375 +2017 61 23.93237 +2017 62 15.50966 +2017 63 22.79854 +2017 64 24.11994 +2017 65 10.09264 +2017 66 4.86817 +2017 67 9.27850 +2017 68 14.63728 +2017 69 3.89192 +2017 70 6.04478 +2017 71 18.65998 +2017 72 18.55656 +2017 73 23.00046 +2017 74 21.49304 +2017 75 20.85264 +2017 76 17.39966 +2017 77 21.35367 +2017 78 15.23828 +2017 79 20.83406 +2017 80 10.79438 +2017 81 15.64013 +2017 82 11.47919 +2017 83 11.05609 +2017 84 10.00650 +2017 85 9.94015 +2017 86 14.37437 +2017 87 6.20844 +2017 88 10.99164 +2017 89 17.02020 +2017 90 14.45005 +2017 91 13.68913 +2017 92 12.26915 +2017 93 2.75123 +2017 94 2.52793 +2017 95 13.81709 +2017 96 12.58114 +2017 97 18.11583 +2017 98 14.45455 +2017 99 12.26828 +2017 100 6.85677 +2017 101 2.64343 +2017 102 1.33521 +2017 103 12.55867 +2017 104 10.39401 +2017 105 10.74246 +2017 106 9.86204 +2017 107 12.38233 +2017 108 12.83835 +2017 109 13.45049 +2017 110 15.73033 +2017 111 14.16277 +2017 112 11.43392 +2017 113 11.48204 +2017 114 13.38958 +2017 115 12.81727 +2017 116 12.04839 +2017 117 10.73192 +2017 118 4.13567 +2017 119 7.20751 +2017 120 12.96199 +2017 121 13.91558 +2017 122 10.46010 +2017 123 10.69312 +2017 124 13.27225 +2017 125 12.74927 +2017 126 11.06421 +2017 127 9.42036 +2017 128 9.77037 +2017 129 8.93739 +2017 130 3.35584 +2017 131 1.51343 +2017 132 10.19710 +2017 133 12.24711 +2017 134 8.77945 +2017 135 6.63149 +2017 136 1.91423 +2017 137 4.94518 +2017 138 8.90767 +2017 139 6.26696 +2017 140 11.10620 +2017 141 11.24807 +2017 142 8.31999 +2017 143 4.71741 +2017 144 8.12828 +2017 145 5.12304 +2017 146 1.44967 +2017 147 5.19824 +2017 148 7.53773 +2017 149 5.00938 +2017 150 7.99724 +2017 151 9.08099 +2017 152 7.62003 +2017 153 7.40970 +2017 154 9.97186 +2017 155 5.52852 +2017 156 8.25899 +2017 157 8.21356 +2017 158 9.25646 +2017 159 9.78912 +2017 160 7.36571 +2017 161 9.55740 +2017 162 6.22153 +2017 163 5.84289 +2017 164 8.86404 +2017 165 9.61010 +2017 166 7.23994 +2017 167 6.07740 +2017 168 4.38839 +2017 169 4.65715 +2017 170 8.72510 +2017 171 6.27719 +2017 172 1.02089 +2017 173 1.52466 +2017 174 3.88867 +2017 175 6.29975 +2017 176 9.05178 +2017 177 8.49806 +2017 178 9.10863 +2017 179 8.82740 +2017 180 8.24293 +2017 181 1.55062 +2017 182 4.79374 +2017 183 6.12579 +2017 184 7.78709 +2017 185 6.57552 +2017 186 2.06979 +2017 187 2.34212 +2017 188 6.71335 +2017 189 6.59190 +2017 190 8.69728 +2017 191 8.98033 +2017 192 8.49572 +2017 193 6.12228 +2017 194 4.63817 +2017 195 9.74627 +2017 196 9.57960 +2017 197 7.05275 +2017 198 5.49865 +2017 199 4.32509 +2017 200 4.46175 +2017 201 6.24626 +2017 202 3.42640 +2017 203 5.94410 +2017 204 8.86706 +2017 205 7.32079 +2017 206 9.71628 +2017 207 7.21260 +2017 208 7.34497 +2017 209 11.26820 +2017 210 12.28444 +2017 211 11.59514 +2017 212 5.94078 +2017 213 5.66477 +2017 214 10.09005 +2017 215 11.29740 +2017 216 12.18231 +2017 217 6.81592 +2017 218 9.28022 +2017 219 6.01418 +2017 220 1.02211 +2017 221 8.15950 +2017 222 8.98983 +2017 223 7.62789 +2017 224 11.18845 +2017 225 10.55238 +2017 226 9.27599 +2017 227 8.36321 +2017 228 7.80614 +2017 229 13.25843 +2017 230 7.28321 +2017 231 7.85471 +2017 232 13.53957 +2017 233 13.39649 +2017 234 14.68705 +2017 235 10.97971 +2017 236 11.69433 +2017 237 9.24610 +2017 238 9.99009 +2017 239 2.81433 +2017 240 11.44705 +2017 241 9.32092 +2017 242 11.97971 +2017 243 10.93090 +2017 244 3.97991 +2017 245 8.46860 +2017 246 15.46197 +2017 247 12.50977 +2017 248 6.50374 +2017 249 12.89200 +2017 250 14.57620 +2017 251 8.26216 +2017 252 12.41542 +2017 253 14.54820 +2017 254 15.00034 +2017 255 12.93287 +2017 256 11.60983 +2017 257 16.19214 +2017 258 14.30412 +2017 259 12.89892 +2017 260 15.13089 +2017 261 19.40129 +2017 262 17.67355 +2017 263 5.43228 +2017 264 13.36720 +2017 265 16.25780 +2017 266 11.66089 +2017 267 15.49264 +2017 268 7.75824 +2017 269 11.91914 +2017 270 9.45363 +2017 271 7.76517 +2017 272 17.20725 +2017 273 8.74662 +2017 274 16.60357 +2017 275 15.81422 +2017 276 22.12186 +2017 277 15.43596 +2017 278 5.97588 +2017 279 9.80208 +2017 280 5.12763 +2017 281 11.40731 +2017 282 15.66717 +2017 283 19.58818 +2017 284 19.65332 +2017 285 13.51668 +2017 286 26.35520 +2017 287 22.89790 +2017 288 19.98950 +2017 289 24.11381 +2017 290 17.95020 +2017 291 27.43908 +2017 292 20.29648 +2017 293 21.56509 +2017 294 9.03623 +2017 295 4.62843 +2017 296 22.04220 +2017 297 19.75432 +2017 298 21.48224 +2017 299 8.11445 +2017 300 4.06057 +2017 301 11.97392 +2017 302 18.61946 +2017 303 17.64279 +2017 304 18.68262 +2017 305 16.40088 +2017 306 12.78495 +2017 307 7.85077 +2017 308 17.02849 +2017 309 23.88053 +2017 310 30.31525 +2017 311 16.68972 +2017 312 30.79227 +2017 313 19.46151 +2017 314 17.60815 +2017 315 18.37011 +2017 316 20.61063 +2017 317 20.88245 +2017 318 22.76027 +2017 319 22.59948 +2017 320 27.05754 +2017 321 17.11204 +2017 322 14.96439 +2017 323 28.62311 +2017 324 21.51732 +2017 325 25.85909 +2017 326 25.91188 +2017 327 22.34779 +2017 328 10.18708 +2017 329 13.07526 +2017 330 17.37305 +2017 331 20.25726 +2017 332 21.85358 +2017 333 19.77636 +2017 334 24.03786 +2017 335 24.75973 +2017 336 25.78150 +2017 337 28.21720 +2017 338 21.50306 +2017 339 30.47725 +2017 340 25.76578 +2017 341 14.65525 +2017 342 23.01610 +2017 343 18.99556 +2017 344 24.10655 +2017 345 32.30479 +2017 346 31.09959 +2017 347 28.36607 +2017 348 25.05963 +2017 349 28.72886 +2017 350 21.79457 +2017 351 16.06712 +2017 352 23.65883 +2017 353 31.11160 +2017 354 33.52424 +2017 355 21.54660 +2017 356 7.34403 +2017 357 19.15341 +2017 358 20.68364 +2017 359 13.57111 +2017 360 29.82407 +2017 361 26.42795 +2017 362 25.17705 +2017 363 26.24918 +2017 364 25.48169 +2017 365 10.45932 +2018 1 17.16250 +2018 2 17.19170 +2018 3 4.80309 +2018 4 8.74377 +2018 5 23.22804 +2018 6 13.44375 +2018 7 29.03921 +2018 8 29.91315 +2018 9 23.12712 +2018 10 28.93303 +2018 11 24.83732 +2018 12 21.55818 +2018 13 21.93618 +2018 14 22.18899 +2018 15 20.80581 +2018 16 16.80247 +2018 17 9.83275 +2018 18 13.50907 +2018 19 21.03676 +2018 20 20.43844 +2018 21 8.59193 +2018 22 19.67224 +2018 23 28.47856 +2018 24 22.49847 +2018 25 23.13135 +2018 26 25.34864 +2018 27 27.25471 +2018 28 26.72905 +2018 29 20.43256 +2018 30 20.55361 +2018 31 9.23417 +2018 32 24.39400 +2018 33 21.13111 +2018 34 21.35013 +2018 35 18.75623 +2018 36 24.26881 +2018 37 18.75260 +2018 38 14.35389 +2018 39 6.06893 +2018 40 9.17058 +2018 41 6.47286 +2018 42 8.96979 +2018 43 7.48566 +2018 44 14.02834 +2018 45 27.31450 +2018 46 27.29722 +2018 47 17.51302 +2018 48 19.28768 +2018 49 15.39544 +2018 50 18.62508 +2018 51 20.40336 +2018 52 18.13510 +2018 53 17.66241 +2018 54 21.09698 +2018 55 20.05318 +2018 56 17.70431 +2018 57 4.34435 +2018 58 17.69930 +2018 59 12.77338 +2018 60 10.71498 +2018 61 15.61810 +2018 62 17.15887 +2018 63 20.68140 +2018 64 19.95425 +2018 65 15.18385 +2018 66 18.23092 +2018 67 19.06623 +2018 68 23.89202 +2018 69 19.72236 +2018 70 13.53041 +2018 71 17.14997 +2018 72 22.70065 +2018 73 15.50621 +2018 74 11.76431 +2018 75 12.99845 +2018 76 18.10564 +2018 77 16.54033 +2018 78 17.25883 +2018 79 17.98191 +2018 80 15.35224 +2018 81 13.77950 +2018 82 13.65232 +2018 83 12.52601 +2018 84 16.23776 +2018 85 14.26015 +2018 86 11.96692 +2018 87 11.52308 +2018 88 16.35077 +2018 89 15.11248 +2018 90 17.77550 +2018 91 18.37590 +2018 92 15.10531 +2018 93 11.47236 +2018 94 18.52667 +2018 95 12.17272 +2018 96 13.48652 +2018 97 9.82083 +2018 98 11.77364 +2018 99 6.98554 +2018 100 7.30564 +2018 101 14.03922 +2018 102 11.43919 +2018 103 5.45102 +2018 104 5.87417 +2018 105 5.86901 +2018 106 11.97668 +2018 107 12.72663 +2018 108 11.44135 +2018 109 11.81555 +2018 110 9.27124 +2018 111 12.86522 +2018 112 11.66478 +2018 113 8.53495 +2018 114 13.25125 +2018 115 12.43935 +2018 116 8.71275 +2018 117 2.52942 +2018 118 2.16859 +2018 119 10.09956 +2018 120 9.35453 +2018 121 12.21722 +2018 122 13.45654 +2018 123 12.91222 +2018 124 8.36871 +2018 125 7.34092 +2018 126 12.77484 +2018 127 12.88051 +2018 128 11.32203 +2018 129 8.65089 +2018 130 7.40984 +2018 131 2.48129 +2018 132 3.43000 +2018 133 6.39889 +2018 134 5.21207 +2018 135 6.16792 +2018 136 8.82636 +2018 137 8.76407 +2018 138 5.05413 +2018 139 9.18112 +2018 140 6.88848 +2018 141 6.30404 +2018 142 6.32975 +2018 143 8.04808 +2018 144 6.56548 +2018 145 10.22337 +2018 146 6.81027 +2018 147 10.59826 +2018 148 7.94696 +2018 149 10.33508 +2018 150 9.77158 +2018 151 6.95784 +2018 152 6.83517 +2018 153 2.23565 +2018 154 3.03876 +2018 155 5.39342 +2018 156 7.42453 +2018 157 8.89946 +2018 158 9.10181 +2018 159 9.24290 +2018 160 4.89793 +2018 161 1.98417 +2018 162 2.27079 +2018 163 4.35346 +2018 164 6.14496 +2018 165 7.54669 +2018 166 6.31056 +2018 167 8.03113 +2018 168 3.50774 +2018 169 6.30535 +2018 170 7.34580 +2018 171 7.38370 +2018 172 9.48378 +2018 173 7.46259 +2018 174 7.06698 +2018 175 6.65689 +2018 176 6.11910 +2018 177 9.41674 +2018 178 6.39433 +2018 179 9.27685 +2018 180 9.08116 +2018 181 4.41188 +2018 182 7.62256 +2018 183 9.74376 +2018 184 9.78290 +2018 185 8.21871 +2018 186 9.06846 +2018 187 4.35054 +2018 188 6.10182 +2018 189 5.85860 +2018 190 6.15257 +2018 191 7.25266 +2018 192 9.29543 +2018 193 4.38592 +2018 194 6.47066 +2018 195 3.30335 +2018 196 5.82394 +2018 197 8.68726 +2018 198 8.03466 +2018 199 4.61860 +2018 200 8.01375 +2018 201 7.29733 +2018 202 5.04480 +2018 203 9.46745 +2018 204 10.00140 +2018 205 9.53433 +2018 206 7.83915 +2018 207 7.99498 +2018 208 8.79077 +2018 209 7.71674 +2018 210 12.11440 +2018 211 6.21547 +2018 212 7.57965 +2018 213 8.39608 +2018 214 4.06828 +2018 215 4.24363 +2018 216 2.49269 +2018 217 9.30917 +2018 218 8.29958 +2018 219 4.93945 +2018 220 9.76501 +2018 221 11.92069 +2018 222 12.47046 +2018 223 13.95464 +2018 224 7.20303 +2018 225 7.54664 +2018 226 10.92649 +2018 227 9.48784 +2018 228 7.94408 +2018 229 12.16780 +2018 230 13.31761 +2018 231 8.02164 +2018 232 8.77884 +2018 233 9.22882 +2018 234 11.24254 +2018 235 15.10013 +2018 236 12.63876 +2018 237 14.10895 +2018 238 13.20296 +2018 239 13.09859 +2018 240 2.63898 +2018 241 6.82833 +2018 242 14.28814 +2018 243 14.57058 +2018 244 10.43885 +2018 245 12.38414 +2018 246 11.86782 +2018 247 13.02039 +2018 248 8.54719 +2018 249 14.58026 +2018 250 14.95256 +2018 251 19.69281 +2018 252 16.80713 +2018 253 18.50109 +2018 254 19.53418 +2018 255 19.26055 +2018 256 19.29243 +2018 257 19.21588 +2018 258 11.65968 +2018 259 12.58883 +2018 260 7.94769 +2018 261 12.04857 +2018 262 13.10005 +2018 263 13.85709 +2018 264 15.22031 +2018 265 20.05681 +2018 266 12.62105 +2018 267 15.73318 +2018 268 14.53974 +2018 269 17.47699 +2018 270 18.68046 +2018 271 17.79036 +2018 272 14.43545 +2018 273 13.87601 +2018 274 14.81674 +2018 275 19.10788 +2018 276 14.78987 +2018 277 22.67015 +2018 278 17.01786 +2018 279 9.42192 +2018 280 16.78804 +2018 281 22.58401 +2018 282 14.69189 +2018 283 17.62456 +2018 284 14.70908 +2018 285 19.74050 +2018 286 23.31469 +2018 287 26.11380 +2018 288 24.84009 +2018 289 21.69037 +2018 290 22.81072 +2018 291 28.18403 +2018 292 26.78685 +2018 293 22.60509 +2018 294 21.01689 +2018 295 16.69585 +2018 296 24.55497 +2018 297 14.22135 +2018 298 24.84492 +2018 299 18.85041 +2018 300 18.65756 +2018 301 17.08422 +2018 302 20.32050 +2018 303 22.65477 +2018 304 16.85932 +2018 305 29.61611 +2018 306 8.55365 +2018 307 25.90194 +2018 308 19.38349 +2018 309 27.66156 +2018 310 22.14173 +2018 311 12.70365 +2018 312 15.03559 +2018 313 26.94842 +2018 314 18.43292 +2018 315 7.78801 +2018 316 21.75587 +2018 317 21.98223 +2018 318 20.94828 +2018 319 20.92625 +2018 320 27.38517 +2018 321 20.30607 +2018 322 19.22806 +2018 323 26.26923 +2018 324 18.41296 +2018 325 24.23572 +2018 326 28.83401 +2018 327 8.37324 +2018 328 7.52314 +2018 329 23.34865 +2018 330 21.20662 +2018 331 21.04419 +2018 332 22.98430 +2018 333 21.92927 +2018 334 5.82495 +2018 335 17.62309 +2018 336 15.84282 +2018 337 11.80751 +2018 338 26.19665 +2018 339 25.12417 +2018 340 31.42247 +2018 341 33.20801 +2018 342 30.47121 +2018 343 30.08491 +2018 344 11.77485 +2018 345 17.05234 +2018 346 22.38313 +2018 347 22.62816 +2018 348 22.09801 +2018 349 25.36341 +2018 350 22.31565 +2018 351 32.36380 +2018 352 23.94835 +2018 353 20.96021 +2018 354 22.73728 +2018 355 21.75172 +2018 356 16.38567 +2018 357 6.05300 +2018 358 22.25033 +2018 359 25.17264 +2018 360 21.68908 +2018 361 22.15123 +2018 362 18.59492 +2018 363 28.17504 +2018 364 23.62738 +2018 365 22.62021 +2019 1 26.62321 +2019 2 24.95820 +2019 3 32.54809 +2019 4 23.55463 +2019 5 32.91589 +2019 6 32.08620 +2019 7 33.53106 +2019 8 25.32064 +2019 9 19.15678 +2019 10 25.08944 +2019 11 25.05073 +2019 12 19.80539 +2019 13 11.26915 +2019 14 23.36472 +2019 15 16.94183 +2019 16 28.45990 +2019 17 25.45042 +2019 18 23.60431 +2019 19 28.13244 +2019 20 26.81260 +2019 21 30.30549 +2019 22 30.93742 +2019 23 19.25139 +2019 24 19.76936 +2019 25 28.04354 +2019 26 21.08290 +2019 27 26.99101 +2019 28 24.97643 +2019 29 28.70320 +2019 30 25.23649 +2019 31 18.24371 +2019 32 17.03143 +2019 33 28.83358 +2019 34 28.53170 +2019 35 29.28338 +2019 36 23.37768 +2019 37 11.46796 +2019 38 23.50745 +2019 39 26.65233 +2019 40 26.83428 +2019 41 23.47972 +2019 42 23.33724 +2019 43 28.61914 +2019 44 27.59581 +2019 45 26.47607 +2019 46 29.12216 +2019 47 15.72506 +2019 48 26.11691 +2019 49 27.35225 +2019 50 25.17998 +2019 51 17.21339 +2019 52 7.57559 +2019 53 11.07726 +2019 54 21.50436 +2019 55 23.72181 +2019 56 26.78910 +2019 57 23.34614 +2019 58 26.26638 +2019 59 22.08159 +2019 60 25.69726 +2019 61 25.82479 +2019 62 24.33568 +2019 63 25.95914 +2019 64 24.66046 +2019 65 16.82173 +2019 66 12.28789 +2019 67 16.52357 +2019 68 20.10649 +2019 69 19.27463 +2019 70 16.80964 +2019 71 12.79221 +2019 72 15.38551 +2019 73 13.20728 +2019 74 15.65698 +2019 75 16.79383 +2019 76 7.90900 +2019 77 11.11026 +2019 78 12.41620 +2019 79 19.35490 +2019 80 10.05160 +2019 81 10.39617 +2019 82 9.05196 +2019 83 13.43848 +2019 84 15.39760 +2019 85 14.03957 +2019 86 5.74739 +2019 87 13.48367 +2019 88 11.73277 +2019 89 11.86834 +2019 90 5.85903 +2019 91 19.48182 +2019 92 11.25386 +2019 93 17.87901 +2019 94 14.13858 +2019 95 14.19500 +2019 96 14.83116 +2019 97 13.76533 +2019 98 18.19472 +2019 99 13.31545 +2019 100 7.79337 +2019 101 13.92258 +2019 102 15.39527 +2019 103 16.45160 +2019 104 16.88325 +2019 105 16.67373 +2019 106 16.17278 +2019 107 16.44520 +2019 108 16.00629 +2019 109 15.18463 +2019 110 11.22673 +2019 111 5.99997 +2019 112 11.27485 +2019 113 7.95652 +2019 114 12.07526 +2019 115 12.05600 +2019 116 7.63690 +2019 117 4.93661 +2019 118 4.61671 +2019 119 13.98324 +2019 120 10.84121 +2019 121 13.78287 +2019 122 13.05780 +2019 123 10.44222 +2019 124 9.75750 +2019 125 9.66868 +2019 126 10.40256 +2019 127 7.61653 +2019 128 7.24194 +2019 129 5.17096 +2019 130 6.89784 +2019 131 6.69322 +2019 132 9.92468 +2019 133 7.86313 +2019 134 7.43921 +2019 135 9.04496 +2019 136 11.11683 +2019 137 7.56951 +2019 138 8.01890 +2019 139 11.26319 +2019 140 6.93569 +2019 141 7.82254 +2019 142 7.60667 +2019 143 9.02940 +2019 144 7.80487 +2019 145 9.03830 +2019 146 4.19328 +2019 147 2.24067 +2019 148 8.19920 +2019 149 6.06950 +2019 150 3.08002 +2019 151 7.49228 +2019 152 10.21222 +2019 153 10.26501 +2019 154 5.42832 +2019 155 1.35327 +2019 156 8.69193 +2019 157 8.10495 +2019 158 7.36253 +2019 159 9.43255 +2019 160 6.20617 +2019 161 5.01784 +2019 162 1.67143 +2019 163 6.66521 +2019 164 6.22750 +2019 165 6.22487 +2019 166 7.59721 +2019 167 7.48979 +2019 168 9.60405 +2019 169 9.73296 +2019 170 6.20208 +2019 171 3.01344 +2019 172 6.73114 +2019 173 4.48697 +2019 174 7.74547 +2019 175 9.57295 +2019 176 9.13620 +2019 177 8.35866 +2019 178 7.51948 +2019 179 9.14535 +2019 180 9.86204 +2019 181 3.11904 +2019 182 6.46827 +2019 183 4.07453 +2019 184 1.34088 +2019 185 6.85876 +2019 186 8.47593 +2019 187 9.07900 +2019 188 6.23887 +2019 189 6.01987 +2019 190 5.83850 +2019 191 7.15407 +2019 192 3.07266 +2019 193 6.42807 +2019 194 3.23495 +2019 195 7.70345 +2019 196 3.27992 +2019 197 7.76322 +2019 198 7.35280 +2019 199 3.23002 +2019 200 8.29405 +2019 201 7.06602 +2019 202 11.09255 +2019 203 9.81487 +2019 204 6.85536 +2019 205 7.12937 +2019 206 6.58509 +2019 207 9.74195 +2019 208 8.20567 +2019 209 5.76084 +2019 210 7.68284 +2019 211 9.77037 +2019 212 10.83646 +2019 213 8.42982 +2019 214 10.56499 +2019 215 7.69888 +2019 216 10.98101 +2019 217 9.15045 +2019 218 10.61804 +2019 219 9.38114 +2019 220 3.00827 +2019 221 8.37915 +2019 222 4.25687 +2019 223 8.20027 +2019 224 10.22397 +2019 225 8.90957 +2019 226 10.82920 +2019 227 8.50544 +2019 228 8.70169 +2019 229 11.26094 +2019 230 13.32746 +2019 231 8.37264 +2019 232 5.44883 +2019 233 10.60456 +2019 234 2.78304 +2019 235 14.63469 +2019 236 9.72536 +2019 237 11.55038 +2019 238 11.65640 +2019 239 10.76846 +2019 240 12.41715 +2019 241 12.65864 +2019 242 14.06220 +2019 243 15.71357 +2019 244 11.11501 +2019 245 5.21230 +2019 246 6.09294 +2019 247 11.98100 +2019 248 8.70558 +2019 249 16.66293 +2019 250 9.01463 +2019 251 4.76275 +2019 252 3.75805 +2019 253 15.85725 +2019 254 13.57396 +2019 255 12.38976 +2019 256 11.86393 +2019 257 15.52824 +2019 258 18.05345 +2019 259 11.50286 +2019 260 17.57074 +2019 261 14.83618 +2019 262 18.29598 +2019 263 20.16913 +2019 264 21.21180 +2019 265 12.13816 +2019 266 6.10060 +2019 267 14.24339 +2019 268 18.44338 +2019 269 15.61153 +2019 270 14.16502 +2019 271 13.69414 +2019 272 11.01747 +2019 273 16.10418 +2019 274 14.86391 +2019 275 17.58439 +2019 276 15.53291 +2019 277 13.62364 +2019 278 7.91354 +2019 279 14.05045 +2019 280 11.54529 +2019 281 19.26642 +2019 282 13.89450 +2019 283 4.56718 +2019 284 17.31793 +2019 285 19.11133 +2019 286 8.76839 +2019 287 10.40455 +2019 288 15.12950 +2019 289 19.31878 +2019 290 12.94894 +2019 291 15.89449 +2019 292 20.43922 +2019 293 18.88764 +2019 294 24.25248 +2019 295 22.26830 +2019 296 15.42456 +2019 297 17.75529 +2019 298 27.02272 +2019 299 28.09166 +2019 300 18.46610 +2019 301 20.11116 +2019 302 24.88355 +2019 303 24.57000 +2019 304 18.42765 +2019 305 25.67056 +2019 306 28.87194 +2019 307 29.07153 +2019 308 29.77145 +2019 309 23.20281 +2019 310 29.40961 +2019 311 21.94854 +2019 312 22.32602 +2019 313 8.46216 +2019 314 20.71449 +2019 315 23.74203 +2019 316 24.28324 +2019 317 19.15531 +2019 318 22.84304 +2019 319 18.66551 +2019 320 20.64087 +2019 321 13.26300 +2019 322 27.69327 +2019 323 23.45129 +2019 324 29.44996 +2019 325 30.73948 +2019 326 30.84428 +2019 327 29.37384 +2019 328 29.10470 +2019 329 14.23863 +2019 330 30.52832 +2019 331 24.96960 +2019 332 23.24670 +2019 333 24.01315 +2019 334 23.08435 +2019 335 21.08445 +2019 336 17.53212 +2019 337 24.48706 +2019 338 28.71262 +2019 339 24.81849 +2019 340 23.13438 +2019 341 16.83124 +2019 342 25.79066 +2019 343 31.38255 +2019 344 28.26127 +2019 345 21.55101 +2019 346 25.35183 +2019 347 23.94014 +2019 348 18.23662 +2019 349 13.06117 +2019 350 13.83515 +2019 351 23.14224 +2019 352 29.94114 +2019 353 16.29789 +2019 354 29.61602 +2019 355 34.02899 +2019 356 25.67696 +2019 357 20.77237 +2019 358 18.85611 +2019 359 20.71449 +2019 360 29.52832 +2019 361 31.50991 +2019 362 33.43715 +2019 363 23.80968 +2019 364 26.32452 +2019 365 31.51984 +2020 1 33.36690 +2020 2 30.35362 +2020 3 29.37712 +2020 4 28.68912 +2020 5 28.51900 +2020 6 22.89678 +2020 7 17.01190 +2020 8 27.14653 +2020 9 32.01405 +2020 10 31.50179 +2020 11 32.17432 +2020 12 19.98536 +2020 13 5.84176 +2020 14 31.15800 +2020 15 28.63331 +2020 16 30.46740 +2020 17 24.00615 +2020 18 25.90488 +2020 19 30.89750 +2020 20 24.05678 +2020 21 26.21143 +2020 22 31.23040 +2020 23 26.66114 +2020 24 30.38412 +2020 25 29.43043 +2020 26 27.30940 +2020 27 16.55027 +2020 28 21.27306 +2020 29 18.94424 +2020 30 29.36632 +2020 31 30.41608 +2020 32 29.69568 +2020 33 30.26333 +2020 34 26.82245 +2020 35 30.03463 +2020 36 29.83677 +2020 37 28.48764 +2020 38 19.35101 +2020 39 26.37196 +2020 40 29.21607 +2020 41 29.07032 +2020 42 27.58329 +2020 43 28.14350 +2020 44 22.58980 +2020 45 19.20007 +2020 46 12.55409 +2020 47 14.45973 +2020 48 12.74072 +2020 49 17.16457 +2020 50 25.25066 +2020 51 17.57618 +2020 52 10.35556 +2020 53 22.11494 +2020 54 25.07959 +2020 55 25.09220 +2020 56 21.92227 +2020 57 19.73730 +2020 58 17.99574 +2020 59 13.47296 +2020 60 19.35101 +2020 61 9.08781 +2020 62 19.19998 +2020 63 8.75215 +2020 64 15.65499 +2020 65 22.87950 +2020 66 23.39479 +2020 67 24.46528 +2020 68 13.63314 +2020 69 19.52467 +2020 70 17.21615 +2020 71 23.94611 +2020 72 16.48011 +2020 73 22.75284 +2020 74 22.88304 +2020 75 14.23466 +2020 76 13.51512 +2020 77 21.91951 +2020 78 14.94564 +2020 79 12.98808 +2020 80 19.39291 +2020 81 10.14975 +2020 82 8.21213 +2020 83 13.82486 +2020 84 14.44522 +2020 85 11.77597 +2020 86 11.37007 +2020 87 13.10412 +2020 88 14.82486 +2020 89 12.49318 +2020 90 16.74829 +2020 91 16.76791 +2020 92 17.83979 +2020 93 18.90259 +2020 94 17.18055 +2020 95 18.49020 +2020 96 17.39431 +2020 97 16.65939 +2020 98 8.54760 +2020 99 15.22083 +2020 100 12.74089 +2020 101 14.83462 +2020 102 11.64154 +2020 103 12.74478 +2020 104 13.79808 +2020 105 9.78100 +2020 106 12.09151 +2020 107 6.53817 +2020 108 9.63982 +2020 109 8.88348 +2020 110 9.56120 +2020 111 6.90473 +2020 112 14.19466 +2020 113 6.88568 +2020 114 10.80086 +2020 115 13.41602 +2020 116 14.31795 +2020 117 11.76811 +2020 118 13.87282 +2020 119 10.44801 +2020 120 9.50314 +2020 121 13.01374 +2020 122 6.09837 +2020 123 4.49985 +2020 124 7.87407 +2020 125 8.95018 +2020 126 10.51963 +2020 127 10.75602 +2020 128 10.78013 +2020 129 10.41362 +2020 130 9.56854 +2020 131 10.84916 +2020 132 9.95596 +2020 133 10.22604 +2020 134 9.29344 +2020 135 9.75637 +2020 136 8.66419 +2020 137 9.70315 +2020 138 10.42364 +2020 139 10.49553 +2020 140 11.60551 +2020 141 11.38078 +2020 142 11.12305 +2020 143 9.96918 +2020 144 2.76476 +2020 145 1.47587 +2020 146 6.50267 +2020 147 5.63262 +2020 148 9.90792 +2020 149 4.92434 +2020 150 6.11965 +2020 151 8.27555 +2020 152 2.59159 +2020 153 6.89502 +2020 154 6.41946 +2020 155 5.16840 +2020 156 6.21881 +2020 157 6.86890 +2020 158 8.75647 +2020 159 8.28724 +2020 160 7.51913 +2020 161 9.37526 +2020 162 7.41716 +2020 163 5.47180 +2020 164 5.27871 +2020 165 8.20682 +2020 166 8.31084 +2020 167 5.44756 +2020 168 5.36510 +2020 169 2.39891 +2020 170 3.72503 +2020 171 3.81017 +2020 172 4.47221 +2020 173 8.95985 +2020 174 6.79887 +2020 175 6.47847 +2020 176 2.21369 +2020 177 4.54035 +2020 178 3.18323 +2020 179 7.18835 +2020 180 6.72633 +2020 181 6.27452 +2020 182 9.47903 +2020 183 7.66480 +2020 184 9.52491 +2020 185 7.21156 +2020 186 6.06317 +2020 187 5.57779 +2020 188 5.56316 +2020 189 5.60279 +2020 190 9.99069 +2020 191 9.94386 +2020 192 6.71689 +2020 193 7.12212 +2020 194 2.35704 +2020 195 2.76744 +2020 196 1.12243 +2020 197 3.11768 +2020 198 2.88490 +2020 199 5.44069 +2020 200 9.60224 +2020 201 5.10098 +2020 202 5.07402 +2020 203 7.33295 +2020 204 9.06915 +2020 205 10.19434 +2020 206 8.71698 +2020 207 8.87838 +2020 208 11.31900 +2020 209 6.59015 +2020 210 10.62245 +2020 211 10.19200 +2020 212 6.72796 +2020 213 6.95467 +2020 214 6.39133 +2020 215 9.73642 +2020 216 12.08269 +2020 217 10.74203 +2020 218 5.44647 +2020 219 7.64200 +2020 220 10.84285 +2020 221 9.36343 +2020 222 9.98412 +2020 223 2.76676 +2020 224 11.31702 +2020 225 13.28504 +2020 226 8.96426 +2020 227 14.60549 +2020 228 14.58899 +2020 229 14.03931 +2020 230 10.04590 +2020 231 1.69627 +2020 232 7.11955 +2020 233 8.68977 +2020 234 12.30034 +2020 235 8.07707 +2020 236 9.55005 +2020 237 9.73668 +2020 238 13.69863 +2020 239 11.84561 +2020 240 13.43520 +2020 241 10.86869 +2020 242 11.98705 +2020 243 15.78537 +2020 244 11.04918 +2020 245 16.89431 +2020 246 17.77283 +2020 247 18.42143 +2020 248 14.95532 +2020 249 8.11079 +2020 250 12.38985 +2020 251 19.19575 +2020 252 13.89804 +2020 253 9.89539 +2020 254 17.43483 +2020 255 19.65358 +2020 256 16.26756 +2020 257 11.89927 +2020 258 12.99879 +2020 259 17.78846 +2020 260 14.23889 +2020 261 9.79776 +2020 262 11.88138 +2020 263 16.80912 +2020 264 12.37818 +2020 265 13.01149 +2020 266 9.88736 +2020 267 4.00546 +2020 268 16.96680 +2020 269 15.60470 +2020 270 9.78653 +2020 271 19.10071 +2020 272 19.32975 +2020 273 14.47563 +2020 274 13.11008 +2020 275 16.53195 +2020 276 17.59709 +2020 277 18.80548 +2020 278 24.16971 +2020 279 23.25024 +2020 280 12.90738 +2020 281 16.58154 +2020 282 20.34331 +2020 283 14.71841 +2020 284 10.86601 +2020 285 9.07425 +2020 286 6.30791 +2020 287 22.60872 +2020 288 11.01989 +2020 289 23.62133 +2020 290 26.91844 +2020 291 16.84230 +2020 292 9.72562 +2020 293 7.95051 +2020 294 16.29305 +2020 295 19.85904 +2020 296 20.37666 +2020 297 17.25693 +2020 298 16.69188 +2020 299 18.31991 +2020 300 15.74683 +2020 301 8.60833 +2020 302 9.71706 +2020 303 13.50708 +2020 304 11.31011 +2020 305 23.67827 +2020 306 25.15337 +2020 307 9.30502 +2020 308 19.21104 +2020 309 4.05683 +2020 310 18.17761 +2020 311 20.56622 +2020 312 21.71871 +2020 313 21.15452 +2020 314 15.66743 +2020 315 20.50756 +2020 316 28.76472 +2020 317 27.96517 +2020 318 23.05636 +2020 319 24.55661 +2020 320 22.25975 +2020 321 31.25831 +2020 322 16.83495 +2020 323 26.25610 +2020 324 30.25996 +2020 325 27.07327 +2020 326 28.58458 +2020 327 28.58509 +2020 328 15.35276 +2020 329 11.92657 +2020 330 22.00928 +2020 331 29.52271 +2020 332 32.62758 +2020 333 10.41172 +2020 334 8.56365 +2020 335 20.29121 +2020 336 30.99600 +2020 337 22.20005 +2020 338 33.43680 +2020 339 18.81732 +2020 340 30.62655 +2020 341 19.89671 +2020 342 19.47033 +2020 343 23.03052 +2020 344 21.52146 +2020 345 26.11587 +2020 346 22.31677 +2020 347 31.79606 +2020 348 30.35845 +2020 349 32.41123 +2020 350 33.26357 +2020 351 33.49175 +2020 352 29.38671 +2020 353 23.32748 +2020 354 30.74864 +2020 355 18.39940 +2020 356 19.06356 +2020 357 11.59445 +2020 358 18.65048 +2020 359 31.48373 +2020 360 31.43465 +2020 361 25.19899 +2020 362 28.28382 +2020 363 23.53164 +2020 364 25.06257 +2020 365 30.88990 +2020 366 23.40446 +2021 1 16.89647 +2021 2 10.23624 +2021 3 23.71931 +2021 4 25.90920 +2021 5 30.42040 +2021 6 16.25253 +2021 7 17.18868 +2021 8 25.61959 +2021 9 22.88269 +2021 10 32.16888 +2021 11 24.14206 +2021 12 26.66399 +2021 13 29.52832 +2021 14 27.64826 +2021 15 24.88908 +2021 16 17.48235 +2021 17 25.96303 +2021 18 21.83354 +2021 19 22.67801 +2021 20 23.27849 +2021 21 23.70116 +2021 22 25.82988 +2021 23 21.18182 +2021 24 31.10063 +2021 25 30.76186 +2021 26 28.21090 +2021 27 26.53966 +2021 28 24.50157 +2021 29 25.36782 +2021 30 29.08492 +2021 31 29.78303 +2021 32 28.43009 +2021 33 24.50442 +2021 34 27.86590 +2021 35 25.26388 +2021 36 26.25264 +2021 37 28.77232 +2021 38 16.99419 +2021 39 10.64396 +2021 40 10.10897 +2021 41 11.91361 +2021 42 30.11273 +2021 43 24.57328 +2021 44 24.99396 +2021 45 3.78221 +2021 46 6.60292 +2021 47 28.24874 +2021 48 27.84145 +2021 49 27.59884 +2021 50 26.74987 +2021 51 25.66495 +2021 52 24.44792 +2021 53 16.82087 +2021 54 16.56444 +2021 55 16.60893 +2021 56 17.59571 +2021 57 19.12715 +2021 58 16.42611 +2021 59 18.10201 +2021 60 13.81380 +2021 61 11.82341 +2021 62 11.47971 +2021 63 18.89430 +2021 64 18.99547 +2021 65 18.05017 +2021 66 18.25883 +2021 67 18.49988 +2021 68 11.61700 +2021 69 14.10929 +2021 70 23.61917 +2021 71 24.07908 +2021 72 20.21423 +2021 73 17.19654 +2021 74 11.11199 +2021 75 19.94985 +2021 76 21.01179 +2021 77 17.93094 +2021 78 20.00592 +2021 79 14.68238 +2021 80 21.64467 +2021 81 20.51577 +2021 82 19.13648 +2021 83 15.22619 +2021 84 16.40727 +2021 85 14.57222 +2021 86 10.96269 +2021 87 6.22695 +2021 88 8.05146 +2021 89 4.17795 +2021 90 14.68308 +2021 91 19.04170 +2021 92 18.86181 +2021 93 17.73516 +2021 94 14.65033 +2021 95 16.61014 +2021 96 12.09548 +2021 97 13.01322 +2021 98 9.63827 +2021 99 7.20573 +2021 100 10.59281 +2021 101 10.65995 +2021 102 11.87438 +2021 103 11.70996 +2021 104 11.64231 +2021 105 13.98332 +2021 106 13.45939 +2021 107 12.22629 +2021 108 10.39617 +2021 109 7.20573 +2021 110 9.66142 +2021 111 13.27398 +2021 112 11.38303 +2021 113 12.70909 +2021 114 12.96648 +2021 115 12.38095 +2021 116 9.76605 +2021 117 9.82765 +2021 118 12.43218 +2021 119 8.60896 +2021 120 13.71324 +2021 121 13.97364 +2021 122 13.69198 +2021 123 10.63394 +2021 124 11.31494 +2021 125 8.55791 +2021 126 9.60595 +2021 127 5.48040 +2021 128 5.70398 +2021 129 5.18145 +2021 130 8.95536 +2021 131 7.88761 +2021 132 10.31711 +2021 133 11.99586 +2021 134 9.52491 +2021 135 9.87872 +2021 136 5.65972 +2021 137 7.93369 +2021 138 7.14195 +2021 139 9.57977 +2021 140 7.66970 +2021 141 6.41718 +2021 142 5.15694 +2021 143 6.69433 +2021 144 9.62133 +2021 145 9.05230 +2021 146 9.33690 +2021 147 7.86355 +2021 148 2.01609 +2021 149 6.13163 +2021 150 8.46893 +2021 151 10.05644 +2021 152 8.37918 +2021 153 7.66198 +2021 154 7.94074 +2021 155 6.26549 +2021 156 2.05186 +2021 157 5.07863 +2021 158 7.02830 +2021 159 4.97813 +2021 160 5.51772 +2021 161 5.82736 +2021 162 7.11503 +2021 163 5.07239 +2021 164 1.69902 +2021 165 1.37417 +2021 166 6.40343 +2021 167 6.47144 +2021 168 5.81200 +2021 169 1.66669 +2021 170 4.39182 +2021 171 6.49512 +2021 172 9.13991 +2021 173 7.89033 +2021 174 9.14155 +2021 175 4.73394 +2021 176 4.00794 +2021 177 1.54092 +2021 178 6.01394 +2021 179 8.15964 +2021 180 8.37199 +2021 181 8.91121 +2021 182 9.86386 +2021 183 9.26700 +2021 184 9.06828 +2021 185 9.27478 +2021 186 4.44683 +2021 187 3.38936 +2021 188 8.46720 +2021 189 8.22576 +2021 190 8.26082 +2021 191 7.24573 +2021 192 6.05968 +2021 193 8.49734 +2021 194 10.52317 +2021 195 8.68804 +2021 196 7.86688 +2021 197 0.92724 +2021 198 5.85349 +2021 199 7.40535 +2021 200 7.80185 +2021 201 6.13438 +2021 202 6.38514 +2021 203 8.26575 +2021 204 9.94360 +2021 205 7.34143 +2021 206 2.90208 +2021 207 9.04470 +2021 208 9.85254 +2021 209 7.20482 +2021 210 8.11782 +2021 211 7.72496 +2021 212 11.46891 +2021 213 11.05929 +2021 214 7.32920 +2021 215 12.92639 +2021 216 2.41790 +2021 217 6.85530 +2021 218 9.74195 +2021 219 8.92884 +2021 220 11.46476 +2021 221 13.51944 +2021 222 8.80511 +2021 223 8.73107 +2021 224 4.15341 +2021 225 10.94481 +2021 226 12.54260 +2021 227 8.17468 +2021 228 6.35748 +2021 229 9.92572 +2021 230 12.18447 +2021 231 10.44541 +2021 232 10.78393 +2021 233 13.12572 +2021 234 11.60473 +2021 235 8.19301 +2021 236 14.65888 +2021 237 10.27365 +2021 238 5.55017 +2021 239 9.79335 +2021 240 9.39937 +2021 241 11.38640 +2021 242 7.27193 +2021 243 13.55478 +2021 244 14.96094 +2021 245 15.62103 +2021 246 13.16650 +2021 247 12.25437 +2021 248 11.98722 +2021 249 5.81372 +2021 250 11.56533 +2021 251 13.71989 +2021 252 11.94808 +2021 253 17.63761 +2021 254 12.16443 +2021 255 9.17870 +2021 256 4.59947 +2021 257 3.39656 +2021 258 3.16861 +2021 259 14.21289 +2021 260 15.45316 +2021 261 15.03852 +2021 262 15.51537 +2021 263 12.90349 +2021 264 11.61035 +2021 265 4.05706 +2021 266 19.51474 +2021 267 20.67578 +2021 268 10.79706 +2021 269 15.97121 +2021 270 20.01905 +2021 271 17.15014 +2021 272 8.63049 +2021 273 16.92861 +2021 274 16.63606 +2021 275 15.84481 +2021 276 10.83637 +2021 277 17.20570 +2021 278 9.86679 +2021 279 6.63748 +2021 280 15.16674 +2021 281 20.28015 +2021 282 20.00169 +2021 283 21.10225 +2021 284 18.20612 +2021 285 21.62324 +2021 286 24.68820 +2021 287 24.25308 +2021 288 26.68464 +2021 289 13.39546 +2021 290 19.97646 +2021 291 21.41847 +2021 292 21.75206 +2021 293 11.92052 +2021 294 22.14294 +2021 295 11.60162 +2021 296 5.74338 +2021 297 4.79028 +2021 298 17.84255 +2021 299 11.63030 +2021 300 10.82298 +2021 301 17.07644 +2021 302 14.79194 +2021 303 14.68869 +2021 304 16.64833 +2021 305 25.31071 +2021 306 11.05739 +2021 307 24.22146 +2021 308 13.97131 +2021 309 21.51403 +2021 310 20.46125 +2021 311 22.73270 +2021 312 24.69960 +2021 313 23.88614 +2021 314 23.65667 +2021 315 19.77765 +2021 316 4.11637 +2021 317 13.29290 +2021 318 23.14310 +2021 319 24.19485 +2021 320 21.36750 +2021 321 23.02258 +2021 322 26.75825 +2021 323 29.96836 +2021 324 20.13120 +2021 325 17.48114 +2021 326 13.39399 +2021 327 26.52834 +2021 328 17.60737 +2021 329 29.36244 +2021 330 27.92111 +2021 331 20.70265 +2021 332 30.54404 +2021 333 9.33768 +2021 334 18.56615 +2021 335 20.25302 +2021 336 25.12469 +2021 337 14.16433 +2021 338 22.99838 +2021 339 20.52527 +2021 340 17.32657 +2021 341 22.66687 +2021 342 27.04553 +2021 343 26.38086 +2021 344 22.69443 +2021 345 4.22453 +2021 346 8.01161 +2021 347 6.41861 +2021 348 8.72761 +2021 349 22.25966 +2021 350 26.18179 +2021 351 25.89157 +2021 352 33.44881 +2021 353 32.51249 +2021 354 21.31220 +2021 355 32.55163 +2021 356 27.25946 +2021 357 32.15290 +2021 358 29.59122 +2021 359 28.46379 +2021 360 25.37412 +2021 361 18.54032 +2021 362 30.25218 +2021 363 26.64991 +2021 364 32.04697 +2021 365 33.28586 +2022 1 33.38755 +2022 2 32.95261 +2022 3 33.41727 +2022 4 29.39129 +2022 5 20.29337 +2022 6 22.18484 +2022 7 30.47345 +2022 8 22.26079 +2022 9 26.56688 +2022 10 31.29866 +2022 11 31.32579 +2022 12 29.26610 +2022 13 32.88704 +2022 14 30.04724 +2022 15 31.13813 +2022 16 32.70439 +2022 17 32.53824 +2022 18 29.57489 +2022 19 15.56315 +2022 20 28.05011 +2022 21 27.23820 +2022 22 23.75525 +2022 23 6.61147 +2022 24 15.34516 +2022 25 21.97973 +2022 26 31.26781 +2022 27 31.81404 +2022 28 23.78246 +2022 29 30.27084 +2022 30 27.97883 +2022 31 18.21813 +2022 32 17.46109 +2022 33 17.50067 +2022 34 24.38968 +2022 35 18.66344 +2022 36 3.53442 +2022 37 8.15089 +2022 38 9.27685 +2022 39 13.65967 +2022 40 15.98331 +2022 41 6.30099 +2022 42 11.95007 +2022 43 14.17383 +2022 44 22.11114 +2022 45 27.38120 +2022 46 27.25194 +2022 47 21.10666 +2022 48 20.23091 +2022 49 18.92972 +2022 50 20.93092 +2022 51 18.95547 +2022 52 19.26962 +2022 53 22.55498 +2022 54 26.79022 +2022 55 23.33508 +2022 56 20.53218 +2022 57 21.88071 +2022 58 25.34000 +2022 59 19.36233 +2022 60 21.66627 +2022 61 25.85460 +2022 62 20.47317 +2022 63 15.70812 +2022 64 19.97084 +2022 65 23.40973 +2022 66 19.59837 +2022 67 21.29388 +2022 68 23.62945 +2022 69 19.59690 +2022 70 20.60355 +2022 71 16.76739 +2022 72 19.79519 +2022 73 17.62603 +2022 74 22.99441 +2022 75 21.91709 +2022 76 14.87894 +2022 77 14.23276 +2022 78 14.95567 +2022 79 3.80290 +2022 80 12.28798 +2022 81 1.81863 +2022 82 5.89877 +2022 83 10.03450 +2022 84 18.26652 +2022 85 14.44833 +2022 86 18.27533 +2022 87 14.83445 +2022 88 17.70431 +2022 89 18.56451 +2022 90 14.93873 +2022 91 12.03690 +2022 92 15.63339 +2022 93 16.13209 +2022 94 9.71775 +2022 95 8.04104 +2022 96 15.31328 +2022 97 18.30177 +2022 98 17.93940 +2022 99 17.18807 +2022 100 17.03557 +2022 101 9.12263 +2022 102 3.64508 +2022 103 17.33227 +2022 104 15.71979 +2022 105 10.54296 +2022 106 15.53731 +2022 107 6.70946 +2022 108 4.57310 +2022 109 9.94931 +2022 110 9.78929 +2022 111 3.24590 +2022 112 15.23241 +2022 113 10.54210 +2022 114 11.52766 +2022 115 13.73613 +2022 116 10.27754 +2022 117 12.45508 +2022 118 11.97564 +2022 119 12.18732 +2022 120 8.67646 +2022 121 8.04439 +2022 122 11.65078 +2022 123 11.29308 +2022 124 11.27382 +2022 125 11.92087 +2022 126 12.96873 +2022 127 9.23668 +2022 128 4.94969 +2022 129 10.56689 +2022 130 12.14067 +2022 131 12.40332 +2022 132 12.20305 +2022 133 5.87532 +2022 134 3.46334 +2022 135 4.91808 +2022 136 3.16228 +2022 137 8.12608 +2022 138 3.57429 +2022 139 7.29973 +2022 140 10.07640 +2022 141 7.35744 +2022 142 10.21343 +2022 143 9.24687 +2022 144 9.79024 +2022 145 9.04807 +2022 146 10.74341 +2022 147 10.23849 +2022 148 5.95976 +2022 149 0.74436 +2022 150 6.68746 +2022 151 6.54281 +2022 152 3.54514 +2022 153 5.26922 +2022 154 8.24273 +2022 155 5.94041 +2022 156 2.40665 +2022 157 4.73614 +2022 158 8.17421 +2022 159 2.57009 +2022 160 5.61580 +2022 161 5.55399 +2022 162 3.68066 +2022 163 6.57849 +2022 164 7.78977 +2022 165 7.44808 +2022 166 7.42747 +2022 167 5.65364 +2022 168 3.79299 +2022 169 7.46791 +2022 170 6.50553 +2022 171 8.51515 +2022 172 7.03755 +2022 173 9.24636 +2022 174 5.90759 +2022 175 5.22160 +2022 176 4.45350 +2022 177 8.66393 +2022 178 6.59649 +2022 179 3.17978 +2022 180 9.22208 +2022 181 8.44190 +2022 182 9.83120 +2022 183 11.17549 +2022 184 9.75966 +2022 185 2.11079 +2022 186 5.94996 +2022 187 5.66384 +2022 188 1.00346 +2022 189 7.64842 +2022 190 3.22441 +2022 191 1.60776 +2022 192 1.50393 +2022 193 5.13603 +2022 194 5.23161 +2022 195 5.40111 +2022 196 9.59679 +2022 197 10.32679 +2022 198 5.75961 +2022 199 5.64869 +2022 200 2.10154 +2022 201 7.14657 +2022 202 11.19614 +2022 203 10.31089 +2022 204 5.02060 +2022 205 2.23468 +2022 206 7.33811 +2022 207 6.64689 +2022 208 6.65121 +2022 209 8.81021 +2022 210 7.99964 +2022 211 8.38566 +2022 212 11.28825 +2022 213 7.46917 +2022 214 8.81911 +2022 215 10.57000 +2022 216 11.60940 +2022 217 10.42744 +2022 218 3.75788 +2022 219 12.25826 +2022 220 5.49999 +2022 221 12.16884 +2022 222 12.68724 +2022 223 12.94514 +2022 224 12.98583 +2022 225 14.16390 +2022 226 11.25896 +2022 227 6.13530 +2022 228 7.42977 +2022 229 1.28923 +2022 230 3.71408 +2022 231 7.96269 +2022 232 10.19805 +2022 233 11.50494 +2022 234 11.22785 +2022 235 10.99872 +2022 236 4.96266 +2022 237 8.04253 +2022 238 8.59593 +2022 239 15.66855 +2022 240 13.05945 +2022 241 15.76005 +2022 242 16.05502 +2022 243 12.28764 +2022 244 9.71231 +2022 245 9.92883 +2022 246 14.53274 +2022 247 1.66290 +2022 248 18.57756 +2022 249 10.67999 +2022 250 13.34915 +2022 251 14.74485 +2022 252 5.93821 +2022 253 12.93754 +2022 254 9.69460 +2022 255 14.86849 +2022 256 15.92741 +2022 257 17.31024 +2022 258 18.25304 +2022 259 14.88249 +2022 260 16.17633 +2022 261 8.05373 +2022 262 15.07620 +2022 263 12.98246 +2022 264 6.97162 +2022 265 16.35474 +2022 266 17.34463 +2022 267 16.23456 +2022 268 18.85879 +2022 269 13.99378 +2022 270 10.65891 +2022 271 10.00512 +2022 272 3.57923 +2022 273 4.41933 +2022 274 12.35071 +2022 275 10.64543 +2022 276 20.94483 +2022 277 15.31354 +2022 278 22.93920 +2022 279 24.56628 +2022 280 19.63716 +2022 281 13.73665 +2022 282 13.57456 +2022 283 15.25478 +2022 284 6.23494 +2022 285 11.36454 +2022 286 14.61862 +2022 287 12.22802 +2022 288 21.76079 +2022 289 18.09829 +2022 290 23.52050 +2022 291 24.08616 +2022 292 17.90986 +2022 293 18.81481 +2022 294 28.39640 +2022 295 27.68204 +2022 296 27.47244 +2022 297 17.57065 +2022 298 10.56033 +2022 299 19.23264 +2022 300 18.91979 +2022 301 13.11690 +2022 302 3.24922 +2022 303 11.29628 +2022 304 21.65815 +2022 305 24.54615 +2022 306 6.75987 +2022 307 21.02691 +2022 308 28.26887 +2022 309 17.46040 +2022 310 12.91784 +2022 311 22.17897 +2022 312 16.21521 +2022 313 23.59126 +2022 314 4.82897 +2022 315 20.04843 +2022 316 20.16230 +2022 317 21.46124 +2022 318 17.58707 +2022 319 20.35653 +2022 320 12.88630 +2022 321 20.43049 +2022 322 20.93472 +2022 323 19.21830 +2022 324 13.67107 +2022 325 16.82009 +2022 326 24.32678 +2022 327 18.20966 +2022 328 24.15718 +2022 329 20.99339 +2022 330 17.56002 +2022 331 22.06907 +2022 332 20.19479 +2022 333 16.29461 +2022 334 21.53736 +2022 335 30.33418 +2022 336 24.43573 +2022 337 32.71830 +2022 338 30.83841 +2022 339 20.68062 +2022 340 12.14464 +2022 341 17.88117 +2022 342 6.52222 +2022 343 15.25530 +2022 344 13.41377 +2022 345 28.22196 +2022 346 10.68371 +2022 347 5.36092 +2022 348 4.98557 +2022 349 13.35960 +2022 350 11.48282 +2022 351 10.80726 +2022 352 22.37656 +2022 353 16.51752 +2022 354 24.89417 +2022 355 22.13680 +2022 356 25.01617 +2022 357 21.19634 +2022 358 28.12674 +2022 359 27.58951 +2022 360 32.71622 +2022 361 30.74587 +2022 362 21.24049 +2022 363 33.03901 +2022 364 26.20477 +2022 365 27.84326 +2023 1 18.35214 +2023 2 20.69772 +2023 3 11.86877 +2023 4 10.14915 +2023 5 8.10169 +2023 6 6.69226 +2023 7 26.25437 +2023 8 20.31540 +2023 9 4.53392 +2023 10 7.51073 +2023 11 10.01428 +2023 12 24.96839 +2023 13 20.63025 +2023 14 22.61183 +2023 15 25.22042 +2023 16 20.85091 +2023 17 24.75550 +2023 18 21.49943 +2023 19 27.18161 +2023 20 22.71802 +2023 21 19.18685 +2023 22 25.52904 +2023 23 13.80689 +2023 24 14.08199 +2023 25 21.55490 +2023 26 3.79180 +2023 27 7.11117 +2023 28 8.52584 +2023 29 20.09474 +2023 30 11.81382 +2023 31 6.84265 +2023 32 7.20275 +2023 33 10.16833 +2023 34 18.51906 +2023 35 17.20544 +2023 36 7.20908 +2023 37 20.14710 +2023 38 23.21248 +2023 39 26.59643 +2023 40 23.08193 +2023 41 20.04091 +2023 42 4.83343 +2023 43 2.81284 +2023 44 10.15304 +2023 45 23.86437 +2023 46 16.68635 +2023 47 23.74920 +2023 48 25.08581 +2023 49 18.54611 +2023 50 25.91654 +2023 51 19.37373 +2023 52 18.03885 +2023 53 13.78037 +2023 54 10.87214 +2023 55 15.86511 +2023 56 20.35938 +2023 57 6.99134 +2023 58 18.72184 +2023 59 20.81661 +2023 60 23.58003 +2023 61 19.70317 +2023 62 19.73151 +2023 63 17.28233 +2023 64 15.74986 +2023 65 21.75301 +2023 66 23.21179 +2023 67 18.62473 +2023 68 10.59117 +2023 69 19.77013 +2023 70 21.07391 +2023 71 11.94791 +2023 72 23.63507 +2023 73 22.71197 +2023 74 15.80481 +2023 75 7.07707 +2023 76 17.49237 +2023 77 13.68006 +2023 78 21.12964 +2023 79 8.14881 +2023 80 17.07186 +2023 81 21.34331 +2023 82 19.87304 +2023 83 14.16113 +2023 84 13.47201 +2023 85 13.03119 +2023 86 13.48324 +2023 87 20.42539 +2023 88 17.26635 +2023 89 19.75501 +2023 90 9.39220 +2023 91 12.23934 +2023 92 17.48200 +2023 93 16.55018 +2023 94 18.54965 +2023 95 6.45930 +2023 96 14.69664 +2023 97 11.11251 +2023 98 14.52021 +2023 99 13.43339 +2023 100 10.74686 +2023 101 9.36239 +2023 102 12.96950 +2023 103 11.72258 +2023 104 14.23414 +2023 105 11.31278 +2023 106 10.28238 +2023 107 10.14051 +2023 108 10.04892 +2023 109 8.87786 +2023 110 6.05586 +2023 111 2.73129 +2023 112 8.27186 +2023 113 13.61448 +2023 114 12.06204 +2023 115 11.66158 +2023 116 13.02005 +2023 117 12.67799 +2023 118 6.01372 +2023 119 5.10657 +2023 120 2.25908 +2023 121 5.43447 +2023 122 1.90383 +2023 123 6.59839 +2023 124 6.56526 +2023 125 6.59820 +2023 126 4.44009 +2023 127 7.33131 +2023 128 5.16476 +2023 129 6.13923 +2023 130 9.62220 +2023 131 11.62477 +2023 132 11.91093 +2023 133 8.56342 +2023 134 7.82821 +2023 135 10.72786 +2023 136 10.60430 +2023 137 7.54298 +2023 138 3.64377 +2023 139 4.59947 +2023 140 8.58641 +2023 141 6.54438 +2023 142 8.21593 +2023 143 10.57925 +2023 144 10.66712 +2023 145 9.58677 +2023 146 8.58966 +2023 147 7.61481 +2023 148 1.44696 +2023 149 7.24166 +2023 150 9.00841 +2023 151 6.94320 +2023 152 5.07856 +2023 153 8.00969 +2023 154 6.33900 +2023 155 3.43219 +2023 156 8.43956 +2023 157 8.10308 +2023 158 9.34278 +2023 159 8.98379 +2023 160 9.55809 +2023 161 9.46633 +2023 162 8.00741 +2023 163 9.70402 +2023 164 9.45631 +2023 165 9.47298 +2023 166 6.66039 +2023 167 4.96327 +2023 168 4.81602 +2023 169 4.97575 +2023 170 6.70303 +2023 171 6.20067 +2023 172 3.95676 +2023 173 5.49319 +2023 174 2.79459 +2023 175 7.50165 +2023 176 6.92892 +2023 177 7.53440 +2023 178 8.44101 +2023 179 7.10306 +2023 180 6.48429 +2023 181 7.67927 +2023 182 7.61563 +2023 183 6.06600 +2023 184 7.54947 +2023 185 6.65482 +2023 186 9.68311 +2023 187 5.08307 +2023 188 4.03307 +2023 189 2.96546 +2023 190 6.60376 +2023 191 7.21937 +2023 192 6.84648 +2023 193 6.78175 +2023 194 7.16130 +2023 195 8.00543 +2023 196 6.18951 +2023 197 8.91233 +2023 198 7.12552 +2023 199 7.90348 +2023 200 7.39395 +2023 201 4.77652 +2023 202 9.38805 +2023 203 9.80009 +2023 204 6.60772 +2023 205 8.52143 +2023 206 10.17878 +2023 207 8.12894 +2023 208 9.37112 +2023 209 11.84129 +2023 210 8.73409 +2023 211 6.10537 +2023 212 7.06874 +2023 213 7.85760 +2023 214 11.26915 +2023 215 12.63393 +2023 216 12.34043 +2023 217 10.06301 +2023 218 5.99518 +2023 219 7.57628 +2023 220 11.68232 +2023 221 8.81470 +2023 222 10.89478 +2023 223 8.72061 +2023 224 9.19642 +2023 225 7.82406 +2023 226 11.73511 +2023 227 11.71610 +2023 228 12.84224 +2023 229 12.50968 +2023 230 6.05185 +2023 231 3.77081 +2023 232 11.83308 +2023 233 15.85803 +2023 234 14.15163 +2023 235 13.18179 +2023 236 13.41783 +2023 237 11.72448 +2023 238 12.69527 +2023 239 10.65010 +2023 240 16.64505 +2023 241 14.26032 +2023 242 16.22151 +2023 243 16.51916 +2023 244 13.52566 +2023 245 14.72990 +2023 246 7.99134 +2023 247 5.62861 +2023 248 8.51126 +2023 249 8.40886 +2023 250 16.62034 +2023 251 16.93267 +2023 252 12.53716 +2023 253 11.64663 +2023 254 14.04657 +2023 255 13.56290 +2023 256 14.58544 +2023 257 14.40651 +2023 258 18.81818 +2023 259 15.99039 +2023 260 14.12139 +2023 261 20.40656 +2023 262 19.81290 +2023 263 18.68132 +2023 264 12.48376 +2023 265 6.01476 +2023 266 6.47020 +2023 267 4.65498 +2023 268 11.19390 +2023 269 12.33377 +2023 270 14.61473 +2023 271 16.58102 +2023 272 17.25261 +2023 273 17.05519 +2023 274 16.83124 +2023 275 23.47246 +2023 276 24.68007 +2023 277 23.39142 +2023 278 16.71123 +2023 279 5.93414 +2023 280 17.81464 +2023 281 21.75716 +2023 282 14.87946 +2023 283 23.27772 +2023 284 13.85631 +2023 285 17.77663 +2023 286 9.98991 +2023 287 18.33736 +2023 288 24.22120 +2023 289 16.53955 +2023 290 19.32751 +2023 291 17.51751 +2023 292 20.52190 +2023 293 17.46991 +2023 294 18.31015 +2023 295 18.80029 +2023 296 13.96319 +2023 297 17.93647 +2023 298 15.67944 +2023 299 11.18111 +2023 300 24.58400 +2023 301 23.18345 +2023 302 6.77799 +2023 303 8.42403 +2023 304 20.83959 +2023 305 23.65044 +2023 306 10.81806 +2023 307 18.79131 +2023 308 22.61192 +2023 309 20.53538 +2023 310 17.81240 +2023 311 21.53822 +2023 312 21.51939 +2023 313 29.99376 +2023 314 27.27890 +2023 315 29.42482 +2023 316 30.11610 +2023 317 18.32682 +2023 318 21.07840 +2023 319 19.49996 +2023 320 10.54322 +2023 321 3.71460 +2023 322 6.16688 +2023 323 17.53661 +2023 324 23.14621 +2023 325 21.52803 +2023 326 21.69072 +2023 327 23.05092 +2023 328 19.79821 +2023 329 25.11518 +2023 330 32.60719 +2023 331 14.15845 +2023 332 20.82093 +2023 333 25.00001 +2023 334 22.71197 +2023 335 20.17466 +2023 336 7.17125 +2023 337 18.32129 +2023 338 12.72180 +2023 339 18.72184 +2023 340 27.29048 +2023 341 21.92210 +2023 342 20.58636 +2023 343 14.37385 +2023 344 12.66322 +2023 345 23.49588 +2023 346 22.90948 +2023 347 32.51025 +2023 348 30.39276 +2023 349 29.93743 +2023 350 26.09539 +2023 351 19.97231 +2023 352 23.90809 +2023 353 23.03623 +2023 354 26.80854 +2023 355 20.81428 +2023 356 15.81448 +2023 357 10.38960 +2023 358 10.32039 +2023 359 21.55939 +2023 360 29.36753 +2023 361 12.96147 +2023 362 6.18331 +2023 363 25.25818 +2023 364 15.62112 +2023 365 33.18270 diff --git a/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.tem b/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.tem new file mode 100644 index 00000000..7ea49264 --- /dev/null +++ b/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.tem @@ -0,0 +1,16074 @@ +IDera5.tem: Temperature data - file written by R +nbyr tstep lat lon elev + 44 1 -38.136 176.250 280.000 +1980 1 14.38810 14.38810 +1980 2 13.18960 13.18960 +1980 3 13.76390 13.76390 +1980 4 14.38780 14.38780 +1980 5 14.98280 14.98280 +1980 6 15.20960 15.20960 +1980 7 15.74280 15.74280 +1980 8 16.28400 16.28400 +1980 9 17.09400 17.09400 +1980 10 18.98650 18.98650 +1980 11 16.94010 16.94010 +1980 12 19.34510 19.34510 +1980 13 19.18800 19.18800 +1980 14 19.71550 19.71550 +1980 15 17.74260 17.74260 +1980 16 12.70560 12.70560 +1980 17 12.25690 12.25690 +1980 18 14.92850 14.92850 +1980 19 16.53390 16.53390 +1980 20 14.62760 14.62760 +1980 21 16.76270 16.76270 +1980 22 15.48190 15.48190 +1980 23 15.20880 15.20880 +1980 24 16.77240 16.77240 +1980 25 16.79620 16.79620 +1980 26 18.76650 18.76650 +1980 27 19.72490 19.72490 +1980 28 19.29760 19.29760 +1980 29 19.59070 19.59070 +1980 30 19.81510 19.81510 +1980 31 20.36330 20.36330 +1980 32 19.82900 19.82900 +1980 33 18.03400 18.03400 +1980 34 17.79870 17.79870 +1980 35 18.98310 18.98310 +1980 36 20.11560 20.11560 +1980 37 19.34120 19.34120 +1980 38 18.36740 18.36740 +1980 39 18.25310 18.25310 +1980 40 18.21560 18.21560 +1980 41 14.70860 14.70860 +1980 42 14.86450 14.86450 +1980 43 15.22410 15.22410 +1980 44 15.68340 15.68340 +1980 45 16.44840 16.44840 +1980 46 16.55220 16.55220 +1980 47 17.42030 17.42030 +1980 48 16.71080 16.71080 +1980 49 16.87620 16.87620 +1980 50 17.31040 17.31040 +1980 51 16.07110 16.07110 +1980 52 15.37780 15.37780 +1980 53 16.28290 16.28290 +1980 54 14.34340 14.34340 +1980 55 15.03690 15.03690 +1980 56 14.08370 14.08370 +1980 57 14.90620 14.90620 +1980 58 15.22490 15.22490 +1980 59 14.39520 14.39520 +1980 60 14.01580 14.01580 +1980 61 15.24910 15.24910 +1980 62 16.40900 16.40900 +1980 63 15.52260 15.52260 +1980 64 15.58240 15.58240 +1980 65 14.90610 14.90610 +1980 66 14.47180 14.47180 +1980 67 15.29820 15.29820 +1980 68 15.26290 15.26290 +1980 69 15.48680 15.48680 +1980 70 15.68680 15.68680 +1980 71 15.19270 15.19270 +1980 72 14.13010 14.13010 +1980 73 12.73150 12.73150 +1980 74 12.27520 12.27520 +1980 75 14.31390 14.31390 +1980 76 11.54470 11.54470 +1980 77 10.26860 10.26860 +1980 78 13.03340 13.03340 +1980 79 15.45100 15.45100 +1980 80 12.31460 12.31460 +1980 81 11.18250 11.18250 +1980 82 13.34330 13.34330 +1980 83 13.74020 13.74020 +1980 84 14.00170 14.00170 +1980 85 13.02940 13.02940 +1980 86 13.19660 13.19660 +1980 87 13.43030 13.43030 +1980 88 14.66180 14.66180 +1980 89 15.73260 15.73260 +1980 90 15.73050 15.73050 +1980 91 11.48560 11.48560 +1980 92 11.77150 11.77150 +1980 93 10.13550 10.13550 +1980 94 10.31140 10.31140 +1980 95 10.47640 10.47640 +1980 96 11.33730 11.33730 +1980 97 13.41940 13.41940 +1980 98 13.36600 13.36600 +1980 99 13.01040 13.01040 +1980 100 11.98530 11.98530 +1980 101 12.11200 12.11200 +1980 102 11.57040 11.57040 +1980 103 11.22660 11.22660 +1980 104 11.04930 11.04930 +1980 105 11.49140 11.49140 +1980 106 11.73710 11.73710 +1980 107 12.15320 12.15320 +1980 108 11.14720 11.14720 +1980 109 10.79220 10.79220 +1980 110 9.87127 9.87127 +1980 111 10.89860 10.89860 +1980 112 11.73550 11.73550 +1980 113 11.20960 11.20960 +1980 114 12.02760 12.02760 +1980 115 14.33370 14.33370 +1980 116 13.86920 13.86920 +1980 117 14.56420 14.56420 +1980 118 14.95490 14.95490 +1980 119 9.89472 9.89472 +1980 120 10.81650 10.81650 +1980 121 10.36360 10.36360 +1980 122 9.57144 9.57144 +1980 123 9.58009 9.58009 +1980 124 10.51650 10.51650 +1980 125 9.92915 9.92915 +1980 126 10.00280 10.00280 +1980 127 9.79175 9.79175 +1980 128 9.37990 9.37990 +1980 129 9.56323 9.56323 +1980 130 9.87616 9.87616 +1980 131 9.01776 9.01776 +1980 132 10.10640 10.10640 +1980 133 9.05744 9.05744 +1980 134 11.46960 11.46960 +1980 135 12.73590 12.73590 +1980 136 11.17190 11.17190 +1980 137 10.72430 10.72430 +1980 138 11.50460 11.50460 +1980 139 11.46630 11.46630 +1980 140 9.75197 9.75197 +1980 141 10.27680 10.27680 +1980 142 8.19314 8.19314 +1980 143 11.68840 11.68840 +1980 144 11.95300 11.95300 +1980 145 11.48030 11.48030 +1980 146 10.36270 10.36270 +1980 147 10.30900 10.30900 +1980 148 9.45061 9.45061 +1980 149 9.07688 9.07688 +1980 150 8.18196 8.18196 +1980 151 7.85259 7.85259 +1980 152 10.28890 10.28890 +1980 153 12.39590 12.39590 +1980 154 12.21780 12.21780 +1980 155 12.66890 12.66890 +1980 156 10.07830 10.07830 +1980 157 9.68069 9.68069 +1980 158 9.55092 9.55092 +1980 159 9.15026 9.15026 +1980 160 7.42830 7.42830 +1980 161 6.75394 6.75394 +1980 162 10.16060 10.16060 +1980 163 8.16256 8.16256 +1980 164 6.70616 6.70616 +1980 165 5.73721 5.73721 +1980 166 4.35556 4.35556 +1980 167 4.53129 4.53129 +1980 168 6.05678 6.05678 +1980 169 5.74304 5.74304 +1980 170 6.02671 6.02671 +1980 171 6.43116 6.43116 +1980 172 6.80961 6.80961 +1980 173 8.15897 8.15897 +1980 174 7.59926 7.59926 +1980 175 7.64337 7.64337 +1980 176 8.59390 8.59390 +1980 177 6.69302 6.69302 +1980 178 4.95470 4.95470 +1980 179 5.42081 5.42081 +1980 180 8.20211 8.20211 +1980 181 10.33750 10.33750 +1980 182 10.93350 10.93350 +1980 183 8.73578 8.73578 +1980 184 9.48932 9.48932 +1980 185 8.80929 8.80929 +1980 186 7.47874 7.47874 +1980 187 7.83133 7.83133 +1980 188 7.49497 7.49497 +1980 189 7.20767 7.20767 +1980 190 9.10662 9.10662 +1980 191 7.00751 7.00751 +1980 192 4.45973 4.45973 +1980 193 4.24005 4.24005 +1980 194 6.00853 6.00853 +1980 195 7.36445 7.36445 +1980 196 6.32186 6.32186 +1980 197 4.49262 4.49262 +1980 198 4.77869 4.77869 +1980 199 4.02292 4.02292 +1980 200 4.44533 4.44533 +1980 201 6.90774 6.90774 +1980 202 6.97329 6.97329 +1980 203 7.99462 7.99462 +1980 204 8.28540 8.28540 +1980 205 8.20497 8.20497 +1980 206 5.69465 5.69465 +1980 207 5.02791 5.02791 +1980 208 7.18591 7.18591 +1980 209 6.59862 6.59862 +1980 210 5.39261 5.39261 +1980 211 4.40575 4.40575 +1980 212 5.93336 5.93336 +1980 213 8.37301 8.37301 +1980 214 6.32344 6.32344 +1980 215 6.71723 6.71723 +1980 216 6.97901 6.97901 +1980 217 7.78169 7.78169 +1980 218 8.04077 8.04077 +1980 219 6.31915 6.31915 +1980 220 4.79392 4.79392 +1980 221 5.80968 5.80968 +1980 222 5.51662 5.51662 +1980 223 4.98415 4.98415 +1980 224 7.18694 7.18694 +1980 225 9.26917 9.26917 +1980 226 7.98345 7.98345 +1980 227 6.67641 6.67641 +1980 228 8.57055 8.57055 +1980 229 4.42739 4.42739 +1980 230 3.65010 3.65010 +1980 231 5.22007 5.22007 +1980 232 8.48979 8.48979 +1980 233 6.94603 6.94603 +1980 234 5.98290 5.98290 +1980 235 8.26931 8.26931 +1980 236 9.30676 9.30676 +1980 237 9.24062 9.24062 +1980 238 10.55800 10.55800 +1980 239 11.37350 11.37350 +1980 240 7.21990 7.21990 +1980 241 6.35736 6.35736 +1980 242 7.41224 7.41224 +1980 243 8.21577 8.21577 +1980 244 8.70781 8.70781 +1980 245 10.60850 10.60850 +1980 246 9.79886 9.79886 +1980 247 10.46420 10.46420 +1980 248 9.72485 9.72485 +1980 249 7.70738 7.70738 +1980 250 7.54864 7.54864 +1980 251 8.02466 8.02466 +1980 252 8.94338 8.94338 +1980 253 10.36750 10.36750 +1980 254 8.38768 8.38768 +1980 255 10.56990 10.56990 +1980 256 10.49680 10.49680 +1980 257 6.94365 6.94365 +1980 258 7.17378 7.17378 +1980 259 9.19439 9.19439 +1980 260 9.14131 9.14131 +1980 261 10.38800 10.38800 +1980 262 10.11710 10.11710 +1980 263 10.04450 10.04450 +1980 264 9.64397 9.64397 +1980 265 10.05790 10.05790 +1980 266 10.74450 10.74450 +1980 267 10.62030 10.62030 +1980 268 11.08020 11.08020 +1980 269 10.57820 10.57820 +1980 270 10.00150 10.00150 +1980 271 8.61496 8.61496 +1980 272 10.00770 10.00770 +1980 273 10.10280 10.10280 +1980 274 12.17140 12.17140 +1980 275 13.37160 13.37160 +1980 276 13.25270 13.25270 +1980 277 11.98290 11.98290 +1980 278 9.59296 9.59296 +1980 279 10.74650 10.74650 +1980 280 11.64470 11.64470 +1980 281 12.94410 12.94410 +1980 282 12.48960 12.48960 +1980 283 13.17400 13.17400 +1980 284 10.22350 10.22350 +1980 285 10.10250 10.10250 +1980 286 10.37940 10.37940 +1980 287 8.77719 8.77719 +1980 288 11.59590 11.59590 +1980 289 11.15980 11.15980 +1980 290 9.79110 9.79110 +1980 291 9.06174 9.06174 +1980 292 10.38200 10.38200 +1980 293 10.00300 10.00300 +1980 294 10.62330 10.62330 +1980 295 12.59620 12.59620 +1980 296 13.49570 13.49570 +1980 297 11.45280 11.45280 +1980 298 13.63630 13.63630 +1980 299 14.65710 14.65710 +1980 300 13.40670 13.40670 +1980 301 13.67360 13.67360 +1980 302 12.57370 12.57370 +1980 303 11.99700 11.99700 +1980 304 11.84270 11.84270 +1980 305 12.01560 12.01560 +1980 306 11.42190 11.42190 +1980 307 13.06470 13.06470 +1980 308 13.07750 13.07750 +1980 309 13.26880 13.26880 +1980 310 12.88560 12.88560 +1980 311 11.27260 11.27260 +1980 312 13.74120 13.74120 +1980 313 11.42610 11.42610 +1980 314 9.36047 9.36047 +1980 315 9.22504 9.22504 +1980 316 11.98950 11.98950 +1980 317 13.01580 13.01580 +1980 318 12.62220 12.62220 +1980 319 15.12490 15.12490 +1980 320 12.32050 12.32050 +1980 321 10.80720 10.80720 +1980 322 11.47490 11.47490 +1980 323 15.55720 15.55720 +1980 324 16.41060 16.41060 +1980 325 13.74070 13.74070 +1980 326 13.66510 13.66510 +1980 327 12.47980 12.47980 +1980 328 11.54700 11.54700 +1980 329 10.86900 10.86900 +1980 330 9.13470 9.13470 +1980 331 10.79840 10.79840 +1980 332 12.58890 12.58890 +1980 333 11.31780 11.31780 +1980 334 11.63440 11.63440 +1980 335 12.52300 12.52300 +1980 336 11.00710 11.00710 +1980 337 12.82100 12.82100 +1980 338 13.08940 13.08940 +1980 339 12.87170 12.87170 +1980 340 14.46780 14.46780 +1980 341 13.42000 13.42000 +1980 342 14.12630 14.12630 +1980 343 10.02250 10.02250 +1980 344 12.91150 12.91150 +1980 345 12.89120 12.89120 +1980 346 13.92350 13.92350 +1980 347 16.59370 16.59370 +1980 348 17.34510 17.34510 +1980 349 18.55720 18.55720 +1980 350 17.50220 17.50220 +1980 351 17.50030 17.50030 +1980 352 18.40200 18.40200 +1980 353 16.98560 16.98560 +1980 354 16.20350 16.20350 +1980 355 14.05680 14.05680 +1980 356 12.52250 12.52250 +1980 357 13.17620 13.17620 +1980 358 14.60490 14.60490 +1980 359 14.83710 14.83710 +1980 360 14.71680 14.71680 +1980 361 14.82120 14.82120 +1980 362 15.35730 15.35730 +1980 363 16.14880 16.14880 +1980 364 15.48520 15.48520 +1980 365 15.70450 15.70450 +1980 366 16.52350 16.52350 +1981 1 17.60860 17.60860 +1981 2 16.99450 16.99450 +1981 3 17.50860 17.50860 +1981 4 17.36900 17.36900 +1981 5 17.04100 17.04100 +1981 6 15.99280 15.99280 +1981 7 15.22070 15.22070 +1981 8 15.64120 15.64120 +1981 9 15.61280 15.61280 +1981 10 16.13780 16.13780 +1981 11 18.63450 18.63450 +1981 12 17.47190 17.47190 +1981 13 17.56520 17.56520 +1981 14 18.57220 18.57220 +1981 15 18.96230 18.96230 +1981 16 18.90130 18.90130 +1981 17 17.19530 17.19530 +1981 18 16.43160 16.43160 +1981 19 17.04960 17.04960 +1981 20 19.55770 19.55770 +1981 21 18.97680 18.97680 +1981 22 18.68780 18.68780 +1981 23 20.58110 20.58110 +1981 24 18.99810 18.99810 +1981 25 18.57710 18.57710 +1981 26 19.54860 19.54860 +1981 27 17.83720 17.83720 +1981 28 17.63880 17.63880 +1981 29 19.21840 19.21840 +1981 30 18.99150 18.99150 +1981 31 16.82940 16.82940 +1981 32 17.67650 17.67650 +1981 33 15.77920 15.77920 +1981 34 15.20030 15.20030 +1981 35 16.40010 16.40010 +1981 36 16.67130 16.67130 +1981 37 18.26550 18.26550 +1981 38 16.03710 16.03710 +1981 39 16.08500 16.08500 +1981 40 17.37570 17.37570 +1981 41 19.35500 19.35500 +1981 42 20.29080 20.29080 +1981 43 16.95690 16.95690 +1981 44 16.34360 16.34360 +1981 45 18.32180 18.32180 +1981 46 18.09810 18.09810 +1981 47 17.25870 17.25870 +1981 48 16.36780 16.36780 +1981 49 15.83370 15.83370 +1981 50 16.88680 16.88680 +1981 51 16.30160 16.30160 +1981 52 16.59200 16.59200 +1981 53 16.58310 16.58310 +1981 54 17.00040 17.00040 +1981 55 16.97920 16.97920 +1981 56 15.76640 15.76640 +1981 57 16.37400 16.37400 +1981 58 17.72150 17.72150 +1981 59 17.84390 17.84390 +1981 60 17.90670 17.90670 +1981 61 18.22730 18.22730 +1981 62 17.64810 17.64810 +1981 63 16.83120 16.83120 +1981 64 15.78400 15.78400 +1981 65 16.15090 16.15090 +1981 66 18.10790 18.10790 +1981 67 18.73650 18.73650 +1981 68 19.76440 19.76440 +1981 69 17.28540 17.28540 +1981 70 17.06250 17.06250 +1981 71 16.27000 16.27000 +1981 72 15.28870 15.28870 +1981 73 15.86420 15.86420 +1981 74 15.80680 15.80680 +1981 75 16.48360 16.48360 +1981 76 15.91720 15.91720 +1981 77 14.48680 14.48680 +1981 78 15.58780 15.58780 +1981 79 16.97730 16.97730 +1981 80 17.67040 17.67040 +1981 81 17.43710 17.43710 +1981 82 16.69390 16.69390 +1981 83 16.90800 16.90800 +1981 84 17.47490 17.47490 +1981 85 16.35950 16.35950 +1981 86 13.57490 13.57490 +1981 87 12.17450 12.17450 +1981 88 11.65580 11.65580 +1981 89 12.82730 12.82730 +1981 90 14.10690 14.10690 +1981 91 14.64450 14.64450 +1981 92 15.06330 15.06330 +1981 93 13.90070 13.90070 +1981 94 14.16320 14.16320 +1981 95 14.26880 14.26880 +1981 96 13.93410 13.93410 +1981 97 13.74520 13.74520 +1981 98 14.05720 14.05720 +1981 99 15.35030 15.35030 +1981 100 14.95030 14.95030 +1981 101 14.19000 14.19000 +1981 102 13.67240 13.67240 +1981 103 14.69160 14.69160 +1981 104 16.17720 16.17720 +1981 105 15.02940 15.02940 +1981 106 14.51580 14.51580 +1981 107 13.58330 13.58330 +1981 108 13.04840 13.04840 +1981 109 11.95660 11.95660 +1981 110 12.95420 12.95420 +1981 111 12.52150 12.52150 +1981 112 12.69840 12.69840 +1981 113 12.92800 12.92800 +1981 114 12.96010 12.96010 +1981 115 11.15640 11.15640 +1981 116 11.43600 11.43600 +1981 117 11.01900 11.01900 +1981 118 12.26630 12.26630 +1981 119 13.58880 13.58880 +1981 120 12.02840 12.02840 +1981 121 10.45550 10.45550 +1981 122 10.18260 10.18260 +1981 123 10.91290 10.91290 +1981 124 11.19120 11.19120 +1981 125 11.38290 11.38290 +1981 126 12.44230 12.44230 +1981 127 13.65800 13.65800 +1981 128 14.57050 14.57050 +1981 129 14.29530 14.29530 +1981 130 12.52850 12.52850 +1981 131 10.68410 10.68410 +1981 132 7.65393 7.65393 +1981 133 6.72525 6.72525 +1981 134 8.02378 8.02378 +1981 135 8.58258 8.58258 +1981 136 7.59771 7.59771 +1981 137 9.47590 9.47590 +1981 138 10.64800 10.64800 +1981 139 10.59970 10.59970 +1981 140 11.43520 11.43520 +1981 141 10.25060 10.25060 +1981 142 8.64957 8.64957 +1981 143 7.52504 7.52504 +1981 144 7.56553 7.56553 +1981 145 8.02542 8.02542 +1981 146 8.48803 8.48803 +1981 147 8.98146 8.98146 +1981 148 8.17248 8.17248 +1981 149 6.49325 6.49325 +1981 150 7.65604 7.65604 +1981 151 11.54220 11.54220 +1981 152 13.03560 13.03560 +1981 153 14.67960 14.67960 +1981 154 13.08830 13.08830 +1981 155 11.00390 11.00390 +1981 156 8.56045 8.56045 +1981 157 11.16030 11.16030 +1981 158 10.46060 10.46060 +1981 159 8.17578 8.17578 +1981 160 8.32629 8.32629 +1981 161 7.77687 7.77687 +1981 162 8.83904 8.83904 +1981 163 10.40010 10.40010 +1981 164 10.69770 10.69770 +1981 165 11.06400 11.06400 +1981 166 10.69530 10.69530 +1981 167 8.89118 8.89118 +1981 168 7.03532 7.03532 +1981 169 7.26263 7.26263 +1981 170 7.46358 7.46358 +1981 171 5.54591 5.54591 +1981 172 5.20021 5.20021 +1981 173 5.75832 5.75832 +1981 174 5.84636 5.84636 +1981 175 5.19599 5.19599 +1981 176 7.77063 7.77063 +1981 177 11.68910 11.68910 +1981 178 11.28870 11.28870 +1981 179 9.09498 9.09498 +1981 180 8.21442 8.21442 +1981 181 7.65306 7.65306 +1981 182 8.06720 8.06720 +1981 183 9.48982 9.48982 +1981 184 8.12188 8.12188 +1981 185 9.06083 9.06083 +1981 186 10.53840 10.53840 +1981 187 8.96936 8.96936 +1981 188 7.46941 7.46941 +1981 189 7.78425 7.78425 +1981 190 5.45481 5.45481 +1981 191 5.55871 5.55871 +1981 192 5.94092 5.94092 +1981 193 4.92204 4.92204 +1981 194 3.89737 3.89737 +1981 195 5.37577 5.37577 +1981 196 5.54014 5.54014 +1981 197 6.72234 6.72234 +1981 198 5.77826 5.77826 +1981 199 5.86832 5.86832 +1981 200 4.80108 4.80108 +1981 201 6.93729 6.93729 +1981 202 6.63872 6.63872 +1981 203 5.38046 5.38046 +1981 204 7.94843 7.94843 +1981 205 9.43653 9.43653 +1981 206 9.40853 9.40853 +1981 207 8.04607 8.04607 +1981 208 8.16833 8.16833 +1981 209 8.58004 8.58004 +1981 210 9.59690 9.59690 +1981 211 8.31775 8.31775 +1981 212 6.94873 6.94873 +1981 213 5.78081 5.78081 +1981 214 5.51507 5.51507 +1981 215 4.16805 4.16805 +1981 216 5.57175 5.57175 +1981 217 7.25220 7.25220 +1981 218 9.13181 9.13181 +1981 219 9.93708 9.93708 +1981 220 7.72036 7.72036 +1981 221 8.00640 8.00640 +1981 222 8.58937 8.58937 +1981 223 6.77199 6.77199 +1981 224 5.52118 5.52118 +1981 225 7.02278 7.02278 +1981 226 8.09407 8.09407 +1981 227 7.26556 7.26556 +1981 228 7.05443 7.05443 +1981 229 7.65813 7.65813 +1981 230 8.78669 8.78669 +1981 231 7.93457 7.93457 +1981 232 7.59445 7.59445 +1981 233 5.43887 5.43887 +1981 234 7.96360 7.96360 +1981 235 9.09034 9.09034 +1981 236 7.93957 7.93957 +1981 237 7.34194 7.34194 +1981 238 5.96477 5.96477 +1981 239 4.90406 4.90406 +1981 240 5.02962 5.02962 +1981 241 5.72036 5.72036 +1981 242 6.83397 6.83397 +1981 243 7.89347 7.89347 +1981 244 7.42684 7.42684 +1981 245 7.27931 7.27931 +1981 246 7.41913 7.41913 +1981 247 7.28952 7.28952 +1981 248 5.02556 5.02556 +1981 249 8.27138 8.27138 +1981 250 9.22132 9.22132 +1981 251 8.64447 8.64447 +1981 252 8.93492 8.93492 +1981 253 7.36197 7.36197 +1981 254 8.93942 8.93942 +1981 255 9.34068 9.34068 +1981 256 7.34626 7.34626 +1981 257 6.26133 6.26133 +1981 258 7.88985 7.88985 +1981 259 7.23406 7.23406 +1981 260 7.82821 7.82821 +1981 261 8.59355 8.59355 +1981 262 11.08200 11.08200 +1981 263 8.11012 8.11012 +1981 264 7.81926 7.81926 +1981 265 8.81589 8.81589 +1981 266 11.34540 11.34540 +1981 267 11.11870 11.11870 +1981 268 9.74103 9.74103 +1981 269 8.56983 8.56983 +1981 270 9.24650 9.24650 +1981 271 8.98513 8.98513 +1981 272 9.61308 9.61308 +1981 273 9.94483 9.94483 +1981 274 10.91720 10.91720 +1981 275 13.03920 13.03920 +1981 276 11.93770 11.93770 +1981 277 12.35030 12.35030 +1981 278 10.79560 10.79560 +1981 279 10.91170 10.91170 +1981 280 9.21126 9.21126 +1981 281 10.77500 10.77500 +1981 282 9.65763 9.65763 +1981 283 9.38347 9.38347 +1981 284 11.11770 11.11770 +1981 285 9.57588 9.57588 +1981 286 10.71580 10.71580 +1981 287 10.05250 10.05250 +1981 288 10.74020 10.74020 +1981 289 10.70600 10.70600 +1981 290 8.52935 8.52935 +1981 291 10.44340 10.44340 +1981 292 10.05880 10.05880 +1981 293 10.92180 10.92180 +1981 294 11.57860 11.57860 +1981 295 13.61910 13.61910 +1981 296 12.97030 12.97030 +1981 297 13.01340 13.01340 +1981 298 11.48270 11.48270 +1981 299 10.16980 10.16980 +1981 300 7.37511 7.37511 +1981 301 7.71501 7.71501 +1981 302 10.71920 10.71920 +1981 303 13.96380 13.96380 +1981 304 11.96020 11.96020 +1981 305 10.08780 10.08780 +1981 306 12.25040 12.25040 +1981 307 12.84710 12.84710 +1981 308 11.84590 11.84590 +1981 309 13.29540 13.29540 +1981 310 13.34270 13.34270 +1981 311 14.24890 14.24890 +1981 312 13.90210 13.90210 +1981 313 12.14560 12.14560 +1981 314 12.49080 12.49080 +1981 315 12.69100 12.69100 +1981 316 13.07240 13.07240 +1981 317 14.33820 14.33820 +1981 318 13.78920 13.78920 +1981 319 14.45920 14.45920 +1981 320 11.89210 11.89210 +1981 321 12.30380 12.30380 +1981 322 12.71580 12.71580 +1981 323 12.07240 12.07240 +1981 324 12.09530 12.09530 +1981 325 11.80100 11.80100 +1981 326 12.44250 12.44250 +1981 327 11.52190 11.52190 +1981 328 12.42760 12.42760 +1981 329 13.23020 13.23020 +1981 330 13.25010 13.25010 +1981 331 12.30680 12.30680 +1981 332 13.65940 13.65940 +1981 333 15.63590 15.63590 +1981 334 15.62400 15.62400 +1981 335 15.95930 15.95930 +1981 336 14.37090 14.37090 +1981 337 14.80370 14.80370 +1981 338 14.69750 14.69750 +1981 339 16.98820 16.98820 +1981 340 16.12680 16.12680 +1981 341 14.78020 14.78020 +1981 342 13.84100 13.84100 +1981 343 12.85550 12.85550 +1981 344 13.83820 13.83820 +1981 345 14.47550 14.47550 +1981 346 15.29590 15.29590 +1981 347 15.79880 15.79880 +1981 348 17.51210 17.51210 +1981 349 16.33430 16.33430 +1981 350 16.32110 16.32110 +1981 351 17.25690 17.25690 +1981 352 14.89020 14.89020 +1981 353 15.15170 15.15170 +1981 354 16.31550 16.31550 +1981 355 17.09480 17.09480 +1981 356 17.22330 17.22330 +1981 357 17.89600 17.89600 +1981 358 18.67340 18.67340 +1981 359 17.93000 17.93000 +1981 360 17.72970 17.72970 +1981 361 17.31830 17.31830 +1981 362 16.02850 16.02850 +1981 363 16.09300 16.09300 +1981 364 16.91090 16.91090 +1981 365 17.19590 17.19590 +1982 1 18.21210 18.21210 +1982 2 16.60220 16.60220 +1982 3 16.86860 16.86860 +1982 4 16.95620 16.95620 +1982 5 16.05790 16.05790 +1982 6 13.31110 13.31110 +1982 7 14.07520 14.07520 +1982 8 14.55390 14.55390 +1982 9 16.19410 16.19410 +1982 10 16.77740 16.77740 +1982 11 18.48470 18.48470 +1982 12 18.02330 18.02330 +1982 13 16.91900 16.91900 +1982 14 18.57460 18.57460 +1982 15 18.82520 18.82520 +1982 16 18.08510 18.08510 +1982 17 19.00570 19.00570 +1982 18 16.58830 16.58830 +1982 19 14.57240 14.57240 +1982 20 15.49300 15.49300 +1982 21 16.32210 16.32210 +1982 22 16.28600 16.28600 +1982 23 13.26210 13.26210 +1982 24 13.71630 13.71630 +1982 25 15.96370 15.96370 +1982 26 17.73920 17.73920 +1982 27 16.22080 16.22080 +1982 28 16.65250 16.65250 +1982 29 16.38680 16.38680 +1982 30 17.04120 17.04120 +1982 31 17.58420 17.58420 +1982 32 18.30540 18.30540 +1982 33 18.36890 18.36890 +1982 34 16.34760 16.34760 +1982 35 16.10660 16.10660 +1982 36 13.92330 13.92330 +1982 37 14.70400 14.70400 +1982 38 17.22440 17.22440 +1982 39 17.78590 17.78590 +1982 40 17.33630 17.33630 +1982 41 17.56910 17.56910 +1982 42 19.58280 19.58280 +1982 43 16.93370 16.93370 +1982 44 16.74730 16.74730 +1982 45 16.89400 16.89400 +1982 46 18.06750 18.06750 +1982 47 17.38060 17.38060 +1982 48 18.82010 18.82010 +1982 49 18.73620 18.73620 +1982 50 17.24350 17.24350 +1982 51 16.23070 16.23070 +1982 52 15.87360 15.87360 +1982 53 16.93920 16.93920 +1982 54 18.94190 18.94190 +1982 55 18.64010 18.64010 +1982 56 18.51570 18.51570 +1982 57 18.05610 18.05610 +1982 58 17.10750 17.10750 +1982 59 16.90160 16.90160 +1982 60 18.37000 18.37000 +1982 61 15.34030 15.34030 +1982 62 15.12940 15.12940 +1982 63 14.68010 14.68010 +1982 64 15.65330 15.65330 +1982 65 15.15330 15.15330 +1982 66 15.89050 15.89050 +1982 67 15.38540 15.38540 +1982 68 15.66060 15.66060 +1982 69 15.82070 15.82070 +1982 70 16.15840 16.15840 +1982 71 16.12810 16.12810 +1982 72 13.64530 13.64530 +1982 73 11.59680 11.59680 +1982 74 11.88030 11.88030 +1982 75 12.70040 12.70040 +1982 76 13.14990 13.14990 +1982 77 13.73170 13.73170 +1982 78 14.22000 14.22000 +1982 79 13.83010 13.83010 +1982 80 13.92720 13.92720 +1982 81 13.90460 13.90460 +1982 82 12.55890 12.55890 +1982 83 14.08750 14.08750 +1982 84 14.43180 14.43180 +1982 85 13.52810 13.52810 +1982 86 14.29280 14.29280 +1982 87 13.88590 13.88590 +1982 88 14.55260 14.55260 +1982 89 13.92320 13.92320 +1982 90 15.19730 15.19730 +1982 91 14.64520 14.64520 +1982 92 13.29080 13.29080 +1982 93 13.14930 13.14930 +1982 94 11.29180 11.29180 +1982 95 11.02690 11.02690 +1982 96 13.76200 13.76200 +1982 97 11.91040 11.91040 +1982 98 10.78780 10.78780 +1982 99 8.96684 8.96684 +1982 100 10.39990 10.39990 +1982 101 10.84420 10.84420 +1982 102 11.07140 11.07140 +1982 103 11.46290 11.46290 +1982 104 11.12100 11.12100 +1982 105 10.96760 10.96760 +1982 106 11.24370 11.24370 +1982 107 10.58340 10.58340 +1982 108 11.24890 11.24890 +1982 109 11.58380 11.58380 +1982 110 9.91930 9.91930 +1982 111 9.75160 9.75160 +1982 112 10.20230 10.20230 +1982 113 10.17820 10.17820 +1982 114 9.70731 9.70731 +1982 115 9.32687 9.32687 +1982 116 9.27370 9.27370 +1982 117 9.79072 9.79072 +1982 118 10.54930 10.54930 +1982 119 12.58020 12.58020 +1982 120 11.69710 11.69710 +1982 121 9.04312 9.04312 +1982 122 8.79608 8.79608 +1982 123 9.03639 9.03639 +1982 124 9.13382 9.13382 +1982 125 8.91362 8.91362 +1982 126 10.03470 10.03470 +1982 127 12.38370 12.38370 +1982 128 12.10480 12.10480 +1982 129 10.47410 10.47410 +1982 130 12.15630 12.15630 +1982 131 12.11210 12.11210 +1982 132 10.54080 10.54080 +1982 133 10.60360 10.60360 +1982 134 10.21540 10.21540 +1982 135 8.81919 8.81919 +1982 136 8.92133 8.92133 +1982 137 9.77756 9.77756 +1982 138 10.96340 10.96340 +1982 139 12.03560 12.03560 +1982 140 10.37650 10.37650 +1982 141 10.16790 10.16790 +1982 142 8.03478 8.03478 +1982 143 8.04697 8.04697 +1982 144 10.43440 10.43440 +1982 145 8.19925 8.19925 +1982 146 9.59285 9.59285 +1982 147 8.94517 8.94517 +1982 148 7.11747 7.11747 +1982 149 7.32860 7.32860 +1982 150 7.73299 7.73299 +1982 151 8.63382 8.63382 +1982 152 8.96732 8.96732 +1982 153 12.03570 12.03570 +1982 154 12.49030 12.49030 +1982 155 11.09260 11.09260 +1982 156 8.02050 8.02050 +1982 157 7.19682 7.19682 +1982 158 7.05689 7.05689 +1982 159 5.89820 5.89820 +1982 160 5.58320 5.58320 +1982 161 5.84696 5.84696 +1982 162 5.50578 5.50578 +1982 163 5.76372 5.76372 +1982 164 5.30901 5.30901 +1982 165 5.37614 5.37614 +1982 166 5.77864 5.77864 +1982 167 5.92388 5.92388 +1982 168 5.29688 5.29688 +1982 169 5.63536 5.63536 +1982 170 6.39175 6.39175 +1982 171 6.36859 6.36859 +1982 172 9.34368 9.34368 +1982 173 8.36583 8.36583 +1982 174 7.87472 7.87472 +1982 175 7.74553 7.74553 +1982 176 6.68777 6.68777 +1982 177 5.68930 5.68930 +1982 178 5.64140 5.64140 +1982 179 6.37710 6.37710 +1982 180 7.84152 7.84152 +1982 181 6.97848 6.97848 +1982 182 7.13739 7.13739 +1982 183 7.81188 7.81188 +1982 184 7.93663 7.93663 +1982 185 6.60568 6.60568 +1982 186 5.54752 5.54752 +1982 187 3.53909 3.53909 +1982 188 3.40575 3.40575 +1982 189 3.58635 3.58635 +1982 190 2.66591 2.66591 +1982 191 3.25525 3.25525 +1982 192 4.73961 4.73961 +1982 193 6.34726 6.34726 +1982 194 6.87450 6.87450 +1982 195 5.35898 5.35898 +1982 196 7.24152 7.24152 +1982 197 8.53772 8.53772 +1982 198 8.77056 8.77056 +1982 199 8.77761 8.77761 +1982 200 9.02410 9.02410 +1982 201 7.17653 7.17653 +1982 202 3.88804 3.88804 +1982 203 4.27056 4.27056 +1982 204 4.59566 4.59566 +1982 205 4.21408 4.21408 +1982 206 4.46136 4.46136 +1982 207 6.10352 6.10352 +1982 208 8.56107 8.56107 +1982 209 8.69030 8.69030 +1982 210 9.72509 9.72509 +1982 211 9.97984 9.97984 +1982 212 8.55926 8.55926 +1982 213 6.80175 6.80175 +1982 214 6.08858 6.08858 +1982 215 6.58567 6.58567 +1982 216 8.32549 8.32549 +1982 217 6.71948 6.71948 +1982 218 7.19139 7.19139 +1982 219 7.41055 7.41055 +1982 220 7.85561 7.85561 +1982 221 7.53027 7.53027 +1982 222 8.79480 8.79480 +1982 223 7.74658 7.74658 +1982 224 8.42328 8.42328 +1982 225 9.15084 9.15084 +1982 226 7.66164 7.66164 +1982 227 5.40058 5.40058 +1982 228 5.02843 5.02843 +1982 229 5.43095 5.43095 +1982 230 5.14105 5.14105 +1982 231 7.82110 7.82110 +1982 232 6.83073 6.83073 +1982 233 8.92514 8.92514 +1982 234 9.66279 9.66279 +1982 235 7.05302 7.05302 +1982 236 8.26015 8.26015 +1982 237 7.87144 7.87144 +1982 238 8.02393 8.02393 +1982 239 7.80300 7.80300 +1982 240 7.74867 7.74867 +1982 241 6.82103 6.82103 +1982 242 8.20623 8.20623 +1982 243 6.76704 6.76704 +1982 244 5.75423 5.75423 +1982 245 4.96085 4.96085 +1982 246 6.51229 6.51229 +1982 247 8.84032 8.84032 +1982 248 8.69746 8.69746 +1982 249 8.29989 8.29989 +1982 250 8.95142 8.95142 +1982 251 8.38666 8.38666 +1982 252 8.91609 8.91609 +1982 253 10.49510 10.49510 +1982 254 9.82685 9.82685 +1982 255 8.35315 8.35315 +1982 256 8.15075 8.15075 +1982 257 6.96377 6.96377 +1982 258 6.71575 6.71575 +1982 259 7.06192 7.06192 +1982 260 7.48560 7.48560 +1982 261 8.98581 8.98581 +1982 262 10.41590 10.41590 +1982 263 9.99644 9.99644 +1982 264 9.64044 9.64044 +1982 265 10.29420 10.29420 +1982 266 10.56880 10.56880 +1982 267 10.78320 10.78320 +1982 268 11.58880 11.58880 +1982 269 10.35640 10.35640 +1982 270 8.92747 8.92747 +1982 271 8.09310 8.09310 +1982 272 9.56747 9.56747 +1982 273 9.55274 9.55274 +1982 274 9.69749 9.69749 +1982 275 7.86512 7.86512 +1982 276 9.59092 9.59092 +1982 277 8.10141 8.10141 +1982 278 8.09160 8.09160 +1982 279 8.48141 8.48141 +1982 280 9.02063 9.02063 +1982 281 9.70697 9.70697 +1982 282 9.39496 9.39496 +1982 283 9.23812 9.23812 +1982 284 9.44239 9.44239 +1982 285 10.53780 10.53780 +1982 286 11.34540 11.34540 +1982 287 10.29250 10.29250 +1982 288 8.58220 8.58220 +1982 289 8.22657 8.22657 +1982 290 5.49651 5.49651 +1982 291 4.71489 4.71489 +1982 292 8.05862 8.05862 +1982 293 9.11035 9.11035 +1982 294 11.22980 11.22980 +1982 295 10.09990 10.09990 +1982 296 6.63425 6.63425 +1982 297 7.10826 7.10826 +1982 298 8.40454 8.40454 +1982 299 7.55388 7.55388 +1982 300 10.24220 10.24220 +1982 301 10.85890 10.85890 +1982 302 12.34940 12.34940 +1982 303 11.33770 11.33770 +1982 304 14.37920 14.37920 +1982 305 15.23680 15.23680 +1982 306 15.00060 15.00060 +1982 307 13.42930 13.42930 +1982 308 12.34330 12.34330 +1982 309 13.70390 13.70390 +1982 310 16.73780 16.73780 +1982 311 16.48000 16.48000 +1982 312 16.12640 16.12640 +1982 313 16.09560 16.09560 +1982 314 14.95600 14.95600 +1982 315 12.09160 12.09160 +1982 316 11.32210 11.32210 +1982 317 11.30000 11.30000 +1982 318 13.10890 13.10890 +1982 319 13.67770 13.67770 +1982 320 12.71730 12.71730 +1982 321 14.52880 14.52880 +1982 322 12.95250 12.95250 +1982 323 12.20460 12.20460 +1982 324 13.11610 13.11610 +1982 325 10.80580 10.80580 +1982 326 12.73890 12.73890 +1982 327 13.71490 13.71490 +1982 328 14.93220 14.93220 +1982 329 16.62310 16.62310 +1982 330 16.31700 16.31700 +1982 331 15.86960 15.86960 +1982 332 12.85600 12.85600 +1982 333 9.15840 9.15840 +1982 334 9.57769 9.57769 +1982 335 10.74000 10.74000 +1982 336 12.26050 12.26050 +1982 337 13.21400 13.21400 +1982 338 12.83460 12.83460 +1982 339 15.45000 15.45000 +1982 340 15.41750 15.41750 +1982 341 14.40920 14.40920 +1982 342 14.67030 14.67030 +1982 343 15.97220 15.97220 +1982 344 16.49370 16.49370 +1982 345 13.47350 13.47350 +1982 346 11.73460 11.73460 +1982 347 13.02910 13.02910 +1982 348 13.18850 13.18850 +1982 349 15.43480 15.43480 +1982 350 16.53240 16.53240 +1982 351 15.08330 15.08330 +1982 352 16.19300 16.19300 +1982 353 16.99510 16.99510 +1982 354 15.77260 15.77260 +1982 355 15.02930 15.02930 +1982 356 13.74400 13.74400 +1982 357 15.42240 15.42240 +1982 358 14.94610 14.94610 +1982 359 13.47750 13.47750 +1982 360 11.36990 11.36990 +1982 361 11.56310 11.56310 +1982 362 12.22870 12.22870 +1982 363 11.51690 11.51690 +1982 364 11.74980 11.74980 +1982 365 12.51970 12.51970 +1983 1 14.96270 14.96270 +1983 2 15.86270 15.86270 +1983 3 15.63690 15.63690 +1983 4 15.32210 15.32210 +1983 5 15.23870 15.23870 +1983 6 13.19260 13.19260 +1983 7 13.16200 13.16200 +1983 8 14.92950 14.92950 +1983 9 18.64650 18.64650 +1983 10 21.07610 21.07610 +1983 11 18.70240 18.70240 +1983 12 15.10800 15.10800 +1983 13 13.38190 13.38190 +1983 14 13.73290 13.73290 +1983 15 14.26240 14.26240 +1983 16 14.24740 14.24740 +1983 17 15.33110 15.33110 +1983 18 14.60760 14.60760 +1983 19 11.45320 11.45320 +1983 20 13.11350 13.11350 +1983 21 13.25050 13.25050 +1983 22 12.61700 12.61700 +1983 23 12.71920 12.71920 +1983 24 14.18150 14.18150 +1983 25 13.62090 13.62090 +1983 26 13.97010 13.97010 +1983 27 15.11030 15.11030 +1983 28 15.77370 15.77370 +1983 29 14.29010 14.29010 +1983 30 14.51370 14.51370 +1983 31 14.22780 14.22780 +1983 32 17.10900 17.10900 +1983 33 17.54140 17.54140 +1983 34 17.27250 17.27250 +1983 35 14.51150 14.51150 +1983 36 12.54640 12.54640 +1983 37 14.47970 14.47970 +1983 38 15.08910 15.08910 +1983 39 12.41400 12.41400 +1983 40 14.92940 14.92940 +1983 41 15.10710 15.10710 +1983 42 14.36480 14.36480 +1983 43 15.06110 15.06110 +1983 44 16.55690 16.55690 +1983 45 15.69650 15.69650 +1983 46 15.38870 15.38870 +1983 47 15.24620 15.24620 +1983 48 15.92450 15.92450 +1983 49 15.28670 15.28670 +1983 50 15.56890 15.56890 +1983 51 15.66450 15.66450 +1983 52 15.75860 15.75860 +1983 53 15.94800 15.94800 +1983 54 16.62730 16.62730 +1983 55 16.22920 16.22920 +1983 56 16.58090 16.58090 +1983 57 15.91820 15.91820 +1983 58 15.72340 15.72340 +1983 59 15.11600 15.11600 +1983 60 16.16060 16.16060 +1983 61 13.41120 13.41120 +1983 62 12.27340 12.27340 +1983 63 14.85620 14.85620 +1983 64 14.75710 14.75710 +1983 65 16.54390 16.54390 +1983 66 17.02870 17.02870 +1983 67 17.89970 17.89970 +1983 68 18.75290 18.75290 +1983 69 17.95280 17.95280 +1983 70 17.63640 17.63640 +1983 71 16.95660 16.95660 +1983 72 16.86740 16.86740 +1983 73 16.61050 16.61050 +1983 74 14.22960 14.22960 +1983 75 12.50340 12.50340 +1983 76 13.04830 13.04830 +1983 77 14.92910 14.92910 +1983 78 17.76310 17.76310 +1983 79 18.51450 18.51450 +1983 80 16.84500 16.84500 +1983 81 16.90280 16.90280 +1983 82 18.93380 18.93380 +1983 83 17.55670 17.55670 +1983 84 12.57130 12.57130 +1983 85 13.89800 13.89800 +1983 86 14.83630 14.83630 +1983 87 15.61940 15.61940 +1983 88 12.72990 12.72990 +1983 89 11.31420 11.31420 +1983 90 14.01880 14.01880 +1983 91 14.10080 14.10080 +1983 92 14.38780 14.38780 +1983 93 11.33260 11.33260 +1983 94 12.42330 12.42330 +1983 95 12.01660 12.01660 +1983 96 13.29530 13.29530 +1983 97 14.80810 14.80810 +1983 98 12.95270 12.95270 +1983 99 10.40030 10.40030 +1983 100 10.67910 10.67910 +1983 101 11.17270 11.17270 +1983 102 13.20260 13.20260 +1983 103 14.90680 14.90680 +1983 104 15.94200 15.94200 +1983 105 14.49830 14.49830 +1983 106 13.78700 13.78700 +1983 107 12.87080 12.87080 +1983 108 12.52720 12.52720 +1983 109 16.21120 16.21120 +1983 110 14.87970 14.87970 +1983 111 13.37140 13.37140 +1983 112 13.37190 13.37190 +1983 113 11.31270 11.31270 +1983 114 12.58570 12.58570 +1983 115 13.29410 13.29410 +1983 116 13.69150 13.69150 +1983 117 10.55250 10.55250 +1983 118 8.77627 8.77627 +1983 119 11.09910 11.09910 +1983 120 11.80550 11.80550 +1983 121 10.10520 10.10520 +1983 122 10.10280 10.10280 +1983 123 10.57980 10.57980 +1983 124 12.96870 12.96870 +1983 125 13.26910 13.26910 +1983 126 10.81560 10.81560 +1983 127 9.48889 9.48889 +1983 128 10.90520 10.90520 +1983 129 11.75640 11.75640 +1983 130 9.51167 9.51167 +1983 131 8.13158 8.13158 +1983 132 6.40460 6.40460 +1983 133 7.67054 7.67054 +1983 134 9.15812 9.15812 +1983 135 8.38799 8.38799 +1983 136 10.31860 10.31860 +1983 137 7.41026 7.41026 +1983 138 6.42963 6.42963 +1983 139 6.64254 6.64254 +1983 140 8.08550 8.08550 +1983 141 9.31313 9.31313 +1983 142 9.55238 9.55238 +1983 143 9.07059 9.07059 +1983 144 7.39950 7.39950 +1983 145 8.53404 8.53404 +1983 146 8.31192 8.31192 +1983 147 8.75884 8.75884 +1983 148 9.26212 9.26212 +1983 149 12.04410 12.04410 +1983 150 10.78560 10.78560 +1983 151 9.42068 9.42068 +1983 152 8.29981 8.29981 +1983 153 4.44562 4.44562 +1983 154 4.44983 4.44983 +1983 155 5.23398 5.23398 +1983 156 7.15616 7.15616 +1983 157 8.45267 8.45267 +1983 158 9.86094 9.86094 +1983 159 11.47580 11.47580 +1983 160 11.87880 11.87880 +1983 161 12.00570 12.00570 +1983 162 11.28430 11.28430 +1983 163 9.98356 9.98356 +1983 164 10.67390 10.67390 +1983 165 9.67751 9.67751 +1983 166 8.95318 8.95318 +1983 167 6.31191 6.31191 +1983 168 4.80366 4.80366 +1983 169 5.09450 5.09450 +1983 170 5.98584 5.98584 +1983 171 5.29899 5.29899 +1983 172 6.25496 6.25496 +1983 173 7.08979 7.08979 +1983 174 6.61185 6.61185 +1983 175 5.95662 5.95662 +1983 176 5.62091 5.62091 +1983 177 9.91685 9.91685 +1983 178 9.04318 9.04318 +1983 179 9.15146 9.15146 +1983 180 7.52052 7.52052 +1983 181 4.01805 4.01805 +1983 182 5.18622 5.18622 +1983 183 4.37264 4.37264 +1983 184 3.85456 3.85456 +1983 185 4.69566 4.69566 +1983 186 4.87928 4.87928 +1983 187 5.35179 5.35179 +1983 188 8.77912 8.77912 +1983 189 11.15480 11.15480 +1983 190 10.90480 10.90480 +1983 191 8.74978 8.74978 +1983 192 7.86059 7.86059 +1983 193 8.08462 8.08462 +1983 194 8.02834 8.02834 +1983 195 7.30306 7.30306 +1983 196 6.21591 6.21591 +1983 197 6.34883 6.34883 +1983 198 5.72810 5.72810 +1983 199 6.33805 6.33805 +1983 200 5.57041 5.57041 +1983 201 4.66897 4.66897 +1983 202 5.22924 5.22924 +1983 203 5.17800 5.17800 +1983 204 5.73945 5.73945 +1983 205 4.95169 4.95169 +1983 206 3.93486 3.93486 +1983 207 3.79613 3.79613 +1983 208 3.90177 3.90177 +1983 209 5.09811 5.09811 +1983 210 5.89286 5.89286 +1983 211 6.98304 6.98304 +1983 212 10.30510 10.30510 +1983 213 10.73310 10.73310 +1983 214 11.08520 11.08520 +1983 215 8.93093 8.93093 +1983 216 7.52344 7.52344 +1983 217 7.70573 7.70573 +1983 218 8.04662 8.04662 +1983 219 8.81728 8.81728 +1983 220 8.73871 8.73871 +1983 221 8.53395 8.53395 +1983 222 8.69933 8.69933 +1983 223 7.71327 7.71327 +1983 224 5.77771 5.77771 +1983 225 5.32890 5.32890 +1983 226 6.60370 6.60370 +1983 227 6.65234 6.65234 +1983 228 6.22159 6.22159 +1983 229 7.13513 7.13513 +1983 230 7.83916 7.83916 +1983 231 9.06526 9.06526 +1983 232 9.96478 9.96478 +1983 233 7.92064 7.92064 +1983 234 6.11624 6.11624 +1983 235 5.88631 5.88631 +1983 236 5.77997 5.77997 +1983 237 6.06724 6.06724 +1983 238 6.49196 6.49196 +1983 239 7.00527 7.00527 +1983 240 6.87454 6.87454 +1983 241 8.00612 8.00612 +1983 242 8.29617 8.29617 +1983 243 7.60164 7.60164 +1983 244 9.46299 9.46299 +1983 245 9.55933 9.55933 +1983 246 8.48490 8.48490 +1983 247 7.21277 7.21277 +1983 248 8.69565 8.69565 +1983 249 9.84619 9.84619 +1983 250 11.13690 11.13690 +1983 251 11.82610 11.82610 +1983 252 12.47980 12.47980 +1983 253 11.31660 11.31660 +1983 254 11.23470 11.23470 +1983 255 10.32180 10.32180 +1983 256 9.08254 9.08254 +1983 257 9.97610 9.97610 +1983 258 6.63361 6.63361 +1983 259 7.16609 7.16609 +1983 260 7.56958 7.56958 +1983 261 7.69824 7.69824 +1983 262 10.15510 10.15510 +1983 263 11.32030 11.32030 +1983 264 10.35980 10.35980 +1983 265 9.26838 9.26838 +1983 266 9.08950 9.08950 +1983 267 10.35710 10.35710 +1983 268 10.10460 10.10460 +1983 269 9.36018 9.36018 +1983 270 9.57797 9.57797 +1983 271 9.49959 9.49959 +1983 272 10.33110 10.33110 +1983 273 12.00950 12.00950 +1983 274 10.08920 10.08920 +1983 275 10.03080 10.03080 +1983 276 11.72830 11.72830 +1983 277 9.38858 9.38858 +1983 278 8.73640 8.73640 +1983 279 10.90280 10.90280 +1983 280 12.17950 12.17950 +1983 281 12.90680 12.90680 +1983 282 10.37390 10.37390 +1983 283 10.43980 10.43980 +1983 284 10.38290 10.38290 +1983 285 9.19460 9.19460 +1983 286 7.91460 7.91460 +1983 287 8.10129 8.10129 +1983 288 9.98896 9.98896 +1983 289 9.96017 9.96017 +1983 290 9.92117 9.92117 +1983 291 9.81500 9.81500 +1983 292 12.95240 12.95240 +1983 293 13.51350 13.51350 +1983 294 13.85910 13.85910 +1983 295 13.32730 13.32730 +1983 296 12.37430 12.37430 +1983 297 14.02280 14.02280 +1983 298 13.62340 13.62340 +1983 299 13.02340 13.02340 +1983 300 12.93490 12.93490 +1983 301 14.12100 14.12100 +1983 302 13.63880 13.63880 +1983 303 11.75440 11.75440 +1983 304 12.11290 12.11290 +1983 305 10.53860 10.53860 +1983 306 13.37370 13.37370 +1983 307 14.95890 14.95890 +1983 308 14.67360 14.67360 +1983 309 14.74330 14.74330 +1983 310 14.08160 14.08160 +1983 311 15.48850 15.48850 +1983 312 14.84390 14.84390 +1983 313 13.90730 13.90730 +1983 314 14.95010 14.95010 +1983 315 13.87820 13.87820 +1983 316 12.79890 12.79890 +1983 317 11.46920 11.46920 +1983 318 11.74510 11.74510 +1983 319 12.26130 12.26130 +1983 320 14.55270 14.55270 +1983 321 13.70070 13.70070 +1983 322 14.55110 14.55110 +1983 323 13.00570 13.00570 +1983 324 11.86910 11.86910 +1983 325 11.22180 11.22180 +1983 326 10.77550 10.77550 +1983 327 11.35710 11.35710 +1983 328 12.16300 12.16300 +1983 329 12.67790 12.67790 +1983 330 12.39560 12.39560 +1983 331 11.37090 11.37090 +1983 332 11.55380 11.55380 +1983 333 11.47280 11.47280 +1983 334 12.17270 12.17270 +1983 335 13.38750 13.38750 +1983 336 13.65370 13.65370 +1983 337 14.27370 14.27370 +1983 338 16.00590 16.00590 +1983 339 14.70140 14.70140 +1983 340 14.02790 14.02790 +1983 341 16.53710 16.53710 +1983 342 16.57550 16.57550 +1983 343 17.57550 17.57550 +1983 344 15.91590 15.91590 +1983 345 13.42770 13.42770 +1983 346 12.89310 12.89310 +1983 347 13.84680 13.84680 +1983 348 13.22000 13.22000 +1983 349 13.39540 13.39540 +1983 350 14.29980 14.29980 +1983 351 14.00970 14.00970 +1983 352 12.24110 12.24110 +1983 353 11.57660 11.57660 +1983 354 12.64220 12.64220 +1983 355 14.24940 14.24940 +1983 356 14.28280 14.28280 +1983 357 13.71940 13.71940 +1983 358 12.76480 12.76480 +1983 359 13.72160 13.72160 +1983 360 15.92590 15.92590 +1983 361 13.34790 13.34790 +1983 362 12.39610 12.39610 +1983 363 13.46480 13.46480 +1983 364 12.88280 12.88280 +1983 365 15.25440 15.25440 +1984 1 16.80870 16.80870 +1984 2 18.22890 18.22890 +1984 3 17.56730 17.56730 +1984 4 16.04070 16.04070 +1984 5 15.39350 15.39350 +1984 6 14.24280 14.24280 +1984 7 15.25150 15.25150 +1984 8 16.30770 16.30770 +1984 9 15.67140 15.67140 +1984 10 15.59790 15.59790 +1984 11 13.69820 13.69820 +1984 12 13.01830 13.01830 +1984 13 12.73670 12.73670 +1984 14 12.81160 12.81160 +1984 15 11.61940 11.61940 +1984 16 11.66350 11.66350 +1984 17 14.06380 14.06380 +1984 18 16.78410 16.78410 +1984 19 16.65460 16.65460 +1984 20 16.11500 16.11500 +1984 21 16.20950 16.20950 +1984 22 15.90970 15.90970 +1984 23 16.31220 16.31220 +1984 24 14.64290 14.64290 +1984 25 14.39790 14.39790 +1984 26 15.34600 15.34600 +1984 27 17.64560 17.64560 +1984 28 15.32090 15.32090 +1984 29 16.18980 16.18980 +1984 30 16.59890 16.59890 +1984 31 16.56570 16.56570 +1984 32 17.98330 17.98330 +1984 33 16.22340 16.22340 +1984 34 14.30570 14.30570 +1984 35 15.64160 15.64160 +1984 36 14.13820 14.13820 +1984 37 14.10310 14.10310 +1984 38 14.22880 14.22880 +1984 39 14.80770 14.80770 +1984 40 15.98330 15.98330 +1984 41 15.50230 15.50230 +1984 42 15.33780 15.33780 +1984 43 15.92450 15.92450 +1984 44 16.63280 16.63280 +1984 45 19.00350 19.00350 +1984 46 17.81990 17.81990 +1984 47 17.32830 17.32830 +1984 48 17.17210 17.17210 +1984 49 16.29310 16.29310 +1984 50 13.95860 13.95860 +1984 51 13.02190 13.02190 +1984 52 13.79200 13.79200 +1984 53 15.20480 15.20480 +1984 54 14.64220 14.64220 +1984 55 15.74800 15.74800 +1984 56 16.95390 16.95390 +1984 57 17.50650 17.50650 +1984 58 15.96890 15.96890 +1984 59 15.80680 15.80680 +1984 60 16.13430 16.13430 +1984 61 16.73360 16.73360 +1984 62 17.20380 17.20380 +1984 63 17.08120 17.08120 +1984 64 17.65000 17.65000 +1984 65 16.64070 16.64070 +1984 66 15.84920 15.84920 +1984 67 16.24870 16.24870 +1984 68 16.01790 16.01790 +1984 69 15.66280 15.66280 +1984 70 15.94390 15.94390 +1984 71 15.83720 15.83720 +1984 72 14.61900 14.61900 +1984 73 14.83810 14.83810 +1984 74 14.95100 14.95100 +1984 75 14.74990 14.74990 +1984 76 13.76660 13.76660 +1984 77 14.31940 14.31940 +1984 78 14.66880 14.66880 +1984 79 15.48960 15.48960 +1984 80 15.46380 15.46380 +1984 81 16.11820 16.11820 +1984 82 14.65030 14.65030 +1984 83 14.08640 14.08640 +1984 84 13.34060 13.34060 +1984 85 14.19410 14.19410 +1984 86 14.60250 14.60250 +1984 87 15.48240 15.48240 +1984 88 15.59530 15.59530 +1984 89 15.69820 15.69820 +1984 90 15.40860 15.40860 +1984 91 16.75640 16.75640 +1984 92 16.15820 16.15820 +1984 93 15.33400 15.33400 +1984 94 13.41540 13.41540 +1984 95 14.55420 14.55420 +1984 96 13.04680 13.04680 +1984 97 13.07150 13.07150 +1984 98 12.93710 12.93710 +1984 99 10.74150 10.74150 +1984 100 10.60010 10.60010 +1984 101 12.57950 12.57950 +1984 102 12.74950 12.74950 +1984 103 12.76350 12.76350 +1984 104 13.67710 13.67710 +1984 105 12.98000 12.98000 +1984 106 13.06000 13.06000 +1984 107 13.27350 13.27350 +1984 108 12.71820 12.71820 +1984 109 11.89970 11.89970 +1984 110 11.59440 11.59440 +1984 111 11.78410 11.78410 +1984 112 11.33530 11.33530 +1984 113 12.65560 12.65560 +1984 114 12.40030 12.40030 +1984 115 12.35460 12.35460 +1984 116 12.74880 12.74880 +1984 117 12.31970 12.31970 +1984 118 11.36220 11.36220 +1984 119 9.81603 9.81603 +1984 120 8.04736 8.04736 +1984 121 11.64430 11.64430 +1984 122 8.76816 8.76816 +1984 123 10.09860 10.09860 +1984 124 9.42643 9.42643 +1984 125 9.55544 9.55544 +1984 126 10.57010 10.57010 +1984 127 11.67360 11.67360 +1984 128 11.89160 11.89160 +1984 129 13.51170 13.51170 +1984 130 13.09160 13.09160 +1984 131 9.96569 9.96569 +1984 132 9.98400 9.98400 +1984 133 10.61560 10.61560 +1984 134 10.98110 10.98110 +1984 135 10.12050 10.12050 +1984 136 8.65328 8.65328 +1984 137 8.07156 8.07156 +1984 138 9.06939 9.06939 +1984 139 8.62435 8.62435 +1984 140 6.50270 6.50270 +1984 141 6.07263 6.07263 +1984 142 7.05696 7.05696 +1984 143 8.39679 8.39679 +1984 144 11.00160 11.00160 +1984 145 11.28330 11.28330 +1984 146 9.96201 9.96201 +1984 147 8.67050 8.67050 +1984 148 7.93745 7.93745 +1984 149 7.78684 7.78684 +1984 150 8.50803 8.50803 +1984 151 5.88463 5.88463 +1984 152 5.21916 5.21916 +1984 153 6.95446 6.95446 +1984 154 7.80671 7.80671 +1984 155 10.04600 10.04600 +1984 156 10.56910 10.56910 +1984 157 8.65736 8.65736 +1984 158 9.60629 9.60629 +1984 159 8.24395 8.24395 +1984 160 10.28040 10.28040 +1984 161 12.15060 12.15060 +1984 162 9.57828 9.57828 +1984 163 8.58490 8.58490 +1984 164 9.54756 9.54756 +1984 165 7.02926 7.02926 +1984 166 5.74815 5.74815 +1984 167 6.98799 6.98799 +1984 168 7.72947 7.72947 +1984 169 9.01350 9.01350 +1984 170 9.86991 9.86991 +1984 171 8.57516 8.57516 +1984 172 11.79570 11.79570 +1984 173 11.60970 11.60970 +1984 174 9.28823 9.28823 +1984 175 6.00861 6.00861 +1984 176 4.02989 4.02989 +1984 177 5.59596 5.59596 +1984 178 8.72070 8.72070 +1984 179 8.17587 8.17587 +1984 180 9.79786 9.79786 +1984 181 11.37790 11.37790 +1984 182 10.97800 10.97800 +1984 183 10.88210 10.88210 +1984 184 10.56410 10.56410 +1984 185 9.41765 9.41765 +1984 186 9.34561 9.34561 +1984 187 10.19060 10.19060 +1984 188 9.06724 9.06724 +1984 189 7.06702 7.06702 +1984 190 5.56863 5.56863 +1984 191 5.81147 5.81147 +1984 192 7.08062 7.08062 +1984 193 10.25040 10.25040 +1984 194 9.10444 9.10444 +1984 195 8.51103 8.51103 +1984 196 5.54616 5.54616 +1984 197 3.57459 3.57459 +1984 198 4.87322 4.87322 +1984 199 5.50177 5.50177 +1984 200 5.85237 5.85237 +1984 201 7.03698 7.03698 +1984 202 8.47991 8.47991 +1984 203 10.38720 10.38720 +1984 204 11.18650 11.18650 +1984 205 8.96178 8.96178 +1984 206 7.34878 7.34878 +1984 207 8.08100 8.08100 +1984 208 6.08605 6.08605 +1984 209 5.48087 5.48087 +1984 210 7.16522 7.16522 +1984 211 10.07540 10.07540 +1984 212 10.25300 10.25300 +1984 213 8.79846 8.79846 +1984 214 8.89826 8.89826 +1984 215 9.84060 9.84060 +1984 216 9.79518 9.79518 +1984 217 6.16682 6.16682 +1984 218 5.64887 5.64887 +1984 219 5.49154 5.49154 +1984 220 4.59399 4.59399 +1984 221 5.14458 5.14458 +1984 222 7.20915 7.20915 +1984 223 8.15055 8.15055 +1984 224 8.19236 8.19236 +1984 225 8.31597 8.31597 +1984 226 9.05403 9.05403 +1984 227 9.47863 9.47863 +1984 228 10.05150 10.05150 +1984 229 10.38440 10.38440 +1984 230 10.19770 10.19770 +1984 231 9.84706 9.84706 +1984 232 9.83192 9.83192 +1984 233 10.80160 10.80160 +1984 234 11.17480 11.17480 +1984 235 9.68999 9.68999 +1984 236 6.83358 6.83358 +1984 237 6.37594 6.37594 +1984 238 6.67127 6.67127 +1984 239 6.69051 6.69051 +1984 240 7.95788 7.95788 +1984 241 9.05165 9.05165 +1984 242 8.58907 8.58907 +1984 243 9.28670 9.28670 +1984 244 9.29079 9.29079 +1984 245 9.70372 9.70372 +1984 246 8.40316 8.40316 +1984 247 9.09690 9.09690 +1984 248 8.65560 8.65560 +1984 249 10.44900 10.44900 +1984 250 8.37407 8.37407 +1984 251 7.50268 7.50268 +1984 252 7.03718 7.03718 +1984 253 7.96930 7.96930 +1984 254 8.72992 8.72992 +1984 255 9.31043 9.31043 +1984 256 10.12680 10.12680 +1984 257 8.46706 8.46706 +1984 258 7.52723 7.52723 +1984 259 6.51419 6.51419 +1984 260 6.71569 6.71569 +1984 261 7.02892 7.02892 +1984 262 7.36685 7.36685 +1984 263 7.09291 7.09291 +1984 264 8.84033 8.84033 +1984 265 10.01020 10.01020 +1984 266 10.06790 10.06790 +1984 267 10.03500 10.03500 +1984 268 9.55833 9.55833 +1984 269 10.45310 10.45310 +1984 270 8.64046 8.64046 +1984 271 8.82957 8.82957 +1984 272 9.50132 9.50132 +1984 273 6.49723 6.49723 +1984 274 6.96368 6.96368 +1984 275 6.23732 6.23732 +1984 276 7.06701 7.06701 +1984 277 7.54740 7.54740 +1984 278 8.10253 8.10253 +1984 279 9.03824 9.03824 +1984 280 10.08040 10.08040 +1984 281 9.26581 9.26581 +1984 282 10.62130 10.62130 +1984 283 10.38400 10.38400 +1984 284 12.00010 12.00010 +1984 285 9.57679 9.57679 +1984 286 10.78980 10.78980 +1984 287 12.76640 12.76640 +1984 288 14.19240 14.19240 +1984 289 12.62300 12.62300 +1984 290 13.16730 13.16730 +1984 291 12.33400 12.33400 +1984 292 11.06690 11.06690 +1984 293 9.97346 9.97346 +1984 294 9.60951 9.60951 +1984 295 7.82552 7.82552 +1984 296 8.70316 8.70316 +1984 297 9.79396 9.79396 +1984 298 11.28390 11.28390 +1984 299 11.00960 11.00960 +1984 300 11.18030 11.18030 +1984 301 12.88420 12.88420 +1984 302 12.83640 12.83640 +1984 303 12.56860 12.56860 +1984 304 12.85850 12.85850 +1984 305 13.11330 13.11330 +1984 306 11.86180 11.86180 +1984 307 13.56350 13.56350 +1984 308 13.81960 13.81960 +1984 309 14.11590 14.11590 +1984 310 13.47650 13.47650 +1984 311 15.19760 15.19760 +1984 312 14.05460 14.05460 +1984 313 14.17640 14.17640 +1984 314 14.42740 14.42740 +1984 315 14.95860 14.95860 +1984 316 16.12310 16.12310 +1984 317 16.44470 16.44470 +1984 318 16.40320 16.40320 +1984 319 16.03320 16.03320 +1984 320 14.58320 14.58320 +1984 321 11.28680 11.28680 +1984 322 11.60980 11.60980 +1984 323 11.60080 11.60080 +1984 324 11.79080 11.79080 +1984 325 12.54680 12.54680 +1984 326 15.06050 15.06050 +1984 327 15.89580 15.89580 +1984 328 16.71080 16.71080 +1984 329 15.36570 15.36570 +1984 330 11.55730 11.55730 +1984 331 13.62880 13.62880 +1984 332 13.17880 13.17880 +1984 333 14.08500 14.08500 +1984 334 14.83240 14.83240 +1984 335 16.15150 16.15150 +1984 336 15.88650 15.88650 +1984 337 15.57660 15.57660 +1984 338 15.77980 15.77980 +1984 339 15.93150 15.93150 +1984 340 16.41840 16.41840 +1984 341 15.13630 15.13630 +1984 342 15.10980 15.10980 +1984 343 16.42430 16.42430 +1984 344 17.11940 17.11940 +1984 345 17.18460 17.18460 +1984 346 15.40100 15.40100 +1984 347 14.79950 14.79950 +1984 348 16.39530 16.39530 +1984 349 17.10700 17.10700 +1984 350 18.16250 18.16250 +1984 351 16.36890 16.36890 +1984 352 14.90040 14.90040 +1984 353 16.04090 16.04090 +1984 354 16.41220 16.41220 +1984 355 17.56900 17.56900 +1984 356 17.84270 17.84270 +1984 357 18.66300 18.66300 +1984 358 17.10390 17.10390 +1984 359 18.24510 18.24510 +1984 360 18.43430 18.43430 +1984 361 19.27370 19.27370 +1984 362 19.00750 19.00750 +1984 363 18.53090 18.53090 +1984 364 17.72790 17.72790 +1984 365 18.23620 18.23620 +1984 366 17.61600 17.61600 +1985 1 17.24920 17.24920 +1985 2 19.15850 19.15850 +1985 3 18.50450 18.50450 +1985 4 15.91920 15.91920 +1985 5 16.63810 16.63810 +1985 6 18.01420 18.01420 +1985 7 17.85040 17.85040 +1985 8 18.23450 18.23450 +1985 9 18.01240 18.01240 +1985 10 18.05180 18.05180 +1985 11 16.80180 16.80180 +1985 12 15.35710 15.35710 +1985 13 15.68490 15.68490 +1985 14 16.33030 16.33030 +1985 15 18.40030 18.40030 +1985 16 18.88860 18.88860 +1985 17 18.05310 18.05310 +1985 18 18.26770 18.26770 +1985 19 17.31760 17.31760 +1985 20 16.22450 16.22450 +1985 21 16.75850 16.75850 +1985 22 16.07290 16.07290 +1985 23 16.56850 16.56850 +1985 24 16.03210 16.03210 +1985 25 16.12600 16.12600 +1985 26 16.02560 16.02560 +1985 27 16.71900 16.71900 +1985 28 18.13430 18.13430 +1985 29 18.74500 18.74500 +1985 30 17.98910 17.98910 +1985 31 18.17950 18.17950 +1985 32 17.33740 17.33740 +1985 33 15.22070 15.22070 +1985 34 15.14400 15.14400 +1985 35 17.03130 17.03130 +1985 36 17.99500 17.99500 +1985 37 17.12530 17.12530 +1985 38 17.18720 17.18720 +1985 39 19.88450 19.88450 +1985 40 18.34890 18.34890 +1985 41 17.43560 17.43560 +1985 42 15.72840 15.72840 +1985 43 14.34520 14.34520 +1985 44 15.55380 15.55380 +1985 45 15.75070 15.75070 +1985 46 17.40340 17.40340 +1985 47 16.60840 16.60840 +1985 48 15.91820 15.91820 +1985 49 15.32220 15.32220 +1985 50 14.62390 14.62390 +1985 51 15.18120 15.18120 +1985 52 15.34230 15.34230 +1985 53 15.00350 15.00350 +1985 54 15.30490 15.30490 +1985 55 15.64290 15.64290 +1985 56 15.92160 15.92160 +1985 57 16.14370 16.14370 +1985 58 15.69520 15.69520 +1985 59 16.70750 16.70750 +1985 60 17.07170 17.07170 +1985 61 17.15560 17.15560 +1985 62 17.22530 17.22530 +1985 63 16.90970 16.90970 +1985 64 16.83400 16.83400 +1985 65 16.94220 16.94220 +1985 66 14.48010 14.48010 +1985 67 13.13650 13.13650 +1985 68 14.63340 14.63340 +1985 69 15.26140 15.26140 +1985 70 15.32640 15.32640 +1985 71 14.10520 14.10520 +1985 72 13.12850 13.12850 +1985 73 15.75870 15.75870 +1985 74 17.07490 17.07490 +1985 75 17.27090 17.27090 +1985 76 16.26410 16.26410 +1985 77 15.21990 15.21990 +1985 78 14.19800 14.19800 +1985 79 12.18530 12.18530 +1985 80 13.45740 13.45740 +1985 81 15.74880 15.74880 +1985 82 14.27150 14.27150 +1985 83 12.52630 12.52630 +1985 84 13.53360 13.53360 +1985 85 15.69740 15.69740 +1985 86 15.05780 15.05780 +1985 87 14.00600 14.00600 +1985 88 14.09400 14.09400 +1985 89 13.07550 13.07550 +1985 90 11.12540 11.12540 +1985 91 12.77500 12.77500 +1985 92 11.96830 11.96830 +1985 93 13.74400 13.74400 +1985 94 12.04310 12.04310 +1985 95 11.79260 11.79260 +1985 96 10.89620 10.89620 +1985 97 10.80220 10.80220 +1985 98 11.76580 11.76580 +1985 99 11.55600 11.55600 +1985 100 11.94210 11.94210 +1985 101 11.54030 11.54030 +1985 102 11.72860 11.72860 +1985 103 12.32860 12.32860 +1985 104 12.34410 12.34410 +1985 105 12.79270 12.79270 +1985 106 13.95250 13.95250 +1985 107 14.73450 14.73450 +1985 108 15.59450 15.59450 +1985 109 15.99810 15.99810 +1985 110 13.98140 13.98140 +1985 111 9.47081 9.47081 +1985 112 9.22462 9.22462 +1985 113 9.23214 9.23214 +1985 114 10.27040 10.27040 +1985 115 10.66690 10.66690 +1985 116 10.92830 10.92830 +1985 117 10.52080 10.52080 +1985 118 10.05270 10.05270 +1985 119 9.64503 9.64503 +1985 120 10.15850 10.15850 +1985 121 9.76508 9.76508 +1985 122 9.27528 9.27528 +1985 123 10.45440 10.45440 +1985 124 9.65585 9.65585 +1985 125 10.47970 10.47970 +1985 126 11.02960 11.02960 +1985 127 11.45850 11.45850 +1985 128 10.20790 10.20790 +1985 129 10.79940 10.79940 +1985 130 10.93300 10.93300 +1985 131 10.77290 10.77290 +1985 132 8.18732 8.18732 +1985 133 6.53061 6.53061 +1985 134 6.86927 6.86927 +1985 135 7.73170 7.73170 +1985 136 8.26115 8.26115 +1985 137 9.01449 9.01449 +1985 138 9.19815 9.19815 +1985 139 9.33249 9.33249 +1985 140 10.52960 10.52960 +1985 141 10.73810 10.73810 +1985 142 12.80660 12.80660 +1985 143 11.60190 11.60190 +1985 144 7.77972 7.77972 +1985 145 8.02923 8.02923 +1985 146 8.71018 8.71018 +1985 147 8.36267 8.36267 +1985 148 9.08902 9.08902 +1985 149 8.66519 8.66519 +1985 150 8.95112 8.95112 +1985 151 8.91518 8.91518 +1985 152 9.36523 9.36523 +1985 153 9.54140 9.54140 +1985 154 8.43591 8.43591 +1985 155 12.10910 12.10910 +1985 156 12.09280 12.09280 +1985 157 11.43900 11.43900 +1985 158 9.62863 9.62863 +1985 159 9.42570 9.42570 +1985 160 8.47992 8.47992 +1985 161 9.31504 9.31504 +1985 162 8.61465 8.61465 +1985 163 8.26619 8.26619 +1985 164 9.88081 9.88081 +1985 165 10.26850 10.26850 +1985 166 10.10520 10.10520 +1985 167 9.43976 9.43976 +1985 168 9.24249 9.24249 +1985 169 8.59636 8.59636 +1985 170 7.83211 7.83211 +1985 171 10.49930 10.49930 +1985 172 11.81190 11.81190 +1985 173 10.12820 10.12820 +1985 174 8.58618 8.58618 +1985 175 6.88163 6.88163 +1985 176 7.41464 7.41464 +1985 177 6.02776 6.02776 +1985 178 7.47563 7.47563 +1985 179 8.83224 8.83224 +1985 180 8.02694 8.02694 +1985 181 8.72587 8.72587 +1985 182 7.67404 7.67404 +1985 183 6.49847 6.49847 +1985 184 7.14335 7.14335 +1985 185 8.79041 8.79041 +1985 186 8.09105 8.09105 +1985 187 7.94247 7.94247 +1985 188 7.05279 7.05279 +1985 189 7.00069 7.00069 +1985 190 7.35523 7.35523 +1985 191 5.07161 5.07161 +1985 192 9.25417 9.25417 +1985 193 11.21630 11.21630 +1985 194 10.05180 10.05180 +1985 195 8.48453 8.48453 +1985 196 7.23440 7.23440 +1985 197 10.32150 10.32150 +1985 198 10.88410 10.88410 +1985 199 9.44352 9.44352 +1985 200 7.70139 7.70139 +1985 201 9.59035 9.59035 +1985 202 10.11910 10.11910 +1985 203 8.95375 8.95375 +1985 204 7.58868 7.58868 +1985 205 7.08631 7.08631 +1985 206 7.26970 7.26970 +1985 207 6.91553 6.91553 +1985 208 6.89807 6.89807 +1985 209 7.38797 7.38797 +1985 210 7.35987 7.35987 +1985 211 9.62402 9.62402 +1985 212 7.76940 7.76940 +1985 213 6.92657 6.92657 +1985 214 5.75441 5.75441 +1985 215 5.80991 5.80991 +1985 216 6.28363 6.28363 +1985 217 6.67310 6.67310 +1985 218 7.56280 7.56280 +1985 219 8.46018 8.46018 +1985 220 8.95271 8.95271 +1985 221 8.36356 8.36356 +1985 222 7.31872 7.31872 +1985 223 6.33526 6.33526 +1985 224 5.20111 5.20111 +1985 225 4.38606 4.38606 +1985 226 4.94713 4.94713 +1985 227 4.77376 4.77376 +1985 228 5.45199 5.45199 +1985 229 6.76384 6.76384 +1985 230 10.18060 10.18060 +1985 231 7.82116 7.82116 +1985 232 7.37949 7.37949 +1985 233 7.53832 7.53832 +1985 234 7.15011 7.15011 +1985 235 6.65216 6.65216 +1985 236 10.22250 10.22250 +1985 237 10.56560 10.56560 +1985 238 8.95837 8.95837 +1985 239 6.03880 6.03880 +1985 240 6.14337 6.14337 +1985 241 5.33197 5.33197 +1985 242 7.90944 7.90944 +1985 243 8.63127 8.63127 +1985 244 9.59068 9.59068 +1985 245 11.17460 11.17460 +1985 246 11.79860 11.79860 +1985 247 8.55543 8.55543 +1985 248 7.46307 7.46307 +1985 249 6.49683 6.49683 +1985 250 8.97682 8.97682 +1985 251 9.85313 9.85313 +1985 252 9.33385 9.33385 +1985 253 8.52476 8.52476 +1985 254 7.57040 7.57040 +1985 255 9.07114 9.07114 +1985 256 9.17456 9.17456 +1985 257 8.81660 8.81660 +1985 258 8.60579 8.60579 +1985 259 8.84269 8.84269 +1985 260 9.12309 9.12309 +1985 261 8.87898 8.87898 +1985 262 9.14187 9.14187 +1985 263 9.09274 9.09274 +1985 264 8.41167 8.41167 +1985 265 9.08142 9.08142 +1985 266 9.47731 9.47731 +1985 267 9.67235 9.67235 +1985 268 10.39170 10.39170 +1985 269 12.18050 12.18050 +1985 270 8.91746 8.91746 +1985 271 8.75382 8.75382 +1985 272 9.78856 9.78856 +1985 273 9.76660 9.76660 +1985 274 9.03036 9.03036 +1985 275 8.90073 8.90073 +1985 276 8.89172 8.89172 +1985 277 9.15305 9.15305 +1985 278 10.73610 10.73610 +1985 279 12.82800 12.82800 +1985 280 12.44290 12.44290 +1985 281 9.36992 9.36992 +1985 282 10.31090 10.31090 +1985 283 9.52810 9.52810 +1985 284 10.34770 10.34770 +1985 285 12.56600 12.56600 +1985 286 9.72755 9.72755 +1985 287 10.40110 10.40110 +1985 288 8.48349 8.48349 +1985 289 8.48129 8.48129 +1985 290 8.18907 8.18907 +1985 291 9.96578 9.96578 +1985 292 11.25040 11.25040 +1985 293 12.95890 12.95890 +1985 294 11.39420 11.39420 +1985 295 11.61150 11.61150 +1985 296 12.49770 12.49770 +1985 297 11.14350 11.14350 +1985 298 7.62012 7.62012 +1985 299 7.33183 7.33183 +1985 300 9.82189 9.82189 +1985 301 11.18970 11.18970 +1985 302 12.27560 12.27560 +1985 303 12.02520 12.02520 +1985 304 11.56680 11.56680 +1985 305 11.10040 11.10040 +1985 306 10.10920 10.10920 +1985 307 8.67690 8.67690 +1985 308 9.58782 9.58782 +1985 309 11.03690 11.03690 +1985 310 11.08030 11.08030 +1985 311 11.65470 11.65470 +1985 312 13.52800 13.52800 +1985 313 11.39060 11.39060 +1985 314 13.59570 13.59570 +1985 315 13.26590 13.26590 +1985 316 11.62700 11.62700 +1985 317 12.05530 12.05530 +1985 318 13.74060 13.74060 +1985 319 14.56730 14.56730 +1985 320 14.66110 14.66110 +1985 321 13.70980 13.70980 +1985 322 13.90350 13.90350 +1985 323 13.76330 13.76330 +1985 324 11.54470 11.54470 +1985 325 11.82980 11.82980 +1985 326 12.64530 12.64530 +1985 327 14.15470 14.15470 +1985 328 12.30100 12.30100 +1985 329 13.23330 13.23330 +1985 330 13.94560 13.94560 +1985 331 14.24350 14.24350 +1985 332 14.59360 14.59360 +1985 333 14.21900 14.21900 +1985 334 14.45550 14.45550 +1985 335 15.20370 15.20370 +1985 336 13.82090 13.82090 +1985 337 14.60550 14.60550 +1985 338 13.47340 13.47340 +1985 339 13.60230 13.60230 +1985 340 13.37150 13.37150 +1985 341 12.90920 12.90920 +1985 342 13.19990 13.19990 +1985 343 14.08600 14.08600 +1985 344 16.06710 16.06710 +1985 345 16.70990 16.70990 +1985 346 15.75750 15.75750 +1985 347 15.77090 15.77090 +1985 348 16.12690 16.12690 +1985 349 16.10140 16.10140 +1985 350 15.66910 15.66910 +1985 351 13.85060 13.85060 +1985 352 14.78340 14.78340 +1985 353 15.33940 15.33940 +1985 354 15.99740 15.99740 +1985 355 16.54520 16.54520 +1985 356 16.27600 16.27600 +1985 357 18.13660 18.13660 +1985 358 15.69990 15.69990 +1985 359 17.10510 17.10510 +1985 360 16.46240 16.46240 +1985 361 16.92560 16.92560 +1985 362 16.73240 16.73240 +1985 363 16.69420 16.69420 +1985 364 15.83170 15.83170 +1985 365 16.17510 16.17510 +1986 1 16.93970 16.93970 +1986 2 17.51890 17.51890 +1986 3 17.45850 17.45850 +1986 4 18.05770 18.05770 +1986 5 18.72560 18.72560 +1986 6 18.32370 18.32370 +1986 7 17.96820 17.96820 +1986 8 16.54120 16.54120 +1986 9 18.34700 18.34700 +1986 10 18.63500 18.63500 +1986 11 18.79340 18.79340 +1986 12 19.15860 19.15860 +1986 13 17.52590 17.52590 +1986 14 18.37180 18.37180 +1986 15 18.32860 18.32860 +1986 16 18.34380 18.34380 +1986 17 19.89380 19.89380 +1986 18 20.92780 20.92780 +1986 19 18.20480 18.20480 +1986 20 17.02270 17.02270 +1986 21 17.92130 17.92130 +1986 22 18.11430 18.11430 +1986 23 18.64260 18.64260 +1986 24 16.79160 16.79160 +1986 25 17.69210 17.69210 +1986 26 16.02400 16.02400 +1986 27 17.04430 17.04430 +1986 28 13.69570 13.69570 +1986 29 13.79910 13.79910 +1986 30 14.73320 14.73320 +1986 31 15.17540 15.17540 +1986 32 16.82620 16.82620 +1986 33 18.68720 18.68720 +1986 34 19.76510 19.76510 +1986 35 18.62220 18.62220 +1986 36 17.90990 17.90990 +1986 37 17.84500 17.84500 +1986 38 17.65080 17.65080 +1986 39 16.37880 16.37880 +1986 40 16.56020 16.56020 +1986 41 17.68550 17.68550 +1986 42 17.70230 17.70230 +1986 43 17.06920 17.06920 +1986 44 15.63290 15.63290 +1986 45 16.49380 16.49380 +1986 46 16.76750 16.76750 +1986 47 16.92050 16.92050 +1986 48 16.08170 16.08170 +1986 49 16.45600 16.45600 +1986 50 16.75420 16.75420 +1986 51 16.87050 16.87050 +1986 52 17.72730 17.72730 +1986 53 17.14070 17.14070 +1986 54 17.79720 17.79720 +1986 55 19.04110 19.04110 +1986 56 17.18770 17.18770 +1986 57 15.84050 15.84050 +1986 58 16.79670 16.79670 +1986 59 15.48440 15.48440 +1986 60 15.25570 15.25570 +1986 61 14.94350 14.94350 +1986 62 14.10800 14.10800 +1986 63 15.40690 15.40690 +1986 64 14.88180 14.88180 +1986 65 14.77030 14.77030 +1986 66 14.06380 14.06380 +1986 67 15.18140 15.18140 +1986 68 15.48050 15.48050 +1986 69 16.69090 16.69090 +1986 70 17.20340 17.20340 +1986 71 17.69690 17.69690 +1986 72 17.69450 17.69450 +1986 73 16.97510 16.97510 +1986 74 16.59400 16.59400 +1986 75 16.32480 16.32480 +1986 76 15.46550 15.46550 +1986 77 15.16510 15.16510 +1986 78 14.87860 14.87860 +1986 79 16.08860 16.08860 +1986 80 14.22670 14.22670 +1986 81 14.55710 14.55710 +1986 82 13.79970 13.79970 +1986 83 14.05360 14.05360 +1986 84 12.32040 12.32040 +1986 85 13.13010 13.13010 +1986 86 13.49950 13.49950 +1986 87 14.16550 14.16550 +1986 88 11.76150 11.76150 +1986 89 11.59910 11.59910 +1986 90 10.72100 10.72100 +1986 91 12.75600 12.75600 +1986 92 13.18930 13.18930 +1986 93 12.53560 12.53560 +1986 94 13.57930 13.57930 +1986 95 14.66560 14.66560 +1986 96 12.97320 12.97320 +1986 97 13.38110 13.38110 +1986 98 13.20220 13.20220 +1986 99 12.44990 12.44990 +1986 100 11.93920 11.93920 +1986 101 11.48090 11.48090 +1986 102 12.47200 12.47200 +1986 103 11.04270 11.04270 +1986 104 11.26440 11.26440 +1986 105 11.52670 11.52670 +1986 106 11.26290 11.26290 +1986 107 12.05380 12.05380 +1986 108 11.97830 11.97830 +1986 109 12.50020 12.50020 +1986 110 13.97600 13.97600 +1986 111 14.74100 14.74100 +1986 112 13.87560 13.87560 +1986 113 13.70940 13.70940 +1986 114 14.04520 14.04520 +1986 115 14.95240 14.95240 +1986 116 15.27660 15.27660 +1986 117 15.18530 15.18530 +1986 118 14.20260 14.20260 +1986 119 11.09640 11.09640 +1986 120 10.91930 10.91930 +1986 121 11.23350 11.23350 +1986 122 10.43100 10.43100 +1986 123 11.36330 11.36330 +1986 124 9.83061 9.83061 +1986 125 10.41860 10.41860 +1986 126 10.55810 10.55810 +1986 127 11.53070 11.53070 +1986 128 10.87050 10.87050 +1986 129 10.51590 10.51590 +1986 130 10.61010 10.61010 +1986 131 12.08560 12.08560 +1986 132 11.49280 11.49280 +1986 133 11.22310 11.22310 +1986 134 10.84460 10.84460 +1986 135 9.71564 9.71564 +1986 136 12.69420 12.69420 +1986 137 11.74510 11.74510 +1986 138 9.23429 9.23429 +1986 139 10.22760 10.22760 +1986 140 13.19800 13.19800 +1986 141 10.91870 10.91870 +1986 142 7.75932 7.75932 +1986 143 6.86404 6.86404 +1986 144 9.26406 9.26406 +1986 145 11.55610 11.55610 +1986 146 10.20450 10.20450 +1986 147 6.67708 6.67708 +1986 148 6.73606 6.73606 +1986 149 10.59750 10.59750 +1986 150 9.03886 9.03886 +1986 151 9.04718 9.04718 +1986 152 7.30582 7.30582 +1986 153 6.88415 6.88415 +1986 154 7.86142 7.86142 +1986 155 8.72757 8.72757 +1986 156 9.21807 9.21807 +1986 157 9.09203 9.09203 +1986 158 7.54667 7.54667 +1986 159 10.22010 10.22010 +1986 160 12.26520 12.26520 +1986 161 10.60340 10.60340 +1986 162 7.19651 7.19651 +1986 163 7.27432 7.27432 +1986 164 7.13857 7.13857 +1986 165 6.68375 6.68375 +1986 166 3.30908 3.30908 +1986 167 4.19562 4.19562 +1986 168 4.51006 4.51006 +1986 169 4.62086 4.62086 +1986 170 7.81745 7.81745 +1986 171 10.18640 10.18640 +1986 172 9.43696 9.43696 +1986 173 7.83797 7.83797 +1986 174 8.91753 8.91753 +1986 175 8.48948 8.48948 +1986 176 6.24905 6.24905 +1986 177 7.06912 7.06912 +1986 178 8.78537 8.78537 +1986 179 7.05059 7.05059 +1986 180 6.35269 6.35269 +1986 181 5.82944 5.82944 +1986 182 5.68587 5.68587 +1986 183 7.52932 7.52932 +1986 184 5.91948 5.91948 +1986 185 3.72271 3.72271 +1986 186 5.96995 5.96995 +1986 187 7.65528 7.65528 +1986 188 6.42699 6.42699 +1986 189 6.08369 6.08369 +1986 190 8.36198 8.36198 +1986 191 7.93280 7.93280 +1986 192 5.59475 5.59475 +1986 193 4.87066 4.87066 +1986 194 4.53450 4.53450 +1986 195 4.79437 4.79437 +1986 196 4.80185 4.80185 +1986 197 5.14397 5.14397 +1986 198 5.00052 5.00052 +1986 199 4.93740 4.93740 +1986 200 5.75215 5.75215 +1986 201 5.44868 5.44868 +1986 202 4.60276 4.60276 +1986 203 3.52996 3.52996 +1986 204 5.35488 5.35488 +1986 205 10.15880 10.15880 +1986 206 8.81635 8.81635 +1986 207 4.31277 4.31277 +1986 208 7.37802 7.37802 +1986 209 8.71816 8.71816 +1986 210 7.72329 7.72329 +1986 211 8.14910 8.14910 +1986 212 6.87488 6.87488 +1986 213 5.64480 5.64480 +1986 214 4.39796 4.39796 +1986 215 5.17557 5.17557 +1986 216 4.99372 4.99372 +1986 217 5.15540 5.15540 +1986 218 5.64268 5.64268 +1986 219 8.12443 8.12443 +1986 220 10.68480 10.68480 +1986 221 8.96133 8.96133 +1986 222 6.65086 6.65086 +1986 223 7.56405 7.56405 +1986 224 6.60250 6.60250 +1986 225 5.42454 5.42454 +1986 226 4.93396 4.93396 +1986 227 5.61154 5.61154 +1986 228 6.06090 6.06090 +1986 229 5.63730 5.63730 +1986 230 8.76517 8.76517 +1986 231 9.42781 9.42781 +1986 232 10.20990 10.20990 +1986 233 9.77953 9.77953 +1986 234 8.97929 8.97929 +1986 235 8.02388 8.02388 +1986 236 6.59889 6.59889 +1986 237 5.50425 5.50425 +1986 238 6.29849 6.29849 +1986 239 7.00438 7.00438 +1986 240 6.10009 6.10009 +1986 241 6.00074 6.00074 +1986 242 5.59715 5.59715 +1986 243 6.65237 6.65237 +1986 244 7.57890 7.57890 +1986 245 7.07789 7.07789 +1986 246 7.87432 7.87432 +1986 247 8.90511 8.90511 +1986 248 8.43978 8.43978 +1986 249 10.63660 10.63660 +1986 250 9.01110 9.01110 +1986 251 7.06911 7.06911 +1986 252 6.15154 6.15154 +1986 253 7.69069 7.69069 +1986 254 8.82921 8.82921 +1986 255 8.16275 8.16275 +1986 256 7.55895 7.55895 +1986 257 10.15580 10.15580 +1986 258 11.45420 11.45420 +1986 259 10.56000 10.56000 +1986 260 8.68293 8.68293 +1986 261 8.21516 8.21516 +1986 262 8.36135 8.36135 +1986 263 9.72930 9.72930 +1986 264 9.20982 9.20982 +1986 265 8.90689 8.90689 +1986 266 9.52979 9.52979 +1986 267 9.23980 9.23980 +1986 268 9.28084 9.28084 +1986 269 10.13820 10.13820 +1986 270 11.91430 11.91430 +1986 271 10.60280 10.60280 +1986 272 10.12000 10.12000 +1986 273 9.70993 9.70993 +1986 274 10.28780 10.28780 +1986 275 11.28160 11.28160 +1986 276 13.10190 13.10190 +1986 277 12.38710 12.38710 +1986 278 11.05370 11.05370 +1986 279 10.02930 10.02930 +1986 280 10.18770 10.18770 +1986 281 10.55020 10.55020 +1986 282 10.80310 10.80310 +1986 283 12.77230 12.77230 +1986 284 11.41520 11.41520 +1986 285 10.73100 10.73100 +1986 286 10.57860 10.57860 +1986 287 10.54990 10.54990 +1986 288 10.57040 10.57040 +1986 289 10.65650 10.65650 +1986 290 9.61214 9.61214 +1986 291 10.02130 10.02130 +1986 292 10.47190 10.47190 +1986 293 10.24120 10.24120 +1986 294 10.37540 10.37540 +1986 295 11.26110 11.26110 +1986 296 12.32140 12.32140 +1986 297 14.26980 14.26980 +1986 298 13.88010 13.88010 +1986 299 11.53030 11.53030 +1986 300 12.44850 12.44850 +1986 301 12.66740 12.66740 +1986 302 11.08540 11.08540 +1986 303 12.32780 12.32780 +1986 304 12.54700 12.54700 +1986 305 12.67850 12.67850 +1986 306 12.58870 12.58870 +1986 307 11.89890 11.89890 +1986 308 12.39510 12.39510 +1986 309 15.50470 15.50470 +1986 310 16.04610 16.04610 +1986 311 14.45630 14.45630 +1986 312 14.40490 14.40490 +1986 313 13.57530 13.57530 +1986 314 12.95300 12.95300 +1986 315 13.63740 13.63740 +1986 316 11.17470 11.17470 +1986 317 11.68680 11.68680 +1986 318 12.03720 12.03720 +1986 319 11.61490 11.61490 +1986 320 12.25810 12.25810 +1986 321 13.29690 13.29690 +1986 322 12.24280 12.24280 +1986 323 11.91220 11.91220 +1986 324 13.29480 13.29480 +1986 325 13.55290 13.55290 +1986 326 12.46790 12.46790 +1986 327 14.06490 14.06490 +1986 328 12.29290 12.29290 +1986 329 12.37820 12.37820 +1986 330 12.68510 12.68510 +1986 331 12.40320 12.40320 +1986 332 12.35930 12.35930 +1986 333 10.63680 10.63680 +1986 334 11.63820 11.63820 +1986 335 11.31350 11.31350 +1986 336 12.28410 12.28410 +1986 337 12.64550 12.64550 +1986 338 12.99590 12.99590 +1986 339 12.86720 12.86720 +1986 340 13.38610 13.38610 +1986 341 13.47020 13.47020 +1986 342 13.53680 13.53680 +1986 343 14.47190 14.47190 +1986 344 14.25590 14.25590 +1986 345 14.66370 14.66370 +1986 346 15.43290 15.43290 +1986 347 16.74300 16.74300 +1986 348 16.77490 16.77490 +1986 349 17.74740 17.74740 +1986 350 16.48980 16.48980 +1986 351 16.78390 16.78390 +1986 352 16.69430 16.69430 +1986 353 16.00620 16.00620 +1986 354 14.99690 14.99690 +1986 355 17.09770 17.09770 +1986 356 15.26740 15.26740 +1986 357 15.53880 15.53880 +1986 358 13.85140 13.85140 +1986 359 14.20290 14.20290 +1986 360 14.80310 14.80310 +1986 361 16.01890 16.01890 +1986 362 16.13690 16.13690 +1986 363 15.45800 15.45800 +1986 364 14.59900 14.59900 +1986 365 16.03540 16.03540 +1987 1 17.28540 17.28540 +1987 2 15.24890 15.24890 +1987 3 15.82730 15.82730 +1987 4 16.02110 16.02110 +1987 5 16.39920 16.39920 +1987 6 15.88520 15.88520 +1987 7 16.59520 16.59520 +1987 8 18.37660 18.37660 +1987 9 18.33960 18.33960 +1987 10 18.94830 18.94830 +1987 11 19.84330 19.84330 +1987 12 19.75350 19.75350 +1987 13 19.48380 19.48380 +1987 14 18.77600 18.77600 +1987 15 19.32110 19.32110 +1987 16 17.83410 17.83410 +1987 17 18.89780 18.89780 +1987 18 18.16970 18.16970 +1987 19 18.57230 18.57230 +1987 20 18.14140 18.14140 +1987 21 16.54860 16.54860 +1987 22 13.84320 13.84320 +1987 23 13.42570 13.42570 +1987 24 13.55160 13.55160 +1987 25 14.89880 14.89880 +1987 26 15.88930 15.88930 +1987 27 16.41000 16.41000 +1987 28 17.73420 17.73420 +1987 29 18.48130 18.48130 +1987 30 17.47780 17.47780 +1987 31 18.70100 18.70100 +1987 32 18.62500 18.62500 +1987 33 18.69200 18.69200 +1987 34 18.04760 18.04760 +1987 35 16.45720 16.45720 +1987 36 15.58670 15.58670 +1987 37 15.53260 15.53260 +1987 38 14.52210 14.52210 +1987 39 14.76440 14.76440 +1987 40 16.23400 16.23400 +1987 41 18.20190 18.20190 +1987 42 18.34490 18.34490 +1987 43 16.48400 16.48400 +1987 44 13.10650 13.10650 +1987 45 13.27640 13.27640 +1987 46 14.58610 14.58610 +1987 47 14.70660 14.70660 +1987 48 12.99690 12.99690 +1987 49 13.43670 13.43670 +1987 50 16.31940 16.31940 +1987 51 16.86460 16.86460 +1987 52 16.80370 16.80370 +1987 53 16.74130 16.74130 +1987 54 18.48310 18.48310 +1987 55 17.45060 17.45060 +1987 56 16.96020 16.96020 +1987 57 16.49080 16.49080 +1987 58 12.71290 12.71290 +1987 59 15.03640 15.03640 +1987 60 14.81270 14.81270 +1987 61 15.98320 15.98320 +1987 62 15.90040 15.90040 +1987 63 15.60720 15.60720 +1987 64 13.59980 13.59980 +1987 65 13.42650 13.42650 +1987 66 15.28870 15.28870 +1987 67 14.74070 14.74070 +1987 68 14.33000 14.33000 +1987 69 11.98250 11.98250 +1987 70 14.51300 14.51300 +1987 71 15.19340 15.19340 +1987 72 14.82790 14.82790 +1987 73 13.67400 13.67400 +1987 74 13.16850 13.16850 +1987 75 12.60140 12.60140 +1987 76 12.34410 12.34410 +1987 77 11.89590 11.89590 +1987 78 11.99270 11.99270 +1987 79 13.07730 13.07730 +1987 80 13.43870 13.43870 +1987 81 14.16200 14.16200 +1987 82 14.49450 14.49450 +1987 83 12.09250 12.09250 +1987 84 10.62200 10.62200 +1987 85 10.60420 10.60420 +1987 86 13.18460 13.18460 +1987 87 12.87210 12.87210 +1987 88 13.48080 13.48080 +1987 89 15.95100 15.95100 +1987 90 14.23040 14.23040 +1987 91 12.36260 12.36260 +1987 92 13.11460 13.11460 +1987 93 11.50970 11.50970 +1987 94 10.84850 10.84850 +1987 95 11.38300 11.38300 +1987 96 11.82500 11.82500 +1987 97 12.02490 12.02490 +1987 98 12.99240 12.99240 +1987 99 13.58110 13.58110 +1987 100 12.02890 12.02890 +1987 101 13.49840 13.49840 +1987 102 14.15570 14.15570 +1987 103 14.47380 14.47380 +1987 104 14.78440 14.78440 +1987 105 13.73210 13.73210 +1987 106 12.18470 12.18470 +1987 107 11.03260 11.03260 +1987 108 12.25320 12.25320 +1987 109 13.89750 13.89750 +1987 110 15.29380 15.29380 +1987 111 11.74080 11.74080 +1987 112 10.37390 10.37390 +1987 113 7.79942 7.79942 +1987 114 9.36472 9.36472 +1987 115 12.32630 12.32630 +1987 116 12.45050 12.45050 +1987 117 12.08380 12.08380 +1987 118 13.94480 13.94480 +1987 119 12.02300 12.02300 +1987 120 11.28340 11.28340 +1987 121 7.51326 7.51326 +1987 122 8.17385 8.17385 +1987 123 8.79385 8.79385 +1987 124 11.22800 11.22800 +1987 125 11.65770 11.65770 +1987 126 8.99753 8.99753 +1987 127 8.73713 8.73713 +1987 128 8.98665 8.98665 +1987 129 9.72279 9.72279 +1987 130 8.70300 8.70300 +1987 131 9.70550 9.70550 +1987 132 10.31030 10.31030 +1987 133 10.77990 10.77990 +1987 134 10.12470 10.12470 +1987 135 9.56061 9.56061 +1987 136 10.74320 10.74320 +1987 137 11.32010 11.32010 +1987 138 13.20390 13.20390 +1987 139 12.13640 12.13640 +1987 140 11.72580 11.72580 +1987 141 9.80291 9.80291 +1987 142 8.52319 8.52319 +1987 143 7.83552 7.83552 +1987 144 10.01300 10.01300 +1987 145 8.99826 8.99826 +1987 146 8.05880 8.05880 +1987 147 10.99740 10.99740 +1987 148 12.68590 12.68590 +1987 149 11.61750 11.61750 +1987 150 9.77954 9.77954 +1987 151 9.28171 9.28171 +1987 152 8.46231 8.46231 +1987 153 9.62399 9.62399 +1987 154 10.25600 10.25600 +1987 155 9.97372 9.97372 +1987 156 7.53421 7.53421 +1987 157 7.88373 7.88373 +1987 158 7.11208 7.11208 +1987 159 7.99167 7.99167 +1987 160 7.94998 7.94998 +1987 161 7.42088 7.42088 +1987 162 8.36618 8.36618 +1987 163 8.75427 8.75427 +1987 164 9.86903 9.86903 +1987 165 9.50637 9.50637 +1987 166 5.27992 5.27992 +1987 167 4.09929 4.09929 +1987 168 6.88478 6.88478 +1987 169 8.95851 8.95851 +1987 170 7.66281 7.66281 +1987 171 7.13997 7.13997 +1987 172 5.43728 5.43728 +1987 173 4.44625 4.44625 +1987 174 5.18737 5.18737 +1987 175 8.25077 8.25077 +1987 176 7.78839 7.78839 +1987 177 6.61013 6.61013 +1987 178 7.34777 7.34777 +1987 179 7.66632 7.66632 +1987 180 7.95937 7.95937 +1987 181 6.08470 6.08470 +1987 182 6.19589 6.19589 +1987 183 6.33586 6.33586 +1987 184 5.26466 5.26466 +1987 185 4.65284 4.65284 +1987 186 5.08348 5.08348 +1987 187 4.12184 4.12184 +1987 188 8.62520 8.62520 +1987 189 8.82780 8.82780 +1987 190 7.26540 7.26540 +1987 191 6.08253 6.08253 +1987 192 7.40474 7.40474 +1987 193 6.78967 6.78967 +1987 194 8.67293 8.67293 +1987 195 8.83840 8.83840 +1987 196 8.46635 8.46635 +1987 197 7.83305 7.83305 +1987 198 6.32997 6.32997 +1987 199 6.45006 6.45006 +1987 200 6.29391 6.29391 +1987 201 7.60172 7.60172 +1987 202 6.60593 6.60593 +1987 203 6.31291 6.31291 +1987 204 5.73250 5.73250 +1987 205 5.83775 5.83775 +1987 206 7.46572 7.46572 +1987 207 6.63107 6.63107 +1987 208 8.08335 8.08335 +1987 209 7.32144 7.32144 +1987 210 5.80939 5.80939 +1987 211 6.14146 6.14146 +1987 212 9.80279 9.80279 +1987 213 9.41473 9.41473 +1987 214 8.46458 8.46458 +1987 215 10.09340 10.09340 +1987 216 12.41440 12.41440 +1987 217 10.50150 10.50150 +1987 218 8.78561 8.78561 +1987 219 9.11338 9.11338 +1987 220 7.94330 7.94330 +1987 221 7.88280 7.88280 +1987 222 8.68792 8.68792 +1987 223 7.25030 7.25030 +1987 224 6.54269 6.54269 +1987 225 6.99199 6.99199 +1987 226 6.78845 6.78845 +1987 227 6.27238 6.27238 +1987 228 6.04194 6.04194 +1987 229 8.81153 8.81153 +1987 230 7.31679 7.31679 +1987 231 6.93855 6.93855 +1987 232 8.60389 8.60389 +1987 233 10.43350 10.43350 +1987 234 11.40830 11.40830 +1987 235 10.24650 10.24650 +1987 236 9.95923 9.95923 +1987 237 9.68194 9.68194 +1987 238 9.45926 9.45926 +1987 239 8.58882 8.58882 +1987 240 8.49526 8.49526 +1987 241 9.05250 9.05250 +1987 242 7.57253 7.57253 +1987 243 7.65449 7.65449 +1987 244 8.80988 8.80988 +1987 245 9.28719 9.28719 +1987 246 9.30623 9.30623 +1987 247 9.04738 9.04738 +1987 248 7.99699 7.99699 +1987 249 8.82161 8.82161 +1987 250 7.68957 7.68957 +1987 251 9.76436 9.76436 +1987 252 9.38159 9.38159 +1987 253 9.25684 9.25684 +1987 254 8.39490 8.39490 +1987 255 8.29173 8.29173 +1987 256 7.96236 7.96236 +1987 257 7.39738 7.39738 +1987 258 8.28779 8.28779 +1987 259 9.68718 9.68718 +1987 260 8.92537 8.92537 +1987 261 8.39318 8.39318 +1987 262 8.76059 8.76059 +1987 263 9.13583 9.13583 +1987 264 9.57656 9.57656 +1987 265 9.39456 9.39456 +1987 266 9.79579 9.79579 +1987 267 9.66537 9.66537 +1987 268 9.81790 9.81790 +1987 269 10.79360 10.79360 +1987 270 10.31140 10.31140 +1987 271 11.95080 11.95080 +1987 272 12.67810 12.67810 +1987 273 11.93080 11.93080 +1987 274 11.08930 11.08930 +1987 275 10.64520 10.64520 +1987 276 10.10230 10.10230 +1987 277 10.44120 10.44120 +1987 278 12.41080 12.41080 +1987 279 12.87380 12.87380 +1987 280 13.47540 13.47540 +1987 281 13.36580 13.36580 +1987 282 11.15140 11.15140 +1987 283 9.98043 9.98043 +1987 284 11.12250 11.12250 +1987 285 10.80020 10.80020 +1987 286 8.19003 8.19003 +1987 287 7.71548 7.71548 +1987 288 8.49817 8.49817 +1987 289 10.40230 10.40230 +1987 290 9.85271 9.85271 +1987 291 10.98580 10.98580 +1987 292 11.66720 11.66720 +1987 293 11.56630 11.56630 +1987 294 11.13480 11.13480 +1987 295 10.57780 10.57780 +1987 296 11.81220 11.81220 +1987 297 12.63830 12.63830 +1987 298 13.28820 13.28820 +1987 299 12.85130 12.85130 +1987 300 12.47960 12.47960 +1987 301 12.78920 12.78920 +1987 302 12.80630 12.80630 +1987 303 11.93390 11.93390 +1987 304 12.59300 12.59300 +1987 305 13.84560 13.84560 +1987 306 14.24740 14.24740 +1987 307 13.21910 13.21910 +1987 308 13.78770 13.78770 +1987 309 12.89930 12.89930 +1987 310 13.29320 13.29320 +1987 311 13.18040 13.18040 +1987 312 13.35000 13.35000 +1987 313 13.10470 13.10470 +1987 314 13.24580 13.24580 +1987 315 13.78290 13.78290 +1987 316 13.88080 13.88080 +1987 317 15.92030 15.92030 +1987 318 13.01840 13.01840 +1987 319 12.24380 12.24380 +1987 320 11.18640 11.18640 +1987 321 10.32500 10.32500 +1987 322 11.76490 11.76490 +1987 323 12.20600 12.20600 +1987 324 12.88550 12.88550 +1987 325 13.76460 13.76460 +1987 326 14.72720 14.72720 +1987 327 14.86170 14.86170 +1987 328 14.56410 14.56410 +1987 329 14.02090 14.02090 +1987 330 12.91900 12.91900 +1987 331 13.59850 13.59850 +1987 332 11.95540 11.95540 +1987 333 10.18650 10.18650 +1987 334 11.37060 11.37060 +1987 335 14.40260 14.40260 +1987 336 16.56420 16.56420 +1987 337 15.01290 15.01290 +1987 338 12.26780 12.26780 +1987 339 12.25250 12.25250 +1987 340 11.95590 11.95590 +1987 341 12.35060 12.35060 +1987 342 13.47060 13.47060 +1987 343 13.03630 13.03630 +1987 344 13.43960 13.43960 +1987 345 13.96430 13.96430 +1987 346 14.01280 14.01280 +1987 347 14.78320 14.78320 +1987 348 14.34040 14.34040 +1987 349 14.64620 14.64620 +1987 350 17.44270 17.44270 +1987 351 18.70030 18.70030 +1987 352 18.85420 18.85420 +1987 353 16.26770 16.26770 +1987 354 16.23670 16.23670 +1987 355 16.48730 16.48730 +1987 356 17.23340 17.23340 +1987 357 16.62620 16.62620 +1987 358 17.23940 17.23940 +1987 359 13.90700 13.90700 +1987 360 13.72780 13.72780 +1987 361 15.02820 15.02820 +1987 362 16.65530 16.65530 +1987 363 15.80820 15.80820 +1987 364 15.84310 15.84310 +1987 365 14.20560 14.20560 +1988 1 12.34750 12.34750 +1988 2 14.41550 14.41550 +1988 3 17.65630 17.65630 +1988 4 17.70380 17.70380 +1988 5 16.28900 16.28900 +1988 6 16.36500 16.36500 +1988 7 16.35510 16.35510 +1988 8 15.67530 15.67530 +1988 9 14.88500 14.88500 +1988 10 16.41080 16.41080 +1988 11 17.76640 17.76640 +1988 12 19.84490 19.84490 +1988 13 19.19100 19.19100 +1988 14 17.46400 17.46400 +1988 15 15.86080 15.86080 +1988 16 16.63650 16.63650 +1988 17 17.27510 17.27510 +1988 18 16.50360 16.50360 +1988 19 15.74210 15.74210 +1988 20 15.65710 15.65710 +1988 21 16.36280 16.36280 +1988 22 16.98600 16.98600 +1988 23 16.51710 16.51710 +1988 24 16.87590 16.87590 +1988 25 16.07750 16.07750 +1988 26 18.44850 18.44850 +1988 27 19.89160 19.89160 +1988 28 18.37380 18.37380 +1988 29 19.31870 19.31870 +1988 30 19.85130 19.85130 +1988 31 18.65260 18.65260 +1988 32 18.77440 18.77440 +1988 33 18.10950 18.10950 +1988 34 17.04850 17.04850 +1988 35 16.51680 16.51680 +1988 36 17.41580 17.41580 +1988 37 17.07280 17.07280 +1988 38 16.53850 16.53850 +1988 39 18.88500 18.88500 +1988 40 19.05460 19.05460 +1988 41 18.22810 18.22810 +1988 42 18.20700 18.20700 +1988 43 18.28120 18.28120 +1988 44 18.08630 18.08630 +1988 45 18.43000 18.43000 +1988 46 19.07600 19.07600 +1988 47 17.96270 17.96270 +1988 48 16.18750 16.18750 +1988 49 16.58000 16.58000 +1988 50 15.42460 15.42460 +1988 51 14.11350 14.11350 +1988 52 14.09340 14.09340 +1988 53 15.31200 15.31200 +1988 54 15.07560 15.07560 +1988 55 13.93150 13.93150 +1988 56 12.01980 12.01980 +1988 57 14.22490 14.22490 +1988 58 15.34930 15.34930 +1988 59 17.52990 17.52990 +1988 60 16.64500 16.64500 +1988 61 16.45240 16.45240 +1988 62 16.89510 16.89510 +1988 63 16.57720 16.57720 +1988 64 15.93780 15.93780 +1988 65 14.88030 14.88030 +1988 66 15.12510 15.12510 +1988 67 16.52700 16.52700 +1988 68 16.92910 16.92910 +1988 69 16.78190 16.78190 +1988 70 16.94980 16.94980 +1988 71 16.50170 16.50170 +1988 72 15.70990 15.70990 +1988 73 15.74770 15.74770 +1988 74 14.92470 14.92470 +1988 75 13.55140 13.55140 +1988 76 12.04780 12.04780 +1988 77 11.65870 11.65870 +1988 78 13.72050 13.72050 +1988 79 12.64610 12.64610 +1988 80 12.76910 12.76910 +1988 81 13.61400 13.61400 +1988 82 12.60830 12.60830 +1988 83 13.78350 13.78350 +1988 84 13.79860 13.79860 +1988 85 12.68130 12.68130 +1988 86 12.99600 12.99600 +1988 87 12.72440 12.72440 +1988 88 13.10530 13.10530 +1988 89 12.46770 12.46770 +1988 90 11.19140 11.19140 +1988 91 12.68160 12.68160 +1988 92 14.35280 14.35280 +1988 93 12.94790 12.94790 +1988 94 13.65630 13.65630 +1988 95 13.91780 13.91780 +1988 96 12.71450 12.71450 +1988 97 14.14590 14.14590 +1988 98 13.46640 13.46640 +1988 99 14.85150 14.85150 +1988 100 10.83680 10.83680 +1988 101 9.48524 9.48524 +1988 102 9.81995 9.81995 +1988 103 10.36120 10.36120 +1988 104 11.59880 11.59880 +1988 105 12.88410 12.88410 +1988 106 14.66210 14.66210 +1988 107 15.19770 15.19770 +1988 108 11.43540 11.43540 +1988 109 10.83960 10.83960 +1988 110 11.67210 11.67210 +1988 111 11.48850 11.48850 +1988 112 11.12960 11.12960 +1988 113 11.99140 11.99140 +1988 114 10.03290 10.03290 +1988 115 10.73110 10.73110 +1988 116 10.81380 10.81380 +1988 117 11.40270 11.40270 +1988 118 11.50690 11.50690 +1988 119 11.30360 11.30360 +1988 120 8.82184 8.82184 +1988 121 8.77461 8.77461 +1988 122 8.85956 8.85956 +1988 123 8.25264 8.25264 +1988 124 9.37427 9.37427 +1988 125 12.43090 12.43090 +1988 126 10.51620 10.51620 +1988 127 9.61576 9.61576 +1988 128 13.06980 13.06980 +1988 129 15.93030 15.93030 +1988 130 15.21460 15.21460 +1988 131 13.77030 13.77030 +1988 132 11.34140 11.34140 +1988 133 8.56666 8.56666 +1988 134 8.84547 8.84547 +1988 135 11.08400 11.08400 +1988 136 10.32320 10.32320 +1988 137 8.38599 8.38599 +1988 138 12.58530 12.58530 +1988 139 14.26090 14.26090 +1988 140 14.46110 14.46110 +1988 141 10.71590 10.71590 +1988 142 10.78320 10.78320 +1988 143 8.47537 8.47537 +1988 144 7.98533 7.98533 +1988 145 7.37115 7.37115 +1988 146 8.25280 8.25280 +1988 147 10.81970 10.81970 +1988 148 11.35290 11.35290 +1988 149 12.25070 12.25070 +1988 150 10.94430 10.94430 +1988 151 9.97010 9.97010 +1988 152 7.04651 7.04651 +1988 153 6.78480 6.78480 +1988 154 6.35961 6.35961 +1988 155 6.53960 6.53960 +1988 156 8.42295 8.42295 +1988 157 8.33690 8.33690 +1988 158 11.65730 11.65730 +1988 159 13.41100 13.41100 +1988 160 10.26960 10.26960 +1988 161 9.11236 9.11236 +1988 162 9.73108 9.73108 +1988 163 10.76780 10.76780 +1988 164 8.90418 8.90418 +1988 165 4.21718 4.21718 +1988 166 4.97951 4.97951 +1988 167 7.22260 7.22260 +1988 168 8.07008 8.07008 +1988 169 11.13720 11.13720 +1988 170 13.62400 13.62400 +1988 171 9.83003 9.83003 +1988 172 8.05427 8.05427 +1988 173 7.30083 7.30083 +1988 174 7.72633 7.72633 +1988 175 8.65568 8.65568 +1988 176 8.94043 8.94043 +1988 177 10.25710 10.25710 +1988 178 10.34710 10.34710 +1988 179 9.67948 9.67948 +1988 180 9.82695 9.82695 +1988 181 7.77114 7.77114 +1988 182 5.81537 5.81537 +1988 183 5.41731 5.41731 +1988 184 7.44624 7.44624 +1988 185 8.63295 8.63295 +1988 186 8.44580 8.44580 +1988 187 7.16996 7.16996 +1988 188 4.48909 4.48909 +1988 189 4.26929 4.26929 +1988 190 4.63093 4.63093 +1988 191 7.86199 7.86199 +1988 192 11.13010 11.13010 +1988 193 9.66059 9.66059 +1988 194 7.51664 7.51664 +1988 195 7.77543 7.77543 +1988 196 7.71289 7.71289 +1988 197 7.08063 7.08063 +1988 198 9.04801 9.04801 +1988 199 9.07667 9.07667 +1988 200 8.10985 8.10985 +1988 201 6.68846 6.68846 +1988 202 7.26006 7.26006 +1988 203 7.75476 7.75476 +1988 204 10.19970 10.19970 +1988 205 12.40400 12.40400 +1988 206 10.25100 10.25100 +1988 207 9.16303 9.16303 +1988 208 10.01960 10.01960 +1988 209 7.90231 7.90231 +1988 210 8.60831 8.60831 +1988 211 9.68586 9.68586 +1988 212 8.92965 8.92965 +1988 213 7.38376 7.38376 +1988 214 8.45366 8.45366 +1988 215 7.36256 7.36256 +1988 216 7.67173 7.67173 +1988 217 8.43912 8.43912 +1988 218 8.71795 8.71795 +1988 219 9.52849 9.52849 +1988 220 10.99370 10.99370 +1988 221 10.20290 10.20290 +1988 222 9.64026 9.64026 +1988 223 8.97305 8.97305 +1988 224 6.11873 6.11873 +1988 225 5.80426 5.80426 +1988 226 6.21246 6.21246 +1988 227 7.86935 7.86935 +1988 228 7.77554 7.77554 +1988 229 7.84068 7.84068 +1988 230 11.03400 11.03400 +1988 231 8.58208 8.58208 +1988 232 9.32114 9.32114 +1988 233 9.27831 9.27831 +1988 234 7.68159 7.68159 +1988 235 8.88652 8.88652 +1988 236 11.88470 11.88470 +1988 237 8.15977 8.15977 +1988 238 4.95473 4.95473 +1988 239 5.76210 5.76210 +1988 240 7.33130 7.33130 +1988 241 8.56925 8.56925 +1988 242 10.81420 10.81420 +1988 243 8.84458 8.84458 +1988 244 7.34978 7.34978 +1988 245 10.03040 10.03040 +1988 246 9.28207 9.28207 +1988 247 9.65912 9.65912 +1988 248 8.75973 8.75973 +1988 249 8.81712 8.81712 +1988 250 9.36089 9.36089 +1988 251 8.25745 8.25745 +1988 252 6.29440 6.29440 +1988 253 7.99046 7.99046 +1988 254 9.47966 9.47966 +1988 255 10.66430 10.66430 +1988 256 11.50670 11.50670 +1988 257 12.90320 12.90320 +1988 258 12.05260 12.05260 +1988 259 10.44820 10.44820 +1988 260 10.29570 10.29570 +1988 261 11.68570 11.68570 +1988 262 13.97790 13.97790 +1988 263 14.98720 14.98720 +1988 264 13.73100 13.73100 +1988 265 10.92160 10.92160 +1988 266 9.99075 9.99075 +1988 267 10.94300 10.94300 +1988 268 10.55290 10.55290 +1988 269 11.27080 11.27080 +1988 270 12.60050 12.60050 +1988 271 12.68940 12.68940 +1988 272 11.05390 11.05390 +1988 273 11.75490 11.75490 +1988 274 10.13940 10.13940 +1988 275 9.96299 9.96299 +1988 276 10.66200 10.66200 +1988 277 11.75150 11.75150 +1988 278 13.16950 13.16950 +1988 279 13.10660 13.10660 +1988 280 12.76120 12.76120 +1988 281 8.73109 8.73109 +1988 282 9.84660 9.84660 +1988 283 12.80080 12.80080 +1988 284 11.56080 11.56080 +1988 285 10.24960 10.24960 +1988 286 10.92330 10.92330 +1988 287 10.18920 10.18920 +1988 288 10.81260 10.81260 +1988 289 11.38950 11.38950 +1988 290 11.90660 11.90660 +1988 291 12.44130 12.44130 +1988 292 11.50860 11.50860 +1988 293 10.03180 10.03180 +1988 294 9.71137 9.71137 +1988 295 10.03070 10.03070 +1988 296 12.57830 12.57830 +1988 297 13.65010 13.65010 +1988 298 11.16220 11.16220 +1988 299 11.04300 11.04300 +1988 300 12.15450 12.15450 +1988 301 12.93510 12.93510 +1988 302 15.18010 15.18010 +1988 303 14.65010 14.65010 +1988 304 15.36500 15.36500 +1988 305 11.95680 11.95680 +1988 306 9.91682 9.91682 +1988 307 12.18560 12.18560 +1988 308 13.71770 13.71770 +1988 309 14.70850 14.70850 +1988 310 12.93470 12.93470 +1988 311 10.22850 10.22850 +1988 312 10.53840 10.53840 +1988 313 11.71250 11.71250 +1988 314 13.05420 13.05420 +1988 315 15.84640 15.84640 +1988 316 12.00230 12.00230 +1988 317 11.98120 11.98120 +1988 318 13.82480 13.82480 +1988 319 13.47300 13.47300 +1988 320 12.17360 12.17360 +1988 321 13.26830 13.26830 +1988 322 13.45310 13.45310 +1988 323 14.62890 14.62890 +1988 324 15.54070 15.54070 +1988 325 14.21780 14.21780 +1988 326 14.13370 14.13370 +1988 327 15.21500 15.21500 +1988 328 13.73880 13.73880 +1988 329 13.07160 13.07160 +1988 330 13.95980 13.95980 +1988 331 15.11140 15.11140 +1988 332 15.83820 15.83820 +1988 333 17.82370 17.82370 +1988 334 17.00300 17.00300 +1988 335 15.46500 15.46500 +1988 336 15.55600 15.55600 +1988 337 14.96640 14.96640 +1988 338 14.67650 14.67650 +1988 339 14.84400 14.84400 +1988 340 15.09410 15.09410 +1988 341 14.55360 14.55360 +1988 342 13.11500 13.11500 +1988 343 14.87560 14.87560 +1988 344 15.33940 15.33940 +1988 345 16.23400 16.23400 +1988 346 15.85180 15.85180 +1988 347 16.96420 16.96420 +1988 348 15.66800 15.66800 +1988 349 16.11570 16.11570 +1988 350 15.54450 15.54450 +1988 351 16.62900 16.62900 +1988 352 16.56130 16.56130 +1988 353 16.62890 16.62890 +1988 354 16.37040 16.37040 +1988 355 16.10750 16.10750 +1988 356 16.66610 16.66610 +1988 357 17.90530 17.90530 +1988 358 17.48820 17.48820 +1988 359 16.58940 16.58940 +1988 360 16.47190 16.47190 +1988 361 15.96320 15.96320 +1988 362 16.29210 16.29210 +1988 363 17.73750 17.73750 +1988 364 16.98970 16.98970 +1988 365 16.44810 16.44810 +1988 366 16.67970 16.67970 +1989 1 17.49710 17.49710 +1989 2 17.31180 17.31180 +1989 3 16.73340 16.73340 +1989 4 16.60900 16.60900 +1989 5 16.78360 16.78360 +1989 6 16.35150 16.35150 +1989 7 17.10730 17.10730 +1989 8 18.13730 18.13730 +1989 9 17.65820 17.65820 +1989 10 17.23830 17.23830 +1989 11 17.60410 17.60410 +1989 12 17.92500 17.92500 +1989 13 16.67030 16.67030 +1989 14 16.99670 16.99670 +1989 15 16.23770 16.23770 +1989 16 15.95360 15.95360 +1989 17 14.60730 14.60730 +1989 18 17.52240 17.52240 +1989 19 19.11800 19.11800 +1989 20 17.69630 17.69630 +1989 21 19.32900 19.32900 +1989 22 18.10530 18.10530 +1989 23 15.67040 15.67040 +1989 24 15.77500 15.77500 +1989 25 15.46810 15.46810 +1989 26 18.42750 18.42750 +1989 27 14.77060 14.77060 +1989 28 15.08950 15.08950 +1989 29 15.34720 15.34720 +1989 30 16.37900 16.37900 +1989 31 16.69120 16.69120 +1989 32 17.72550 17.72550 +1989 33 16.93570 16.93570 +1989 34 15.37500 15.37500 +1989 35 15.77180 15.77180 +1989 36 15.98220 15.98220 +1989 37 15.81950 15.81950 +1989 38 14.59330 14.59330 +1989 39 14.15070 14.15070 +1989 40 15.65200 15.65200 +1989 41 16.70280 16.70280 +1989 42 17.06480 17.06480 +1989 43 16.70720 16.70720 +1989 44 15.49710 15.49710 +1989 45 15.22910 15.22910 +1989 46 15.43520 15.43520 +1989 47 16.90650 16.90650 +1989 48 15.78070 15.78070 +1989 49 16.18090 16.18090 +1989 50 16.38670 16.38670 +1989 51 16.56200 16.56200 +1989 52 16.25020 16.25020 +1989 53 17.95990 17.95990 +1989 54 15.05000 15.05000 +1989 55 14.02150 14.02150 +1989 56 14.24760 14.24760 +1989 57 14.55520 14.55520 +1989 58 14.42710 14.42710 +1989 59 15.36490 15.36490 +1989 60 16.05380 16.05380 +1989 61 15.88930 15.88930 +1989 62 16.61000 16.61000 +1989 63 17.12080 17.12080 +1989 64 17.52400 17.52400 +1989 65 17.84350 17.84350 +1989 66 16.60470 16.60470 +1989 67 15.79080 15.79080 +1989 68 16.68680 16.68680 +1989 69 17.52490 17.52490 +1989 70 17.40910 17.40910 +1989 71 16.63610 16.63610 +1989 72 16.76130 16.76130 +1989 73 17.96160 17.96160 +1989 74 16.36730 16.36730 +1989 75 12.50170 12.50170 +1989 76 12.98160 12.98160 +1989 77 14.34770 14.34770 +1989 78 14.65130 14.65130 +1989 79 12.73180 12.73180 +1989 80 12.14440 12.14440 +1989 81 13.93140 13.93140 +1989 82 15.95730 15.95730 +1989 83 16.43240 16.43240 +1989 84 15.43790 15.43790 +1989 85 14.26480 14.26480 +1989 86 15.40410 15.40410 +1989 87 17.78270 17.78270 +1989 88 14.70240 14.70240 +1989 89 14.79550 14.79550 +1989 90 14.84550 14.84550 +1989 91 14.33770 14.33770 +1989 92 13.96520 13.96520 +1989 93 13.13900 13.13900 +1989 94 13.96450 13.96450 +1989 95 14.49260 14.49260 +1989 96 13.94670 13.94670 +1989 97 14.47030 14.47030 +1989 98 13.88820 13.88820 +1989 99 11.87500 11.87500 +1989 100 11.67070 11.67070 +1989 101 11.15290 11.15290 +1989 102 11.03750 11.03750 +1989 103 12.22170 12.22170 +1989 104 12.34050 12.34050 +1989 105 14.14480 14.14480 +1989 106 15.58920 15.58920 +1989 107 15.83200 15.83200 +1989 108 14.89030 14.89030 +1989 109 11.96700 11.96700 +1989 110 12.54740 12.54740 +1989 111 13.14260 13.14260 +1989 112 12.24810 12.24810 +1989 113 13.03800 13.03800 +1989 114 11.96100 11.96100 +1989 115 12.21330 12.21330 +1989 116 13.21170 13.21170 +1989 117 11.82040 11.82040 +1989 118 14.35720 14.35720 +1989 119 14.45700 14.45700 +1989 120 14.05200 14.05200 +1989 121 15.58060 15.58060 +1989 122 15.13720 15.13720 +1989 123 13.93020 13.93020 +1989 124 13.50890 13.50890 +1989 125 12.44500 12.44500 +1989 126 12.47670 12.47670 +1989 127 11.95200 11.95200 +1989 128 7.72396 7.72396 +1989 129 8.07248 8.07248 +1989 130 9.74641 9.74641 +1989 131 10.08080 10.08080 +1989 132 11.93700 11.93700 +1989 133 13.32950 13.32950 +1989 134 12.03370 12.03370 +1989 135 11.70890 11.70890 +1989 136 10.61230 10.61230 +1989 137 9.94954 9.94954 +1989 138 9.60872 9.60872 +1989 139 9.38389 9.38389 +1989 140 8.64507 8.64507 +1989 141 10.51100 10.51100 +1989 142 11.87940 11.87940 +1989 143 11.24100 11.24100 +1989 144 9.81707 9.81707 +1989 145 9.72875 9.72875 +1989 146 6.73450 6.73450 +1989 147 5.98205 5.98205 +1989 148 4.85162 4.85162 +1989 149 3.65071 3.65071 +1989 150 6.40869 6.40869 +1989 151 7.05000 7.05000 +1989 152 9.48762 9.48762 +1989 153 9.97758 9.97758 +1989 154 7.01878 7.01878 +1989 155 6.41385 6.41385 +1989 156 6.17486 6.17486 +1989 157 7.88951 7.88951 +1989 158 11.92120 11.92120 +1989 159 12.53980 12.53980 +1989 160 12.22430 12.22430 +1989 161 14.25070 14.25070 +1989 162 13.47700 13.47700 +1989 163 10.35900 10.35900 +1989 164 8.34707 8.34707 +1989 165 11.92010 11.92010 +1989 166 10.47790 10.47790 +1989 167 7.78802 7.78802 +1989 168 7.27461 7.27461 +1989 169 9.26389 9.26389 +1989 170 8.02461 8.02461 +1989 171 4.03990 4.03990 +1989 172 5.48410 5.48410 +1989 173 6.15649 6.15649 +1989 174 10.06110 10.06110 +1989 175 11.76740 11.76740 +1989 176 9.57970 9.57970 +1989 177 6.05677 6.05677 +1989 178 5.41795 5.41795 +1989 179 4.71185 4.71185 +1989 180 6.18911 6.18911 +1989 181 5.75121 5.75121 +1989 182 5.76700 5.76700 +1989 183 5.65447 5.65447 +1989 184 4.50721 4.50721 +1989 185 7.30355 7.30355 +1989 186 10.16030 10.16030 +1989 187 7.63072 7.63072 +1989 188 7.02658 7.02658 +1989 189 7.46722 7.46722 +1989 190 7.35432 7.35432 +1989 191 9.02296 9.02296 +1989 192 11.08410 11.08410 +1989 193 9.82309 9.82309 +1989 194 9.59171 9.59171 +1989 195 8.98143 8.98143 +1989 196 7.85868 7.85868 +1989 197 7.18162 7.18162 +1989 198 7.09327 7.09327 +1989 199 6.67003 6.67003 +1989 200 3.76829 3.76829 +1989 201 3.46775 3.46775 +1989 202 4.08369 4.08369 +1989 203 4.12368 4.12368 +1989 204 4.37947 4.37947 +1989 205 4.96571 4.96571 +1989 206 4.67661 4.67661 +1989 207 6.27199 6.27199 +1989 208 6.51189 6.51189 +1989 209 4.02742 4.02742 +1989 210 4.51980 4.51980 +1989 211 5.22731 5.22731 +1989 212 5.78158 5.78158 +1989 213 9.22922 9.22922 +1989 214 8.92709 8.92709 +1989 215 9.02599 9.02599 +1989 216 9.42019 9.42019 +1989 217 8.77401 8.77401 +1989 218 7.38991 7.38991 +1989 219 6.89590 6.89590 +1989 220 8.62628 8.62628 +1989 221 7.57231 7.57231 +1989 222 7.79513 7.79513 +1989 223 6.03202 6.03202 +1989 224 5.80046 5.80046 +1989 225 5.87353 5.87353 +1989 226 4.53971 4.53971 +1989 227 4.68276 4.68276 +1989 228 5.73117 5.73117 +1989 229 5.39357 5.39357 +1989 230 5.51163 5.51163 +1989 231 5.33433 5.33433 +1989 232 5.62094 5.62094 +1989 233 7.28871 7.28871 +1989 234 9.06442 9.06442 +1989 235 11.60890 11.60890 +1989 236 10.77510 10.77510 +1989 237 10.00870 10.00870 +1989 238 9.30526 9.30526 +1989 239 8.94019 8.94019 +1989 240 8.83516 8.83516 +1989 241 9.42159 9.42159 +1989 242 8.95591 8.95591 +1989 243 6.53720 6.53720 +1989 244 5.12202 5.12202 +1989 245 6.49956 6.49956 +1989 246 6.02600 6.02600 +1989 247 7.52135 7.52135 +1989 248 8.44164 8.44164 +1989 249 8.27720 8.27720 +1989 250 9.99305 9.99305 +1989 251 12.03100 12.03100 +1989 252 11.11810 11.11810 +1989 253 11.59440 11.59440 +1989 254 10.81980 10.81980 +1989 255 11.57400 11.57400 +1989 256 11.23280 11.23280 +1989 257 10.50180 10.50180 +1989 258 10.56370 10.56370 +1989 259 10.19680 10.19680 +1989 260 10.09960 10.09960 +1989 261 10.86840 10.86840 +1989 262 9.95754 9.95754 +1989 263 9.43856 9.43856 +1989 264 8.95651 8.95651 +1989 265 8.61573 8.61573 +1989 266 8.49329 8.49329 +1989 267 10.54000 10.54000 +1989 268 11.72800 11.72800 +1989 269 12.96420 12.96420 +1989 270 13.26750 13.26750 +1989 271 13.64890 13.64890 +1989 272 13.23140 13.23140 +1989 273 12.14510 12.14510 +1989 274 12.19400 12.19400 +1989 275 13.18840 13.18840 +1989 276 11.20300 11.20300 +1989 277 9.90091 9.90091 +1989 278 9.33345 9.33345 +1989 279 9.52916 9.52916 +1989 280 12.06170 12.06170 +1989 281 11.80490 11.80490 +1989 282 11.89760 11.89760 +1989 283 11.12050 11.12050 +1989 284 12.24070 12.24070 +1989 285 12.09660 12.09660 +1989 286 13.52720 13.52720 +1989 287 12.62470 12.62470 +1989 288 10.55710 10.55710 +1989 289 10.63260 10.63260 +1989 290 9.07918 9.07918 +1989 291 8.86020 8.86020 +1989 292 9.97561 9.97561 +1989 293 13.33350 13.33350 +1989 294 13.12630 13.12630 +1989 295 11.16320 11.16320 +1989 296 11.38010 11.38010 +1989 297 12.12650 12.12650 +1989 298 12.28200 12.28200 +1989 299 12.49050 12.49050 +1989 300 12.62310 12.62310 +1989 301 13.00160 13.00160 +1989 302 14.79720 14.79720 +1989 303 13.41980 13.41980 +1989 304 13.49120 13.49120 +1989 305 13.22280 13.22280 +1989 306 12.81820 12.81820 +1989 307 12.92640 12.92640 +1989 308 12.87200 12.87200 +1989 309 12.55970 12.55970 +1989 310 12.91480 12.91480 +1989 311 13.31090 13.31090 +1989 312 13.65920 13.65920 +1989 313 14.83730 14.83730 +1989 314 12.75740 12.75740 +1989 315 12.64180 12.64180 +1989 316 13.05780 13.05780 +1989 317 14.41160 14.41160 +1989 318 15.72610 15.72610 +1989 319 14.28020 14.28020 +1989 320 14.30350 14.30350 +1989 321 15.74250 15.74250 +1989 322 13.39910 13.39910 +1989 323 13.84510 13.84510 +1989 324 11.86090 11.86090 +1989 325 12.39160 12.39160 +1989 326 13.32780 13.32780 +1989 327 14.80390 14.80390 +1989 328 14.63360 14.63360 +1989 329 14.79280 14.79280 +1989 330 13.01890 13.01890 +1989 331 12.52900 12.52900 +1989 332 11.06990 11.06990 +1989 333 11.85170 11.85170 +1989 334 14.21700 14.21700 +1989 335 15.84450 15.84450 +1989 336 15.27710 15.27710 +1989 337 14.93140 14.93140 +1989 338 15.71540 15.71540 +1989 339 13.41330 13.41330 +1989 340 12.11830 12.11830 +1989 341 12.51050 12.51050 +1989 342 13.38190 13.38190 +1989 343 14.73430 14.73430 +1989 344 16.13250 16.13250 +1989 345 16.12040 16.12040 +1989 346 16.46630 16.46630 +1989 347 16.94280 16.94280 +1989 348 16.62880 16.62880 +1989 349 15.38150 15.38150 +1989 350 13.09910 13.09910 +1989 351 11.96390 11.96390 +1989 352 12.61960 12.61960 +1989 353 14.27980 14.27980 +1989 354 15.65630 15.65630 +1989 355 14.92620 14.92620 +1989 356 13.31110 13.31110 +1989 357 10.85080 10.85080 +1989 358 11.96810 11.96810 +1989 359 14.18010 14.18010 +1989 360 15.38530 15.38530 +1989 361 17.22810 17.22810 +1989 362 16.71260 16.71260 +1989 363 18.05630 18.05630 +1989 364 16.10820 16.10820 +1989 365 16.92350 16.92350 +1990 1 15.89470 15.89470 +1990 2 17.13050 17.13050 +1990 3 15.85130 15.85130 +1990 4 14.47290 14.47290 +1990 5 14.09220 14.09220 +1990 6 15.32910 15.32910 +1990 7 15.00460 15.00460 +1990 8 14.86340 14.86340 +1990 9 14.66740 14.66740 +1990 10 14.91020 14.91020 +1990 11 15.26810 15.26810 +1990 12 16.88130 16.88130 +1990 13 17.01460 17.01460 +1990 14 16.52500 16.52500 +1990 15 17.80070 17.80070 +1990 16 19.88240 19.88240 +1990 17 16.96570 16.96570 +1990 18 15.70640 15.70640 +1990 19 16.56350 16.56350 +1990 20 19.78780 19.78780 +1990 21 18.64750 18.64750 +1990 22 17.07420 17.07420 +1990 23 17.22120 17.22120 +1990 24 17.89360 17.89360 +1990 25 18.78710 18.78710 +1990 26 17.58900 17.58900 +1990 27 17.07180 17.07180 +1990 28 19.00970 19.00970 +1990 29 18.72390 18.72390 +1990 30 18.34060 18.34060 +1990 31 18.16430 18.16430 +1990 32 17.53200 17.53200 +1990 33 18.54860 18.54860 +1990 34 19.81800 19.81800 +1990 35 21.06770 21.06770 +1990 36 21.50340 21.50340 +1990 37 21.62140 21.62140 +1990 38 22.16820 22.16820 +1990 39 19.76230 19.76230 +1990 40 19.13530 19.13530 +1990 41 20.17330 20.17330 +1990 42 20.14290 20.14290 +1990 43 17.46350 17.46350 +1990 44 17.65430 17.65430 +1990 45 18.41550 18.41550 +1990 46 18.65240 18.65240 +1990 47 18.57330 18.57330 +1990 48 18.46810 18.46810 +1990 49 18.48460 18.48460 +1990 50 17.61980 17.61980 +1990 51 18.04740 18.04740 +1990 52 18.56460 18.56460 +1990 53 18.14500 18.14500 +1990 54 18.50130 18.50130 +1990 55 17.92070 17.92070 +1990 56 17.14760 17.14760 +1990 57 15.80270 15.80270 +1990 58 13.95270 13.95270 +1990 59 16.72350 16.72350 +1990 60 17.29960 17.29960 +1990 61 17.84590 17.84590 +1990 62 18.42400 18.42400 +1990 63 17.40980 17.40980 +1990 64 17.38080 17.38080 +1990 65 17.17400 17.17400 +1990 66 18.19300 18.19300 +1990 67 18.06960 18.06960 +1990 68 20.03740 20.03740 +1990 69 19.65620 19.65620 +1990 70 20.35100 20.35100 +1990 71 20.36570 20.36570 +1990 72 18.06570 18.06570 +1990 73 15.23210 15.23210 +1990 74 16.14130 16.14130 +1990 75 17.58200 17.58200 +1990 76 17.34470 17.34470 +1990 77 16.82110 16.82110 +1990 78 17.46700 17.46700 +1990 79 17.28100 17.28100 +1990 80 16.57090 16.57090 +1990 81 11.51460 11.51460 +1990 82 11.96500 11.96500 +1990 83 13.34050 13.34050 +1990 84 12.98400 12.98400 +1990 85 12.90300 12.90300 +1990 86 17.04460 17.04460 +1990 87 16.03610 16.03610 +1990 88 16.24800 16.24800 +1990 89 15.06760 15.06760 +1990 90 14.61420 14.61420 +1990 91 13.88620 13.88620 +1990 92 15.17860 15.17860 +1990 93 13.79850 13.79850 +1990 94 12.28040 12.28040 +1990 95 14.64370 14.64370 +1990 96 14.62670 14.62670 +1990 97 14.65730 14.65730 +1990 98 15.06910 15.06910 +1990 99 15.97730 15.97730 +1990 100 15.44170 15.44170 +1990 101 15.32910 15.32910 +1990 102 14.23150 14.23150 +1990 103 14.65250 14.65250 +1990 104 16.09120 16.09120 +1990 105 15.68480 15.68480 +1990 106 13.99850 13.99850 +1990 107 13.25780 13.25780 +1990 108 9.68959 9.68959 +1990 109 12.56630 12.56630 +1990 110 12.50030 12.50030 +1990 111 9.06994 9.06994 +1990 112 9.75313 9.75313 +1990 113 14.14160 14.14160 +1990 114 15.97290 15.97290 +1990 115 14.56280 14.56280 +1990 116 15.47780 15.47780 +1990 117 15.35100 15.35100 +1990 118 14.02510 14.02510 +1990 119 14.18280 14.18280 +1990 120 12.33690 12.33690 +1990 121 12.85540 12.85540 +1990 122 12.13760 12.13760 +1990 123 10.24070 10.24070 +1990 124 10.17530 10.17530 +1990 125 10.53460 10.53460 +1990 126 13.97530 13.97530 +1990 127 11.88040 11.88040 +1990 128 9.15399 9.15399 +1990 129 8.76472 8.76472 +1990 130 9.58541 9.58541 +1990 131 8.67586 8.67586 +1990 132 9.00081 9.00081 +1990 133 9.84827 9.84827 +1990 134 8.23256 8.23256 +1990 135 7.84275 7.84275 +1990 136 9.26978 9.26978 +1990 137 7.76559 7.76559 +1990 138 8.74510 8.74510 +1990 139 12.75090 12.75090 +1990 140 9.63031 9.63031 +1990 141 9.40495 9.40495 +1990 142 10.91080 10.91080 +1990 143 12.62600 12.62600 +1990 144 15.07180 15.07180 +1990 145 12.87740 12.87740 +1990 146 11.54680 11.54680 +1990 147 10.02100 10.02100 +1990 148 10.85330 10.85330 +1990 149 11.31680 11.31680 +1990 150 11.23520 11.23520 +1990 151 9.40724 9.40724 +1990 152 11.84550 11.84550 +1990 153 11.83280 11.83280 +1990 154 10.68410 10.68410 +1990 155 8.58795 8.58795 +1990 156 7.11821 7.11821 +1990 157 5.37353 5.37353 +1990 158 5.58874 5.58874 +1990 159 5.83414 5.83414 +1990 160 5.30307 5.30307 +1990 161 6.55097 6.55097 +1990 162 8.24822 8.24822 +1990 163 7.97907 7.97907 +1990 164 6.09552 6.09552 +1990 165 6.77264 6.77264 +1990 166 6.96659 6.96659 +1990 167 7.38808 7.38808 +1990 168 6.97010 6.97010 +1990 169 7.66191 7.66191 +1990 170 8.59037 8.59037 +1990 171 8.69065 8.69065 +1990 172 7.05664 7.05664 +1990 173 6.80860 6.80860 +1990 174 7.71000 7.71000 +1990 175 7.76977 7.76977 +1990 176 9.10485 9.10485 +1990 177 10.98920 10.98920 +1990 178 9.44956 9.44956 +1990 179 7.81750 7.81750 +1990 180 7.78084 7.78084 +1990 181 8.17580 8.17580 +1990 182 7.13415 7.13415 +1990 183 6.95043 6.95043 +1990 184 7.79499 7.79499 +1990 185 8.32924 8.32924 +1990 186 7.88175 7.88175 +1990 187 7.97346 7.97346 +1990 188 9.09785 9.09785 +1990 189 9.80273 9.80273 +1990 190 8.42031 8.42031 +1990 191 5.65377 5.65377 +1990 192 5.35046 5.35046 +1990 193 6.94033 6.94033 +1990 194 5.58245 5.58245 +1990 195 7.06560 7.06560 +1990 196 7.80212 7.80212 +1990 197 8.34046 8.34046 +1990 198 5.70437 5.70437 +1990 199 5.94234 5.94234 +1990 200 6.26598 6.26598 +1990 201 8.74014 8.74014 +1990 202 10.50260 10.50260 +1990 203 9.39520 9.39520 +1990 204 9.55080 9.55080 +1990 205 7.83800 7.83800 +1990 206 8.24803 8.24803 +1990 207 9.56267 9.56267 +1990 208 8.22348 8.22348 +1990 209 8.28664 8.28664 +1990 210 9.51157 9.51157 +1990 211 8.59546 8.59546 +1990 212 7.04910 7.04910 +1990 213 6.13016 6.13016 +1990 214 6.57907 6.57907 +1990 215 7.86516 7.86516 +1990 216 11.17940 11.17940 +1990 217 11.30040 11.30040 +1990 218 11.20500 11.20500 +1990 219 8.60183 8.60183 +1990 220 6.72915 6.72915 +1990 221 7.05309 7.05309 +1990 222 9.86410 9.86410 +1990 223 9.84254 9.84254 +1990 224 9.20886 9.20886 +1990 225 9.30845 9.30845 +1990 226 8.28675 8.28675 +1990 227 7.65251 7.65251 +1990 228 8.88176 8.88176 +1990 229 7.52091 7.52091 +1990 230 6.76859 6.76859 +1990 231 6.66361 6.66361 +1990 232 7.05395 7.05395 +1990 233 6.57542 6.57542 +1990 234 8.17038 8.17038 +1990 235 8.34175 8.34175 +1990 236 8.51188 8.51188 +1990 237 7.90899 7.90899 +1990 238 7.59926 7.59926 +1990 239 7.36875 7.36875 +1990 240 6.88721 6.88721 +1990 241 7.18822 7.18822 +1990 242 7.26093 7.26093 +1990 243 7.11985 7.11985 +1990 244 8.03139 8.03139 +1990 245 8.07310 8.07310 +1990 246 11.02320 11.02320 +1990 247 10.20430 10.20430 +1990 248 10.05200 10.05200 +1990 249 8.05185 8.05185 +1990 250 6.46900 6.46900 +1990 251 7.37732 7.37732 +1990 252 5.93968 5.93968 +1990 253 6.70747 6.70747 +1990 254 7.36225 7.36225 +1990 255 8.04484 8.04484 +1990 256 7.15952 7.15952 +1990 257 9.02065 9.02065 +1990 258 9.69524 9.69524 +1990 259 7.39347 7.39347 +1990 260 7.50910 7.50910 +1990 261 8.15570 8.15570 +1990 262 8.55579 8.55579 +1990 263 8.90251 8.90251 +1990 264 8.75287 8.75287 +1990 265 8.83388 8.83388 +1990 266 9.81504 9.81504 +1990 267 8.72851 8.72851 +1990 268 8.95657 8.95657 +1990 269 8.87286 8.87286 +1990 270 8.58224 8.58224 +1990 271 9.94951 9.94951 +1990 272 5.74838 5.74838 +1990 273 7.94728 7.94728 +1990 274 8.48786 8.48786 +1990 275 8.40182 8.40182 +1990 276 9.74236 9.74236 +1990 277 10.69000 10.69000 +1990 278 10.38370 10.38370 +1990 279 8.92122 8.92122 +1990 280 8.33059 8.33059 +1990 281 10.77690 10.77690 +1990 282 10.00150 10.00150 +1990 283 10.69210 10.69210 +1990 284 12.51170 12.51170 +1990 285 12.25000 12.25000 +1990 286 12.91720 12.91720 +1990 287 12.79730 12.79730 +1990 288 11.67740 11.67740 +1990 289 10.68830 10.68830 +1990 290 10.69340 10.69340 +1990 291 10.82600 10.82600 +1990 292 12.41060 12.41060 +1990 293 12.07080 12.07080 +1990 294 13.39380 13.39380 +1990 295 13.61960 13.61960 +1990 296 13.91100 13.91100 +1990 297 13.88300 13.88300 +1990 298 13.65880 13.65880 +1990 299 12.78690 12.78690 +1990 300 12.33210 12.33210 +1990 301 11.35880 11.35880 +1990 302 13.35730 13.35730 +1990 303 13.18060 13.18060 +1990 304 11.50150 11.50150 +1990 305 11.47950 11.47950 +1990 306 11.54040 11.54040 +1990 307 12.25580 12.25580 +1990 308 14.35090 14.35090 +1990 309 11.83390 11.83390 +1990 310 13.02940 13.02940 +1990 311 14.62330 14.62330 +1990 312 13.47480 13.47480 +1990 313 14.34060 14.34060 +1990 314 13.28080 13.28080 +1990 315 14.64480 14.64480 +1990 316 14.35930 14.35930 +1990 317 13.87750 13.87750 +1990 318 14.14040 14.14040 +1990 319 15.51460 15.51460 +1990 320 14.98460 14.98460 +1990 321 13.28300 13.28300 +1990 322 13.30920 13.30920 +1990 323 13.16920 13.16920 +1990 324 12.57050 12.57050 +1990 325 11.78270 11.78270 +1990 326 14.46050 14.46050 +1990 327 14.23690 14.23690 +1990 328 13.43070 13.43070 +1990 329 13.71010 13.71010 +1990 330 12.85380 12.85380 +1990 331 13.15750 13.15750 +1990 332 13.26870 13.26870 +1990 333 12.91110 12.91110 +1990 334 14.32990 14.32990 +1990 335 13.93190 13.93190 +1990 336 13.85560 13.85560 +1990 337 13.87510 13.87510 +1990 338 13.94860 13.94860 +1990 339 13.40080 13.40080 +1990 340 14.45330 14.45330 +1990 341 17.06830 17.06830 +1990 342 17.74270 17.74270 +1990 343 20.04080 20.04080 +1990 344 18.71660 18.71660 +1990 345 16.87850 16.87850 +1990 346 16.01130 16.01130 +1990 347 16.15360 16.15360 +1990 348 16.94310 16.94310 +1990 349 15.52620 15.52620 +1990 350 13.72390 13.72390 +1990 351 14.53640 14.53640 +1990 352 13.63420 13.63420 +1990 353 14.03280 14.03280 +1990 354 13.60260 13.60260 +1990 355 13.49460 13.49460 +1990 356 14.10290 14.10290 +1990 357 15.56240 15.56240 +1990 358 16.07690 16.07690 +1990 359 17.61200 17.61200 +1990 360 17.30220 17.30220 +1990 361 15.82800 15.82800 +1990 362 15.15440 15.15440 +1990 363 14.58670 14.58670 +1990 364 14.41930 14.41930 +1990 365 15.20010 15.20010 +1991 1 14.20580 14.20580 +1991 2 13.21620 13.21620 +1991 3 16.36680 16.36680 +1991 4 17.65440 17.65440 +1991 5 17.80090 17.80090 +1991 6 16.97860 16.97860 +1991 7 16.61600 16.61600 +1991 8 14.07210 14.07210 +1991 9 13.91670 13.91670 +1991 10 15.96650 15.96650 +1991 11 17.10650 17.10650 +1991 12 15.92060 15.92060 +1991 13 17.38350 17.38350 +1991 14 17.63280 17.63280 +1991 15 17.78590 17.78590 +1991 16 15.02540 15.02540 +1991 17 16.48430 16.48430 +1991 18 17.49010 17.49010 +1991 19 17.40990 17.40990 +1991 20 16.39020 16.39020 +1991 21 16.84750 16.84750 +1991 22 16.68060 16.68060 +1991 23 16.09920 16.09920 +1991 24 17.14330 17.14330 +1991 25 16.72810 16.72810 +1991 26 17.30050 17.30050 +1991 27 17.34420 17.34420 +1991 28 19.64340 19.64340 +1991 29 18.65210 18.65210 +1991 30 16.02300 16.02300 +1991 31 17.43980 17.43980 +1991 32 14.27110 14.27110 +1991 33 14.23200 14.23200 +1991 34 14.64040 14.64040 +1991 35 17.85480 17.85480 +1991 36 16.84400 16.84400 +1991 37 19.51870 19.51870 +1991 38 19.45090 19.45090 +1991 39 19.10980 19.10980 +1991 40 17.86020 17.86020 +1991 41 18.24800 18.24800 +1991 42 18.48080 18.48080 +1991 43 18.17390 18.17390 +1991 44 18.09150 18.09150 +1991 45 18.85540 18.85540 +1991 46 20.18570 20.18570 +1991 47 18.30050 18.30050 +1991 48 17.83990 17.83990 +1991 49 15.69320 15.69320 +1991 50 16.33450 16.33450 +1991 51 16.65520 16.65520 +1991 52 16.08200 16.08200 +1991 53 16.77760 16.77760 +1991 54 15.45480 15.45480 +1991 55 15.33590 15.33590 +1991 56 15.21640 15.21640 +1991 57 15.49480 15.49480 +1991 58 11.80250 11.80250 +1991 59 14.14410 14.14410 +1991 60 15.34170 15.34170 +1991 61 15.46730 15.46730 +1991 62 15.80980 15.80980 +1991 63 15.10700 15.10700 +1991 64 14.51080 14.51080 +1991 65 12.92740 12.92740 +1991 66 12.82360 12.82360 +1991 67 12.88670 12.88670 +1991 68 13.42570 13.42570 +1991 69 14.07100 14.07100 +1991 70 15.37960 15.37960 +1991 71 14.63160 14.63160 +1991 72 14.53670 14.53670 +1991 73 14.56580 14.56580 +1991 74 15.30720 15.30720 +1991 75 14.52970 14.52970 +1991 76 14.69400 14.69400 +1991 77 14.31610 14.31610 +1991 78 14.69800 14.69800 +1991 79 15.14940 15.14940 +1991 80 15.30520 15.30520 +1991 81 15.64770 15.64770 +1991 82 15.14000 15.14000 +1991 83 14.45750 14.45750 +1991 84 13.60640 13.60640 +1991 85 13.86940 13.86940 +1991 86 15.09540 15.09540 +1991 87 15.37780 15.37780 +1991 88 13.27410 13.27410 +1991 89 13.42840 13.42840 +1991 90 13.61110 13.61110 +1991 91 15.17210 15.17210 +1991 92 16.12820 16.12820 +1991 93 14.06100 14.06100 +1991 94 14.51630 14.51630 +1991 95 13.45360 13.45360 +1991 96 11.79650 11.79650 +1991 97 11.52350 11.52350 +1991 98 7.93689 7.93689 +1991 99 9.50084 9.50084 +1991 100 10.80710 10.80710 +1991 101 10.25340 10.25340 +1991 102 12.12060 12.12060 +1991 103 12.00470 12.00470 +1991 104 12.37260 12.37260 +1991 105 12.82630 12.82630 +1991 106 13.39220 13.39220 +1991 107 13.63400 13.63400 +1991 108 12.03770 12.03770 +1991 109 10.43660 10.43660 +1991 110 9.18572 9.18572 +1991 111 8.31793 8.31793 +1991 112 11.16240 11.16240 +1991 113 9.94411 9.94411 +1991 114 10.61400 10.61400 +1991 115 11.63640 11.63640 +1991 116 10.49830 10.49830 +1991 117 10.98980 10.98980 +1991 118 10.90150 10.90150 +1991 119 8.81386 8.81386 +1991 120 9.46305 9.46305 +1991 121 11.32090 11.32090 +1991 122 10.73670 10.73670 +1991 123 9.42940 9.42940 +1991 124 8.14054 8.14054 +1991 125 8.62067 8.62067 +1991 126 9.80287 9.80287 +1991 127 10.29250 10.29250 +1991 128 10.91470 10.91470 +1991 129 10.38430 10.38430 +1991 130 9.73061 9.73061 +1991 131 9.49722 9.49722 +1991 132 8.25352 8.25352 +1991 133 9.85890 9.85890 +1991 134 8.88075 8.88075 +1991 135 9.38348 9.38348 +1991 136 10.42080 10.42080 +1991 137 9.60618 9.60618 +1991 138 9.13236 9.13236 +1991 139 10.80880 10.80880 +1991 140 9.78233 9.78233 +1991 141 10.06710 10.06710 +1991 142 8.11501 8.11501 +1991 143 9.84842 9.84842 +1991 144 8.16281 8.16281 +1991 145 8.13991 8.13991 +1991 146 9.14567 9.14567 +1991 147 9.40420 9.40420 +1991 148 9.59113 9.59113 +1991 149 7.22954 7.22954 +1991 150 8.67341 8.67341 +1991 151 10.53440 10.53440 +1991 152 8.94872 8.94872 +1991 153 7.91388 7.91388 +1991 154 8.11413 8.11413 +1991 155 11.82010 11.82010 +1991 156 10.54770 10.54770 +1991 157 7.18260 7.18260 +1991 158 6.75509 6.75509 +1991 159 6.37317 6.37317 +1991 160 5.10020 5.10020 +1991 161 6.07614 6.07614 +1991 162 8.09240 8.09240 +1991 163 7.80830 7.80830 +1991 164 6.90268 6.90268 +1991 165 10.41980 10.41980 +1991 166 8.58693 8.58693 +1991 167 8.43883 8.43883 +1991 168 9.60359 9.60359 +1991 169 8.12133 8.12133 +1991 170 6.82435 6.82435 +1991 171 3.53957 3.53957 +1991 172 5.17868 5.17868 +1991 173 8.40175 8.40175 +1991 174 8.04767 8.04767 +1991 175 8.12248 8.12248 +1991 176 6.12485 6.12485 +1991 177 6.14498 6.14498 +1991 178 5.94662 5.94662 +1991 179 5.28104 5.28104 +1991 180 5.08632 5.08632 +1991 181 6.88963 6.88963 +1991 182 7.03709 7.03709 +1991 183 5.25660 5.25660 +1991 184 5.05664 5.05664 +1991 185 5.05483 5.05483 +1991 186 4.90657 4.90657 +1991 187 4.86559 4.86559 +1991 188 5.60946 5.60946 +1991 189 7.58206 7.58206 +1991 190 6.06703 6.06703 +1991 191 4.36048 4.36048 +1991 192 4.95683 4.95683 +1991 193 6.05260 6.05260 +1991 194 4.75147 4.75147 +1991 195 4.63986 4.63986 +1991 196 5.22489 5.22489 +1991 197 9.11455 9.11455 +1991 198 10.42850 10.42850 +1991 199 8.85663 8.85663 +1991 200 7.98426 7.98426 +1991 201 7.68536 7.68536 +1991 202 8.74445 8.74445 +1991 203 9.36134 9.36134 +1991 204 6.49748 6.49748 +1991 205 6.57343 6.57343 +1991 206 5.07854 5.07854 +1991 207 5.73859 5.73859 +1991 208 6.60250 6.60250 +1991 209 6.01859 6.01859 +1991 210 8.48312 8.48312 +1991 211 8.46443 8.46443 +1991 212 8.95019 8.95019 +1991 213 7.05902 7.05902 +1991 214 5.72432 5.72432 +1991 215 6.02207 6.02207 +1991 216 6.89077 6.89077 +1991 217 9.68845 9.68845 +1991 218 10.75570 10.75570 +1991 219 10.53570 10.53570 +1991 220 11.29840 11.29840 +1991 221 8.22768 8.22768 +1991 222 6.58036 6.58036 +1991 223 6.67891 6.67891 +1991 224 9.47743 9.47743 +1991 225 9.05566 9.05566 +1991 226 9.59834 9.59834 +1991 227 10.89880 10.89880 +1991 228 7.90702 7.90702 +1991 229 5.56800 5.56800 +1991 230 5.15201 5.15201 +1991 231 7.06417 7.06417 +1991 232 8.39998 8.39998 +1991 233 9.07286 9.07286 +1991 234 8.17233 8.17233 +1991 235 8.48437 8.48437 +1991 236 9.22762 9.22762 +1991 237 9.63111 9.63111 +1991 238 9.67129 9.67129 +1991 239 7.84388 7.84388 +1991 240 8.32781 8.32781 +1991 241 9.10139 9.10139 +1991 242 9.89343 9.89343 +1991 243 10.20840 10.20840 +1991 244 10.80050 10.80050 +1991 245 8.47889 8.47889 +1991 246 7.88122 7.88122 +1991 247 7.16331 7.16331 +1991 248 6.50751 6.50751 +1991 249 6.28702 6.28702 +1991 250 8.43840 8.43840 +1991 251 8.41684 8.41684 +1991 252 8.57028 8.57028 +1991 253 8.99856 8.99856 +1991 254 8.65023 8.65023 +1991 255 10.84050 10.84050 +1991 256 11.63860 11.63860 +1991 257 11.19290 11.19290 +1991 258 9.51658 9.51658 +1991 259 9.05723 9.05723 +1991 260 10.72680 10.72680 +1991 261 11.21220 11.21220 +1991 262 10.33710 10.33710 +1991 263 9.60087 9.60087 +1991 264 10.35420 10.35420 +1991 265 9.87296 9.87296 +1991 266 8.79865 8.79865 +1991 267 8.95694 8.95694 +1991 268 8.57743 8.57743 +1991 269 9.42113 9.42113 +1991 270 8.43947 8.43947 +1991 271 8.95545 8.95545 +1991 272 9.90110 9.90110 +1991 273 9.03420 9.03420 +1991 274 8.52131 8.52131 +1991 275 9.33827 9.33827 +1991 276 7.48988 7.48988 +1991 277 8.04887 8.04887 +1991 278 8.18837 8.18837 +1991 279 9.05729 9.05729 +1991 280 13.10130 13.10130 +1991 281 13.03640 13.03640 +1991 282 10.62340 10.62340 +1991 283 9.23672 9.23672 +1991 284 8.12574 8.12574 +1991 285 7.79449 7.79449 +1991 286 7.61610 7.61610 +1991 287 10.58240 10.58240 +1991 288 12.24050 12.24050 +1991 289 11.28840 11.28840 +1991 290 10.46720 10.46720 +1991 291 11.29850 11.29850 +1991 292 10.96090 10.96090 +1991 293 11.46460 11.46460 +1991 294 11.13610 11.13610 +1991 295 11.80380 11.80380 +1991 296 12.45880 12.45880 +1991 297 11.31780 11.31780 +1991 298 12.29610 12.29610 +1991 299 11.84980 11.84980 +1991 300 12.33600 12.33600 +1991 301 12.73980 12.73980 +1991 302 11.30010 11.30010 +1991 303 11.54360 11.54360 +1991 304 11.36530 11.36530 +1991 305 10.99390 10.99390 +1991 306 9.59873 9.59873 +1991 307 10.01180 10.01180 +1991 308 11.62010 11.62010 +1991 309 11.40370 11.40370 +1991 310 10.75410 10.75410 +1991 311 12.83170 12.83170 +1991 312 10.39700 10.39700 +1991 313 9.63578 9.63578 +1991 314 8.90222 8.90222 +1991 315 9.88814 9.88814 +1991 316 10.75720 10.75720 +1991 317 10.72700 10.72700 +1991 318 10.09930 10.09930 +1991 319 11.54140 11.54140 +1991 320 12.85490 12.85490 +1991 321 11.89450 11.89450 +1991 322 11.88490 11.88490 +1991 323 12.42120 12.42120 +1991 324 10.79870 10.79870 +1991 325 10.83890 10.83890 +1991 326 11.61560 11.61560 +1991 327 10.45150 10.45150 +1991 328 11.21810 11.21810 +1991 329 11.11050 11.11050 +1991 330 11.11160 11.11160 +1991 331 13.08690 13.08690 +1991 332 12.35050 12.35050 +1991 333 12.02670 12.02670 +1991 334 12.45000 12.45000 +1991 335 12.04330 12.04330 +1991 336 10.21260 10.21260 +1991 337 11.45090 11.45090 +1991 338 12.70320 12.70320 +1991 339 11.99630 11.99630 +1991 340 14.05310 14.05310 +1991 341 13.93740 13.93740 +1991 342 12.61000 12.61000 +1991 343 14.71470 14.71470 +1991 344 15.63070 15.63070 +1991 345 14.35420 14.35420 +1991 346 14.37640 14.37640 +1991 347 14.89460 14.89460 +1991 348 13.89220 13.89220 +1991 349 12.35230 12.35230 +1991 350 13.15150 13.15150 +1991 351 14.76780 14.76780 +1991 352 15.15890 15.15890 +1991 353 15.54530 15.54530 +1991 354 15.63790 15.63790 +1991 355 16.27270 16.27270 +1991 356 17.06340 17.06340 +1991 357 17.08990 17.08990 +1991 358 17.70370 17.70370 +1991 359 16.84850 16.84850 +1991 360 17.28190 17.28190 +1991 361 17.69320 17.69320 +1991 362 17.73940 17.73940 +1991 363 17.45970 17.45970 +1991 364 15.96560 15.96560 +1991 365 14.26020 14.26020 +1992 1 12.31830 12.31830 +1992 2 12.41770 12.41770 +1992 3 14.28310 14.28310 +1992 4 15.03570 15.03570 +1992 5 16.13620 16.13620 +1992 6 15.66730 15.66730 +1992 7 17.47780 17.47780 +1992 8 16.80110 16.80110 +1992 9 17.30430 17.30430 +1992 10 17.10050 17.10050 +1992 11 16.17960 16.17960 +1992 12 16.02580 16.02580 +1992 13 18.17410 18.17410 +1992 14 18.70520 18.70520 +1992 15 17.08610 17.08610 +1992 16 16.86190 16.86190 +1992 17 18.09960 18.09960 +1992 18 14.48710 14.48710 +1992 19 14.35870 14.35870 +1992 20 15.18520 15.18520 +1992 21 15.15940 15.15940 +1992 22 16.99380 16.99380 +1992 23 16.21570 16.21570 +1992 24 17.48570 17.48570 +1992 25 16.36260 16.36260 +1992 26 16.85460 16.85460 +1992 27 16.91870 16.91870 +1992 28 17.95210 17.95210 +1992 29 15.66230 15.66230 +1992 30 16.98190 16.98190 +1992 31 15.68430 15.68430 +1992 32 15.14970 15.14970 +1992 33 13.99290 13.99290 +1992 34 13.99440 13.99440 +1992 35 15.30550 15.30550 +1992 36 15.85460 15.85460 +1992 37 16.08860 16.08860 +1992 38 15.72230 15.72230 +1992 39 16.63060 16.63060 +1992 40 17.59210 17.59210 +1992 41 17.47040 17.47040 +1992 42 17.14960 17.14960 +1992 43 18.00010 18.00010 +1992 44 17.54800 17.54800 +1992 45 19.75820 19.75820 +1992 46 17.60010 17.60010 +1992 47 15.73950 15.73950 +1992 48 16.07860 16.07860 +1992 49 14.72600 14.72600 +1992 50 17.77830 17.77830 +1992 51 16.34100 16.34100 +1992 52 17.88650 17.88650 +1992 53 17.00720 17.00720 +1992 54 17.67890 17.67890 +1992 55 17.46860 17.46860 +1992 56 15.55170 15.55170 +1992 57 13.68180 13.68180 +1992 58 13.32930 13.32930 +1992 59 11.52710 11.52710 +1992 60 12.14240 12.14240 +1992 61 13.08080 13.08080 +1992 62 14.56240 14.56240 +1992 63 14.53390 14.53390 +1992 64 15.74470 15.74470 +1992 65 15.82300 15.82300 +1992 66 15.11780 15.11780 +1992 67 18.11330 18.11330 +1992 68 17.90150 17.90150 +1992 69 14.78370 14.78370 +1992 70 15.77510 15.77510 +1992 71 15.12760 15.12760 +1992 72 13.57900 13.57900 +1992 73 12.37390 12.37390 +1992 74 12.88750 12.88750 +1992 75 14.29510 14.29510 +1992 76 13.51610 13.51610 +1992 77 12.62620 12.62620 +1992 78 12.99710 12.99710 +1992 79 11.57280 11.57280 +1992 80 13.59650 13.59650 +1992 81 11.22130 11.22130 +1992 82 10.23680 10.23680 +1992 83 10.77650 10.77650 +1992 84 12.01330 12.01330 +1992 85 12.87730 12.87730 +1992 86 12.72690 12.72690 +1992 87 11.58300 11.58300 +1992 88 12.37250 12.37250 +1992 89 14.58220 14.58220 +1992 90 12.71160 12.71160 +1992 91 11.75850 11.75850 +1992 92 11.35250 11.35250 +1992 93 7.86058 7.86058 +1992 94 8.04969 8.04969 +1992 95 8.78224 8.78224 +1992 96 10.54940 10.54940 +1992 97 11.56950 11.56950 +1992 98 11.96340 11.96340 +1992 99 13.51310 13.51310 +1992 100 13.61640 13.61640 +1992 101 14.84290 14.84290 +1992 102 12.45720 12.45720 +1992 103 11.62130 11.62130 +1992 104 11.19550 11.19550 +1992 105 10.09950 10.09950 +1992 106 9.84762 9.84762 +1992 107 9.74144 9.74144 +1992 108 9.99564 9.99564 +1992 109 10.23580 10.23580 +1992 110 9.16851 9.16851 +1992 111 8.96030 8.96030 +1992 112 8.43802 8.43802 +1992 113 8.32083 8.32083 +1992 114 8.86891 8.86891 +1992 115 10.61990 10.61990 +1992 116 11.55650 11.55650 +1992 117 13.33690 13.33690 +1992 118 11.51510 11.51510 +1992 119 10.41250 10.41250 +1992 120 9.51370 9.51370 +1992 121 9.17517 9.17517 +1992 122 10.67380 10.67380 +1992 123 10.89200 10.89200 +1992 124 11.61160 11.61160 +1992 125 10.83740 10.83740 +1992 126 10.35900 10.35900 +1992 127 9.65829 9.65829 +1992 128 6.29407 6.29407 +1992 129 6.13541 6.13541 +1992 130 7.29026 7.29026 +1992 131 9.35763 9.35763 +1992 132 9.11947 9.11947 +1992 133 7.23168 7.23168 +1992 134 8.34281 8.34281 +1992 135 11.48580 11.48580 +1992 136 6.98507 6.98507 +1992 137 7.43184 7.43184 +1992 138 8.47446 8.47446 +1992 139 9.34649 9.34649 +1992 140 9.06493 9.06493 +1992 141 7.92248 7.92248 +1992 142 8.54709 8.54709 +1992 143 6.82529 6.82529 +1992 144 7.89423 7.89423 +1992 145 8.97232 8.97232 +1992 146 6.55837 6.55837 +1992 147 5.85519 5.85519 +1992 148 7.83955 7.83955 +1992 149 6.98045 6.98045 +1992 150 6.26376 6.26376 +1992 151 5.48922 5.48922 +1992 152 4.48324 4.48324 +1992 153 5.02014 5.02014 +1992 154 5.59890 5.59890 +1992 155 6.43488 6.43488 +1992 156 7.79504 7.79504 +1992 157 10.26660 10.26660 +1992 158 11.70650 11.70650 +1992 159 11.03420 11.03420 +1992 160 9.10950 9.10950 +1992 161 9.50835 9.50835 +1992 162 9.03448 9.03448 +1992 163 10.43450 10.43450 +1992 164 9.39242 9.39242 +1992 165 6.62011 6.62011 +1992 166 7.44795 7.44795 +1992 167 7.16081 7.16081 +1992 168 7.66107 7.66107 +1992 169 8.29632 8.29632 +1992 170 8.16714 8.16714 +1992 171 5.81940 5.81940 +1992 172 4.17913 4.17913 +1992 173 4.43745 4.43745 +1992 174 5.31564 5.31564 +1992 175 5.06827 5.06827 +1992 176 4.75616 4.75616 +1992 177 4.58960 4.58960 +1992 178 3.20306 3.20306 +1992 179 5.71541 5.71541 +1992 180 8.02092 8.02092 +1992 181 4.18444 4.18444 +1992 182 3.82807 3.82807 +1992 183 6.81225 6.81225 +1992 184 9.06699 9.06699 +1992 185 10.07470 10.07470 +1992 186 10.46740 10.46740 +1992 187 8.63370 8.63370 +1992 188 8.53670 8.53670 +1992 189 9.57540 9.57540 +1992 190 7.41502 7.41502 +1992 191 5.70771 5.70771 +1992 192 5.69382 5.69382 +1992 193 6.51416 6.51416 +1992 194 6.81162 6.81162 +1992 195 7.86425 7.86425 +1992 196 8.62221 8.62221 +1992 197 7.90228 7.90228 +1992 198 7.26913 7.26913 +1992 199 6.09143 6.09143 +1992 200 6.59256 6.59256 +1992 201 9.71968 9.71968 +1992 202 11.03700 11.03700 +1992 203 9.40100 9.40100 +1992 204 6.39456 6.39456 +1992 205 7.23001 7.23001 +1992 206 5.92114 5.92114 +1992 207 7.40300 7.40300 +1992 208 4.80829 4.80829 +1992 209 8.02805 8.02805 +1992 210 9.11726 9.11726 +1992 211 9.15174 9.15174 +1992 212 9.00508 9.00508 +1992 213 7.73779 7.73779 +1992 214 7.20582 7.20582 +1992 215 8.75509 8.75509 +1992 216 7.99549 7.99549 +1992 217 4.41721 4.41721 +1992 218 6.70953 6.70953 +1992 219 7.08123 7.08123 +1992 220 9.12524 9.12524 +1992 221 11.17900 11.17900 +1992 222 8.98518 8.98518 +1992 223 6.81757 6.81757 +1992 224 8.23628 8.23628 +1992 225 8.41294 8.41294 +1992 226 9.04695 9.04695 +1992 227 7.83070 7.83070 +1992 228 6.63973 6.63973 +1992 229 6.78313 6.78313 +1992 230 5.87571 5.87571 +1992 231 7.01854 7.01854 +1992 232 7.66529 7.66529 +1992 233 6.63115 6.63115 +1992 234 5.33873 5.33873 +1992 235 4.79600 4.79600 +1992 236 5.04363 5.04363 +1992 237 6.79115 6.79115 +1992 238 8.14553 8.14553 +1992 239 5.39703 5.39703 +1992 240 4.80492 4.80492 +1992 241 5.09043 5.09043 +1992 242 4.73164 4.73164 +1992 243 5.15620 5.15620 +1992 244 6.56063 6.56063 +1992 245 8.58441 8.58441 +1992 246 8.45632 8.45632 +1992 247 8.25540 8.25540 +1992 248 8.49002 8.49002 +1992 249 7.85048 7.85048 +1992 250 7.47197 7.47197 +1992 251 6.41340 6.41340 +1992 252 6.73038 6.73038 +1992 253 5.67571 5.67571 +1992 254 5.73461 5.73461 +1992 255 5.31952 5.31952 +1992 256 7.11865 7.11865 +1992 257 7.72701 7.72701 +1992 258 7.87972 7.87972 +1992 259 7.26684 7.26684 +1992 260 7.86519 7.86519 +1992 261 7.91263 7.91263 +1992 262 9.09593 9.09593 +1992 263 8.69222 8.69222 +1992 264 8.11287 8.11287 +1992 265 8.67809 8.67809 +1992 266 8.98975 8.98975 +1992 267 9.94856 9.94856 +1992 268 8.27638 8.27638 +1992 269 8.87355 8.87355 +1992 270 7.63123 7.63123 +1992 271 7.60964 7.60964 +1992 272 7.74563 7.74563 +1992 273 7.74165 7.74165 +1992 274 8.93765 8.93765 +1992 275 10.43580 10.43580 +1992 276 8.89590 8.89590 +1992 277 8.59369 8.59369 +1992 278 8.29904 8.29904 +1992 279 9.16879 9.16879 +1992 280 9.08094 9.08094 +1992 281 10.20100 10.20100 +1992 282 9.63222 9.63222 +1992 283 10.07800 10.07800 +1992 284 11.49370 11.49370 +1992 285 12.09630 12.09630 +1992 286 10.85570 10.85570 +1992 287 5.97017 5.97017 +1992 288 6.27274 6.27274 +1992 289 8.67496 8.67496 +1992 290 8.67198 8.67198 +1992 291 8.78628 8.78628 +1992 292 9.78231 9.78231 +1992 293 9.86989 9.86989 +1992 294 11.56640 11.56640 +1992 295 11.76910 11.76910 +1992 296 10.17300 10.17300 +1992 297 10.44250 10.44250 +1992 298 11.07340 11.07340 +1992 299 10.62050 10.62050 +1992 300 9.94132 9.94132 +1992 301 8.47953 8.47953 +1992 302 8.59576 8.59576 +1992 303 10.32680 10.32680 +1992 304 12.06040 12.06040 +1992 305 12.76800 12.76800 +1992 306 13.02250 13.02250 +1992 307 12.38670 12.38670 +1992 308 13.68820 13.68820 +1992 309 13.54870 13.54870 +1992 310 11.98470 11.98470 +1992 311 12.96910 12.96910 +1992 312 12.74690 12.74690 +1992 313 12.77620 12.77620 +1992 314 12.13190 12.13190 +1992 315 12.18980 12.18980 +1992 316 13.14740 13.14740 +1992 317 13.50470 13.50470 +1992 318 13.50030 13.50030 +1992 319 13.42060 13.42060 +1992 320 13.72330 13.72330 +1992 321 13.24010 13.24010 +1992 322 10.54670 10.54670 +1992 323 9.87448 9.87448 +1992 324 11.32430 11.32430 +1992 325 11.70510 11.70510 +1992 326 11.97180 11.97180 +1992 327 13.23710 13.23710 +1992 328 13.76850 13.76850 +1992 329 13.29410 13.29410 +1992 330 13.49380 13.49380 +1992 331 14.67510 14.67510 +1992 332 15.91820 15.91820 +1992 333 13.37690 13.37690 +1992 334 15.61540 15.61540 +1992 335 14.69500 14.69500 +1992 336 15.51910 15.51910 +1992 337 14.95160 14.95160 +1992 338 16.10700 16.10700 +1992 339 13.10490 13.10490 +1992 340 13.02060 13.02060 +1992 341 13.49820 13.49820 +1992 342 14.19110 14.19110 +1992 343 15.67660 15.67660 +1992 344 15.31810 15.31810 +1992 345 15.66490 15.66490 +1992 346 14.89730 14.89730 +1992 347 14.45980 14.45980 +1992 348 12.54640 12.54640 +1992 349 12.96480 12.96480 +1992 350 15.20540 15.20540 +1992 351 14.96540 14.96540 +1992 352 12.86980 12.86980 +1992 353 10.41130 10.41130 +1992 354 10.64280 10.64280 +1992 355 9.95082 9.95082 +1992 356 12.14520 12.14520 +1992 357 14.29940 14.29940 +1992 358 13.55760 13.55760 +1992 359 15.83370 15.83370 +1992 360 16.05130 16.05130 +1992 361 14.85870 14.85870 +1992 362 16.11550 16.11550 +1992 363 16.37770 16.37770 +1992 364 15.68960 15.68960 +1992 365 12.50530 12.50530 +1992 366 13.59310 13.59310 +1993 1 15.26060 15.26060 +1993 2 14.60580 14.60580 +1993 3 13.58780 13.58780 +1993 4 13.64500 13.64500 +1993 5 13.67440 13.67440 +1993 6 14.98480 14.98480 +1993 7 15.63880 15.63880 +1993 8 15.11370 15.11370 +1993 9 15.76270 15.76270 +1993 10 17.53540 17.53540 +1993 11 17.62120 17.62120 +1993 12 16.77420 16.77420 +1993 13 14.46050 14.46050 +1993 14 14.69250 14.69250 +1993 15 16.09500 16.09500 +1993 16 16.35850 16.35850 +1993 17 18.21700 18.21700 +1993 18 17.94580 17.94580 +1993 19 18.24100 18.24100 +1993 20 17.89840 17.89840 +1993 21 18.03720 18.03720 +1993 22 16.39780 16.39780 +1993 23 16.52200 16.52200 +1993 24 16.85650 16.85650 +1993 25 16.72970 16.72970 +1993 26 14.34480 14.34480 +1993 27 14.62380 14.62380 +1993 28 15.15070 15.15070 +1993 29 15.18560 15.18560 +1993 30 13.28900 13.28900 +1993 31 12.32660 12.32660 +1993 32 12.20850 12.20850 +1993 33 12.05060 12.05060 +1993 34 13.84470 13.84470 +1993 35 15.35360 15.35360 +1993 36 16.43960 16.43960 +1993 37 15.50990 15.50990 +1993 38 14.96250 14.96250 +1993 39 17.13120 17.13120 +1993 40 16.92530 16.92530 +1993 41 16.17740 16.17740 +1993 42 17.22290 17.22290 +1993 43 17.87670 17.87670 +1993 44 15.47110 15.47110 +1993 45 14.19780 14.19780 +1993 46 13.80830 13.80830 +1993 47 14.52340 14.52340 +1993 48 14.77720 14.77720 +1993 49 15.19370 15.19370 +1993 50 16.13530 16.13530 +1993 51 16.76070 16.76070 +1993 52 15.66990 15.66990 +1993 53 17.50160 17.50160 +1993 54 17.27720 17.27720 +1993 55 16.78050 16.78050 +1993 56 16.79220 16.79220 +1993 57 16.97770 16.97770 +1993 58 16.80840 16.80840 +1993 59 16.84700 16.84700 +1993 60 16.65690 16.65690 +1993 61 16.24690 16.24690 +1993 62 15.29500 15.29500 +1993 63 14.63640 14.63640 +1993 64 14.11610 14.11610 +1993 65 13.55950 13.55950 +1993 66 13.71990 13.71990 +1993 67 13.81730 13.81730 +1993 68 13.11310 13.11310 +1993 69 14.72900 14.72900 +1993 70 14.71480 14.71480 +1993 71 15.05820 15.05820 +1993 72 14.89370 14.89370 +1993 73 13.76090 13.76090 +1993 74 13.79800 13.79800 +1993 75 13.58840 13.58840 +1993 76 14.08960 14.08960 +1993 77 12.08340 12.08340 +1993 78 11.99470 11.99470 +1993 79 12.06780 12.06780 +1993 80 9.57183 9.57183 +1993 81 11.26140 11.26140 +1993 82 12.16410 12.16410 +1993 83 12.79090 12.79090 +1993 84 12.86790 12.86790 +1993 85 12.39240 12.39240 +1993 86 13.74990 13.74990 +1993 87 14.58190 14.58190 +1993 88 14.73450 14.73450 +1993 89 15.66270 15.66270 +1993 90 13.58570 13.58570 +1993 91 11.73800 11.73800 +1993 92 12.20550 12.20550 +1993 93 13.72020 13.72020 +1993 94 14.54500 14.54500 +1993 95 14.18710 14.18710 +1993 96 13.95130 13.95130 +1993 97 14.41780 14.41780 +1993 98 13.89860 13.89860 +1993 99 10.79500 10.79500 +1993 100 9.70403 9.70403 +1993 101 10.51910 10.51910 +1993 102 11.65120 11.65120 +1993 103 9.83005 9.83005 +1993 104 10.04500 10.04500 +1993 105 11.14370 11.14370 +1993 106 11.23520 11.23520 +1993 107 11.42960 11.42960 +1993 108 12.12620 12.12620 +1993 109 11.29180 11.29180 +1993 110 11.78590 11.78590 +1993 111 8.24390 8.24390 +1993 112 7.58094 7.58094 +1993 113 8.39111 8.39111 +1993 114 8.97098 8.97098 +1993 115 11.83310 11.83310 +1993 116 9.77395 9.77395 +1993 117 9.80659 9.80659 +1993 118 10.42050 10.42050 +1993 119 9.70480 9.70480 +1993 120 9.81772 9.81772 +1993 121 10.20280 10.20280 +1993 122 9.71390 9.71390 +1993 123 10.23560 10.23560 +1993 124 11.49710 11.49710 +1993 125 12.37790 12.37790 +1993 126 9.86763 9.86763 +1993 127 8.25931 8.25931 +1993 128 9.37848 9.37848 +1993 129 10.71130 10.71130 +1993 130 10.96890 10.96890 +1993 131 11.67180 11.67180 +1993 132 12.66060 12.66060 +1993 133 11.10770 11.10770 +1993 134 12.47170 12.47170 +1993 135 13.17400 13.17400 +1993 136 10.33220 10.33220 +1993 137 10.71060 10.71060 +1993 138 9.82823 9.82823 +1993 139 9.84995 9.84995 +1993 140 9.10081 9.10081 +1993 141 8.27249 8.27249 +1993 142 8.54467 8.54467 +1993 143 8.53067 8.53067 +1993 144 9.36443 9.36443 +1993 145 9.35932 9.35932 +1993 146 9.81910 9.81910 +1993 147 6.01984 6.01984 +1993 148 8.90762 8.90762 +1993 149 9.77850 9.77850 +1993 150 8.73333 8.73333 +1993 151 9.49759 9.49759 +1993 152 10.97550 10.97550 +1993 153 9.12336 9.12336 +1993 154 10.72480 10.72480 +1993 155 11.60910 11.60910 +1993 156 11.50340 11.50340 +1993 157 8.87976 8.87976 +1993 158 9.67871 9.67871 +1993 159 10.62870 10.62870 +1993 160 9.42608 9.42608 +1993 161 8.81786 8.81786 +1993 162 10.24700 10.24700 +1993 163 11.28950 11.28950 +1993 164 8.32736 8.32736 +1993 165 7.82170 7.82170 +1993 166 9.60717 9.60717 +1993 167 9.03142 9.03142 +1993 168 8.35866 8.35866 +1993 169 8.08014 8.08014 +1993 170 9.33216 9.33216 +1993 171 9.41585 9.41585 +1993 172 8.77454 8.77454 +1993 173 7.97817 7.97817 +1993 174 7.69150 7.69150 +1993 175 6.76018 6.76018 +1993 176 6.31310 6.31310 +1993 177 7.63985 7.63985 +1993 178 6.96573 6.96573 +1993 179 6.62261 6.62261 +1993 180 6.07202 6.07202 +1993 181 5.05628 5.05628 +1993 182 4.71774 4.71774 +1993 183 4.67723 4.67723 +1993 184 5.98890 5.98890 +1993 185 8.57231 8.57231 +1993 186 9.21097 9.21097 +1993 187 6.82913 6.82913 +1993 188 5.98515 5.98515 +1993 189 6.16211 6.16211 +1993 190 7.14634 7.14634 +1993 191 6.52268 6.52268 +1993 192 5.02527 5.02527 +1993 193 5.11403 5.11403 +1993 194 5.54835 5.54835 +1993 195 6.82419 6.82419 +1993 196 6.27416 6.27416 +1993 197 7.36297 7.36297 +1993 198 6.77984 6.77984 +1993 199 6.46123 6.46123 +1993 200 8.30297 8.30297 +1993 201 9.53646 9.53646 +1993 202 7.83789 7.83789 +1993 203 7.43644 7.43644 +1993 204 8.97881 8.97881 +1993 205 5.84193 5.84193 +1993 206 5.00931 5.00931 +1993 207 7.18430 7.18430 +1993 208 8.47680 8.47680 +1993 209 7.70240 7.70240 +1993 210 8.93339 8.93339 +1993 211 7.67159 7.67159 +1993 212 6.70873 6.70873 +1993 213 7.62231 7.62231 +1993 214 8.66750 8.66750 +1993 215 7.63291 7.63291 +1993 216 6.02726 6.02726 +1993 217 5.19212 5.19212 +1993 218 5.54672 5.54672 +1993 219 7.01434 7.01434 +1993 220 7.26330 7.26330 +1993 221 8.34831 8.34831 +1993 222 7.19130 7.19130 +1993 223 6.62819 6.62819 +1993 224 7.56350 7.56350 +1993 225 7.38631 7.38631 +1993 226 7.17786 7.17786 +1993 227 4.99907 4.99907 +1993 228 4.79507 4.79507 +1993 229 8.01609 8.01609 +1993 230 5.73793 5.73793 +1993 231 5.75701 5.75701 +1993 232 8.34928 8.34928 +1993 233 7.47256 7.47256 +1993 234 7.01997 7.01997 +1993 235 6.88760 6.88760 +1993 236 8.58281 8.58281 +1993 237 7.17651 7.17651 +1993 238 8.67650 8.67650 +1993 239 5.66964 5.66964 +1993 240 6.14131 6.14131 +1993 241 5.98784 5.98784 +1993 242 5.93576 5.93576 +1993 243 6.57170 6.57170 +1993 244 6.19148 6.19148 +1993 245 6.61941 6.61941 +1993 246 9.09022 9.09022 +1993 247 6.86780 6.86780 +1993 248 5.33770 5.33770 +1993 249 5.39253 5.39253 +1993 250 6.51046 6.51046 +1993 251 6.82292 6.82292 +1993 252 7.44774 7.44774 +1993 253 8.40147 8.40147 +1993 254 9.74656 9.74656 +1993 255 8.80793 8.80793 +1993 256 9.08856 9.08856 +1993 257 9.14261 9.14261 +1993 258 9.54213 9.54213 +1993 259 8.77988 8.77988 +1993 260 8.90060 8.90060 +1993 261 6.51177 6.51177 +1993 262 7.57650 7.57650 +1993 263 8.55781 8.55781 +1993 264 7.51738 7.51738 +1993 265 8.18443 8.18443 +1993 266 7.19937 7.19937 +1993 267 6.85479 6.85479 +1993 268 7.81566 7.81566 +1993 269 6.96311 6.96311 +1993 270 5.91569 5.91569 +1993 271 7.46214 7.46214 +1993 272 9.50722 9.50722 +1993 273 9.92128 9.92128 +1993 274 10.59470 10.59470 +1993 275 10.89230 10.89230 +1993 276 10.20910 10.20910 +1993 277 9.80479 9.80479 +1993 278 11.89210 11.89210 +1993 279 12.99060 12.99060 +1993 280 13.84590 13.84590 +1993 281 11.69310 11.69310 +1993 282 10.53480 10.53480 +1993 283 11.41560 11.41560 +1993 284 9.25300 9.25300 +1993 285 8.67996 8.67996 +1993 286 9.47462 9.47462 +1993 287 10.76430 10.76430 +1993 288 10.34710 10.34710 +1993 289 9.69717 9.69717 +1993 290 9.89469 9.89469 +1993 291 12.15480 12.15480 +1993 292 13.51250 13.51250 +1993 293 11.64880 11.64880 +1993 294 10.31360 10.31360 +1993 295 8.70892 8.70892 +1993 296 10.25300 10.25300 +1993 297 10.12870 10.12870 +1993 298 10.72910 10.72910 +1993 299 10.50450 10.50450 +1993 300 11.50630 11.50630 +1993 301 11.10150 11.10150 +1993 302 11.45750 11.45750 +1993 303 13.17350 13.17350 +1993 304 11.93160 11.93160 +1993 305 9.65708 9.65708 +1993 306 9.49246 9.49246 +1993 307 10.28230 10.28230 +1993 308 11.96990 11.96990 +1993 309 12.67300 12.67300 +1993 310 10.96440 10.96440 +1993 311 11.88170 11.88170 +1993 312 10.18370 10.18370 +1993 313 10.12400 10.12400 +1993 314 12.66560 12.66560 +1993 315 11.40960 11.40960 +1993 316 10.67190 10.67190 +1993 317 9.82654 9.82654 +1993 318 10.89750 10.89750 +1993 319 12.58590 12.58590 +1993 320 13.06250 13.06250 +1993 321 11.94850 11.94850 +1993 322 11.71500 11.71500 +1993 323 12.36720 12.36720 +1993 324 12.96160 12.96160 +1993 325 10.67520 10.67520 +1993 326 9.78581 9.78581 +1993 327 11.04020 11.04020 +1993 328 11.41680 11.41680 +1993 329 12.44880 12.44880 +1993 330 12.69740 12.69740 +1993 331 12.71560 12.71560 +1993 332 11.64730 11.64730 +1993 333 11.01100 11.01100 +1993 334 12.06170 12.06170 +1993 335 13.21590 13.21590 +1993 336 13.58130 13.58130 +1993 337 13.00490 13.00490 +1993 338 13.17180 13.17180 +1993 339 12.30640 12.30640 +1993 340 12.01440 12.01440 +1993 341 12.14110 12.14110 +1993 342 13.15860 13.15860 +1993 343 13.21060 13.21060 +1993 344 14.22380 14.22380 +1993 345 14.15210 14.15210 +1993 346 14.72510 14.72510 +1993 347 15.95550 15.95550 +1993 348 15.75940 15.75940 +1993 349 15.58380 15.58380 +1993 350 15.14580 15.14580 +1993 351 14.81440 14.81440 +1993 352 13.33580 13.33580 +1993 353 12.89290 12.89290 +1993 354 12.50530 12.50530 +1993 355 12.68610 12.68610 +1993 356 11.14670 11.14670 +1993 357 13.74180 13.74180 +1993 358 13.45560 13.45560 +1993 359 12.14250 12.14250 +1993 360 15.49480 15.49480 +1993 361 18.09200 18.09200 +1993 362 17.94890 17.94890 +1993 363 17.96670 17.96670 +1993 364 17.58510 17.58510 +1993 365 15.45890 15.45890 +1994 1 15.17000 15.17000 +1994 2 15.56120 15.56120 +1994 3 17.93530 17.93530 +1994 4 17.64040 17.64040 +1994 5 16.31850 16.31850 +1994 6 19.56910 19.56910 +1994 7 20.92390 20.92390 +1994 8 20.73500 20.73500 +1994 9 19.89700 19.89700 +1994 10 18.29030 18.29030 +1994 11 15.34040 15.34040 +1994 12 14.55440 14.55440 +1994 13 16.83630 16.83630 +1994 14 17.55900 17.55900 +1994 15 16.29590 16.29590 +1994 16 15.31670 15.31670 +1994 17 16.39350 16.39350 +1994 18 18.56760 18.56760 +1994 19 19.05100 19.05100 +1994 20 18.87760 18.87760 +1994 21 18.53080 18.53080 +1994 22 17.96560 17.96560 +1994 23 18.13340 18.13340 +1994 24 18.20650 18.20650 +1994 25 16.33730 16.33730 +1994 26 12.19020 12.19020 +1994 27 13.00560 13.00560 +1994 28 15.44990 15.44990 +1994 29 16.94180 16.94180 +1994 30 16.45810 16.45810 +1994 31 16.51390 16.51390 +1994 32 15.77260 15.77260 +1994 33 15.81060 15.81060 +1994 34 14.65830 14.65830 +1994 35 17.03850 17.03850 +1994 36 17.14320 17.14320 +1994 37 15.19880 15.19880 +1994 38 15.63420 15.63420 +1994 39 16.41010 16.41010 +1994 40 16.78980 16.78980 +1994 41 16.49800 16.49800 +1994 42 16.60390 16.60390 +1994 43 17.21160 17.21160 +1994 44 17.89130 17.89130 +1994 45 16.92220 16.92220 +1994 46 17.78010 17.78010 +1994 47 18.47100 18.47100 +1994 48 18.20520 18.20520 +1994 49 18.91390 18.91390 +1994 50 17.40150 17.40150 +1994 51 16.31820 16.31820 +1994 52 17.67500 17.67500 +1994 53 17.49360 17.49360 +1994 54 16.93650 16.93650 +1994 55 17.40800 17.40800 +1994 56 17.78780 17.78780 +1994 57 17.32150 17.32150 +1994 58 16.66620 16.66620 +1994 59 16.38180 16.38180 +1994 60 14.86220 14.86220 +1994 61 13.80590 13.80590 +1994 62 14.70030 14.70030 +1994 63 16.56110 16.56110 +1994 64 16.40080 16.40080 +1994 65 14.63280 14.63280 +1994 66 12.25190 12.25190 +1994 67 14.45220 14.45220 +1994 68 12.54910 12.54910 +1994 69 13.51260 13.51260 +1994 70 13.86810 13.86810 +1994 71 14.99060 14.99060 +1994 72 15.14140 15.14140 +1994 73 15.72680 15.72680 +1994 74 15.99160 15.99160 +1994 75 15.88050 15.88050 +1994 76 15.19940 15.19940 +1994 77 13.19000 13.19000 +1994 78 13.91930 13.91930 +1994 79 11.32860 11.32860 +1994 80 11.99850 11.99850 +1994 81 11.47860 11.47860 +1994 82 12.66470 12.66470 +1994 83 11.67240 11.67240 +1994 84 11.29160 11.29160 +1994 85 14.11670 14.11670 +1994 86 15.71950 15.71950 +1994 87 15.59720 15.59720 +1994 88 13.35640 13.35640 +1994 89 13.06900 13.06900 +1994 90 12.84830 12.84830 +1994 91 13.36470 13.36470 +1994 92 14.51290 14.51290 +1994 93 12.11570 12.11570 +1994 94 11.85990 11.85990 +1994 95 12.64040 12.64040 +1994 96 13.11920 13.11920 +1994 97 12.97110 12.97110 +1994 98 12.96770 12.96770 +1994 99 13.74500 13.74500 +1994 100 14.06860 14.06860 +1994 101 15.24270 15.24270 +1994 102 15.83580 15.83580 +1994 103 14.94280 14.94280 +1994 104 14.53820 14.53820 +1994 105 15.21600 15.21600 +1994 106 14.01050 14.01050 +1994 107 12.90360 12.90360 +1994 108 12.26380 12.26380 +1994 109 13.64810 13.64810 +1994 110 10.00310 10.00310 +1994 111 9.19814 9.19814 +1994 112 9.60061 9.60061 +1994 113 7.49589 7.49589 +1994 114 8.81076 8.81076 +1994 115 9.18889 9.18889 +1994 116 8.50468 8.50468 +1994 117 10.45610 10.45610 +1994 118 11.52960 11.52960 +1994 119 11.07720 11.07720 +1994 120 10.90870 10.90870 +1994 121 11.01780 11.01780 +1994 122 13.13610 13.13610 +1994 123 12.51050 12.51050 +1994 124 11.75140 11.75140 +1994 125 11.06840 11.06840 +1994 126 10.52540 10.52540 +1994 127 11.79910 11.79910 +1994 128 12.12100 12.12100 +1994 129 11.88710 11.88710 +1994 130 10.17370 10.17370 +1994 131 9.79452 9.79452 +1994 132 8.48378 8.48378 +1994 133 6.51830 6.51830 +1994 134 7.34649 7.34649 +1994 135 9.40552 9.40552 +1994 136 9.03631 9.03631 +1994 137 10.25940 10.25940 +1994 138 11.90620 11.90620 +1994 139 11.70400 11.70400 +1994 140 8.98525 8.98525 +1994 141 8.92291 8.92291 +1994 142 11.05330 11.05330 +1994 143 11.12180 11.12180 +1994 144 10.41290 10.41290 +1994 145 12.55740 12.55740 +1994 146 11.75200 11.75200 +1994 147 10.25870 10.25870 +1994 148 10.91880 10.91880 +1994 149 10.33490 10.33490 +1994 150 7.59309 7.59309 +1994 151 7.35736 7.35736 +1994 152 6.38391 6.38391 +1994 153 5.91360 5.91360 +1994 154 5.74861 5.74861 +1994 155 5.01434 5.01434 +1994 156 5.45998 5.45998 +1994 157 5.84769 5.84769 +1994 158 5.20018 5.20018 +1994 159 9.63330 9.63330 +1994 160 11.15500 11.15500 +1994 161 12.03010 12.03010 +1994 162 10.99540 10.99540 +1994 163 9.28149 9.28149 +1994 164 8.25936 8.25936 +1994 165 6.25717 6.25717 +1994 166 6.77356 6.77356 +1994 167 7.66053 7.66053 +1994 168 6.71006 6.71006 +1994 169 9.48618 9.48618 +1994 170 9.30681 9.30681 +1994 171 10.21280 10.21280 +1994 172 8.98880 8.98880 +1994 173 6.98476 6.98476 +1994 174 7.94050 7.94050 +1994 175 9.58891 9.58891 +1994 176 9.64983 9.64983 +1994 177 7.77047 7.77047 +1994 178 5.60446 5.60446 +1994 179 4.38779 4.38779 +1994 180 3.00058 3.00058 +1994 181 6.72329 6.72329 +1994 182 6.33914 6.33914 +1994 183 2.88779 2.88779 +1994 184 3.87780 3.87780 +1994 185 7.43101 7.43101 +1994 186 6.36929 6.36929 +1994 187 6.62747 6.62747 +1994 188 6.54268 6.54268 +1994 189 3.88962 3.88962 +1994 190 7.27073 7.27073 +1994 191 8.37744 8.37744 +1994 192 6.83831 6.83831 +1994 193 3.82783 3.82783 +1994 194 3.03145 3.03145 +1994 195 6.10594 6.10594 +1994 196 8.82677 8.82677 +1994 197 10.36690 10.36690 +1994 198 9.33271 9.33271 +1994 199 6.28085 6.28085 +1994 200 7.03511 7.03511 +1994 201 7.09240 7.09240 +1994 202 7.22325 7.22325 +1994 203 7.77817 7.77817 +1994 204 5.74276 5.74276 +1994 205 8.91161 8.91161 +1994 206 9.25185 9.25185 +1994 207 8.66480 8.66480 +1994 208 8.00481 8.00481 +1994 209 7.51828 7.51828 +1994 210 6.22789 6.22789 +1994 211 6.07871 6.07871 +1994 212 6.97850 6.97850 +1994 213 9.03927 9.03927 +1994 214 10.56050 10.56050 +1994 215 7.95860 7.95860 +1994 216 7.74511 7.74511 +1994 217 7.60151 7.60151 +1994 218 7.93294 7.93294 +1994 219 8.09113 8.09113 +1994 220 7.61247 7.61247 +1994 221 5.05537 5.05537 +1994 222 4.78159 4.78159 +1994 223 5.57991 5.57991 +1994 224 6.57549 6.57549 +1994 225 7.57944 7.57944 +1994 226 8.50574 8.50574 +1994 227 6.93362 6.93362 +1994 228 6.69339 6.69339 +1994 229 6.73325 6.73325 +1994 230 6.41521 6.41521 +1994 231 7.60338 7.60338 +1994 232 8.04873 8.04873 +1994 233 6.53853 6.53853 +1994 234 7.35533 7.35533 +1994 235 9.03176 9.03176 +1994 236 9.74498 9.74498 +1994 237 8.92176 8.92176 +1994 238 7.79201 7.79201 +1994 239 8.33124 8.33124 +1994 240 7.34097 7.34097 +1994 241 8.76387 8.76387 +1994 242 7.93698 7.93698 +1994 243 7.41813 7.41813 +1994 244 8.34358 8.34358 +1994 245 7.67016 7.67016 +1994 246 7.21731 7.21731 +1994 247 8.49315 8.49315 +1994 248 7.16531 7.16531 +1994 249 8.27855 8.27855 +1994 250 4.79944 4.79944 +1994 251 5.22329 5.22329 +1994 252 6.30351 6.30351 +1994 253 8.64326 8.64326 +1994 254 8.76589 8.76589 +1994 255 7.59096 7.59096 +1994 256 8.92069 8.92069 +1994 257 9.99276 9.99276 +1994 258 9.42106 9.42106 +1994 259 9.91177 9.91177 +1994 260 10.08700 10.08700 +1994 261 9.00261 9.00261 +1994 262 9.88376 9.88376 +1994 263 8.25967 8.25967 +1994 264 7.69098 7.69098 +1994 265 5.99360 5.99360 +1994 266 8.60749 8.60749 +1994 267 9.76153 9.76153 +1994 268 8.59257 8.59257 +1994 269 7.77934 7.77934 +1994 270 8.40558 8.40558 +1994 271 8.60734 8.60734 +1994 272 8.42356 8.42356 +1994 273 7.16712 7.16712 +1994 274 6.04840 6.04840 +1994 275 6.60866 6.60866 +1994 276 7.29156 7.29156 +1994 277 9.82573 9.82573 +1994 278 9.95762 9.95762 +1994 279 10.07830 10.07830 +1994 280 11.28180 11.28180 +1994 281 10.30610 10.30610 +1994 282 9.91394 9.91394 +1994 283 8.52773 8.52773 +1994 284 8.90868 8.90868 +1994 285 8.70647 8.70647 +1994 286 7.73260 7.73260 +1994 287 7.76300 7.76300 +1994 288 9.49095 9.49095 +1994 289 10.07080 10.07080 +1994 290 10.10860 10.10860 +1994 291 8.98542 8.98542 +1994 292 8.40494 8.40494 +1994 293 9.64768 9.64768 +1994 294 9.81736 9.81736 +1994 295 10.39860 10.39860 +1994 296 10.51350 10.51350 +1994 297 12.37700 12.37700 +1994 298 12.29340 12.29340 +1994 299 12.96820 12.96820 +1994 300 12.39480 12.39480 +1994 301 12.93080 12.93080 +1994 302 13.64490 13.64490 +1994 303 12.78460 12.78460 +1994 304 11.67600 11.67600 +1994 305 12.69450 12.69450 +1994 306 11.18380 11.18380 +1994 307 12.08650 12.08650 +1994 308 12.11530 12.11530 +1994 309 13.69770 13.69770 +1994 310 14.82740 14.82740 +1994 311 15.89530 15.89530 +1994 312 13.12480 13.12480 +1994 313 10.90430 10.90430 +1994 314 11.62320 11.62320 +1994 315 11.83410 11.83410 +1994 316 14.01790 14.01790 +1994 317 13.32090 13.32090 +1994 318 15.10790 15.10790 +1994 319 12.30620 12.30620 +1994 320 11.21490 11.21490 +1994 321 11.79470 11.79470 +1994 322 10.81480 10.81480 +1994 323 8.75801 8.75801 +1994 324 11.41480 11.41480 +1994 325 12.70580 12.70580 +1994 326 11.36690 11.36690 +1994 327 11.40360 11.40360 +1994 328 10.40460 10.40460 +1994 329 12.14760 12.14760 +1994 330 13.52370 13.52370 +1994 331 13.14550 13.14550 +1994 332 13.76500 13.76500 +1994 333 14.47910 14.47910 +1994 334 14.05460 14.05460 +1994 335 13.92140 13.92140 +1994 336 13.51160 13.51160 +1994 337 14.25970 14.25970 +1994 338 14.11840 14.11840 +1994 339 15.04110 15.04110 +1994 340 16.37010 16.37010 +1994 341 16.67880 16.67880 +1994 342 15.49350 15.49350 +1994 343 15.58120 15.58120 +1994 344 15.60810 15.60810 +1994 345 14.68420 14.68420 +1994 346 15.58890 15.58890 +1994 347 15.57450 15.57450 +1994 348 17.10150 17.10150 +1994 349 16.68230 16.68230 +1994 350 16.86420 16.86420 +1994 351 16.33340 16.33340 +1994 352 17.79860 17.79860 +1994 353 17.40470 17.40470 +1994 354 15.56750 15.56750 +1994 355 15.31630 15.31630 +1994 356 13.59990 13.59990 +1994 357 12.85690 12.85690 +1994 358 15.40830 15.40830 +1994 359 14.52140 14.52140 +1994 360 14.59490 14.59490 +1994 361 15.55910 15.55910 +1994 362 17.86260 17.86260 +1994 363 18.55750 18.55750 +1994 364 17.10040 17.10040 +1994 365 16.38950 16.38950 +1995 1 16.49020 16.49020 +1995 2 13.76010 13.76010 +1995 3 13.34740 13.34740 +1995 4 14.92410 14.92410 +1995 5 15.64650 15.64650 +1995 6 15.23630 15.23630 +1995 7 15.89640 15.89640 +1995 8 15.52570 15.52570 +1995 9 16.12700 16.12700 +1995 10 15.23800 15.23800 +1995 11 14.68550 14.68550 +1995 12 15.57180 15.57180 +1995 13 16.45070 16.45070 +1995 14 17.17090 17.17090 +1995 15 17.00240 17.00240 +1995 16 17.15750 17.15750 +1995 17 17.08210 17.08210 +1995 18 17.74390 17.74390 +1995 19 17.58910 17.58910 +1995 20 15.65400 15.65400 +1995 21 15.95660 15.95660 +1995 22 17.05950 17.05950 +1995 23 15.92060 15.92060 +1995 24 16.56330 16.56330 +1995 25 16.72230 16.72230 +1995 26 17.01660 17.01660 +1995 27 18.03470 18.03470 +1995 28 15.63000 15.63000 +1995 29 17.00890 17.00890 +1995 30 16.85470 16.85470 +1995 31 17.56850 17.56850 +1995 32 17.31800 17.31800 +1995 33 15.54500 15.54500 +1995 34 16.46110 16.46110 +1995 35 15.96160 15.96160 +1995 36 17.90170 17.90170 +1995 37 16.72770 16.72770 +1995 38 18.17160 18.17160 +1995 39 17.73610 17.73610 +1995 40 17.47130 17.47130 +1995 41 17.11160 17.11160 +1995 42 15.63650 15.63650 +1995 43 17.11140 17.11140 +1995 44 16.50080 16.50080 +1995 45 16.64550 16.64550 +1995 46 16.85940 16.85940 +1995 47 16.28820 16.28820 +1995 48 18.07830 18.07830 +1995 49 17.18100 17.18100 +1995 50 16.25760 16.25760 +1995 51 16.44880 16.44880 +1995 52 16.64230 16.64230 +1995 53 17.42550 17.42550 +1995 54 16.59930 16.59930 +1995 55 15.79520 15.79520 +1995 56 17.24640 17.24640 +1995 57 17.79170 17.79170 +1995 58 18.02770 18.02770 +1995 59 17.37030 17.37030 +1995 60 15.91080 15.91080 +1995 61 15.03400 15.03400 +1995 62 15.68600 15.68600 +1995 63 15.40260 15.40260 +1995 64 16.51450 16.51450 +1995 65 16.07400 16.07400 +1995 66 16.29300 16.29300 +1995 67 16.95100 16.95100 +1995 68 17.18110 17.18110 +1995 69 18.31760 18.31760 +1995 70 15.09300 15.09300 +1995 71 17.94820 17.94820 +1995 72 13.53060 13.53060 +1995 73 13.42080 13.42080 +1995 74 13.49400 13.49400 +1995 75 11.54950 11.54950 +1995 76 11.63020 11.63020 +1995 77 13.82440 13.82440 +1995 78 15.48610 15.48610 +1995 79 15.86110 15.86110 +1995 80 14.91540 14.91540 +1995 81 16.51520 16.51520 +1995 82 16.26060 16.26060 +1995 83 15.42430 15.42430 +1995 84 16.64780 16.64780 +1995 85 16.28060 16.28060 +1995 86 17.27980 17.27980 +1995 87 16.54440 16.54440 +1995 88 16.84780 16.84780 +1995 89 16.68750 16.68750 +1995 90 16.82390 16.82390 +1995 91 16.55710 16.55710 +1995 92 16.93130 16.93130 +1995 93 16.46410 16.46410 +1995 94 17.45390 17.45390 +1995 95 16.61640 16.61640 +1995 96 15.89660 15.89660 +1995 97 15.00790 15.00790 +1995 98 15.83700 15.83700 +1995 99 15.32310 15.32310 +1995 100 15.24400 15.24400 +1995 101 15.21490 15.21490 +1995 102 13.70750 13.70750 +1995 103 13.09050 13.09050 +1995 104 12.79270 12.79270 +1995 105 13.88570 13.88570 +1995 106 13.04830 13.04830 +1995 107 12.75450 12.75450 +1995 108 12.62110 12.62110 +1995 109 14.73770 14.73770 +1995 110 15.32210 15.32210 +1995 111 15.44910 15.44910 +1995 112 14.80510 14.80510 +1995 113 13.98670 13.98670 +1995 114 14.40040 14.40040 +1995 115 15.37760 15.37760 +1995 116 14.01460 14.01460 +1995 117 12.51390 12.51390 +1995 118 9.61843 9.61843 +1995 119 8.60077 8.60077 +1995 120 13.53950 13.53950 +1995 121 15.02240 15.02240 +1995 122 14.66790 14.66790 +1995 123 13.77690 13.77690 +1995 124 14.25130 14.25130 +1995 125 13.81840 13.81840 +1995 126 11.25090 11.25090 +1995 127 9.21723 9.21723 +1995 128 8.60664 8.60664 +1995 129 7.66983 7.66983 +1995 130 8.24550 8.24550 +1995 131 10.00410 10.00410 +1995 132 11.60900 11.60900 +1995 133 11.30650 11.30650 +1995 134 11.51850 11.51850 +1995 135 12.21290 12.21290 +1995 136 9.37454 9.37454 +1995 137 9.90464 9.90464 +1995 138 9.11655 9.11655 +1995 139 9.24404 9.24404 +1995 140 8.81935 8.81935 +1995 141 11.10840 11.10840 +1995 142 10.11910 10.11910 +1995 143 7.73770 7.73770 +1995 144 7.37447 7.37447 +1995 145 8.74970 8.74970 +1995 146 12.01680 12.01680 +1995 147 12.32180 12.32180 +1995 148 10.21150 10.21150 +1995 149 9.82493 9.82493 +1995 150 9.50109 9.50109 +1995 151 9.18694 9.18694 +1995 152 7.31365 7.31365 +1995 153 5.78579 5.78579 +1995 154 4.46953 4.46953 +1995 155 5.21190 5.21190 +1995 156 6.96528 6.96528 +1995 157 7.75450 7.75450 +1995 158 7.49905 7.49905 +1995 159 9.86937 9.86937 +1995 160 10.11170 10.11170 +1995 161 8.28098 8.28098 +1995 162 10.58750 10.58750 +1995 163 9.65777 9.65777 +1995 164 9.80853 9.80853 +1995 165 9.17596 9.17596 +1995 166 8.15442 8.15442 +1995 167 6.76716 6.76716 +1995 168 7.06269 7.06269 +1995 169 6.87451 6.87451 +1995 170 6.62084 6.62084 +1995 171 7.06521 7.06521 +1995 172 7.68055 7.68055 +1995 173 6.66349 6.66349 +1995 174 5.44027 5.44027 +1995 175 7.11055 7.11055 +1995 176 8.65921 8.65921 +1995 177 9.58898 9.58898 +1995 178 9.86496 9.86496 +1995 179 10.38930 10.38930 +1995 180 7.57278 7.57278 +1995 181 5.80122 5.80122 +1995 182 6.71279 6.71279 +1995 183 8.14936 8.14936 +1995 184 8.73569 8.73569 +1995 185 7.60359 7.60359 +1995 186 7.68138 7.68138 +1995 187 6.56444 6.56444 +1995 188 6.83724 6.83724 +1995 189 7.36778 7.36778 +1995 190 6.98326 6.98326 +1995 191 7.17734 7.17734 +1995 192 8.39025 8.39025 +1995 193 10.09860 10.09860 +1995 194 9.32609 9.32609 +1995 195 8.43225 8.43225 +1995 196 6.20711 6.20711 +1995 197 4.30538 4.30538 +1995 198 2.29872 2.29872 +1995 199 5.53450 5.53450 +1995 200 7.79674 7.79674 +1995 201 6.25768 6.25768 +1995 202 5.81904 5.81904 +1995 203 7.00709 7.00709 +1995 204 6.65583 6.65583 +1995 205 5.50087 5.50087 +1995 206 4.84077 4.84077 +1995 207 5.56876 5.56876 +1995 208 6.27320 6.27320 +1995 209 6.36062 6.36062 +1995 210 5.13215 5.13215 +1995 211 6.71751 6.71751 +1995 212 5.39619 5.39619 +1995 213 5.47879 5.47879 +1995 214 6.99990 6.99990 +1995 215 6.60907 6.60907 +1995 216 6.95624 6.95624 +1995 217 7.60022 7.60022 +1995 218 6.88547 6.88547 +1995 219 8.47766 8.47766 +1995 220 9.63976 9.63976 +1995 221 7.04544 7.04544 +1995 222 6.02233 6.02233 +1995 223 5.75680 5.75680 +1995 224 6.18001 6.18001 +1995 225 6.72509 6.72509 +1995 226 5.64294 5.64294 +1995 227 5.86680 5.86680 +1995 228 7.72447 7.72447 +1995 229 8.64941 8.64941 +1995 230 7.48791 7.48791 +1995 231 7.65941 7.65941 +1995 232 8.23420 8.23420 +1995 233 8.87431 8.87431 +1995 234 5.06351 5.06351 +1995 235 7.50006 7.50006 +1995 236 6.26684 6.26684 +1995 237 4.36815 4.36815 +1995 238 4.28200 4.28200 +1995 239 5.07683 5.07683 +1995 240 6.49348 6.49348 +1995 241 6.43965 6.43965 +1995 242 8.49063 8.49063 +1995 243 10.99700 10.99700 +1995 244 8.63461 8.63461 +1995 245 6.71482 6.71482 +1995 246 6.57624 6.57624 +1995 247 10.51080 10.51080 +1995 248 12.15990 12.15990 +1995 249 7.98035 7.98035 +1995 250 4.97435 4.97435 +1995 251 4.50238 4.50238 +1995 252 5.12614 5.12614 +1995 253 6.05469 6.05469 +1995 254 6.46410 6.46410 +1995 255 6.64956 6.64956 +1995 256 8.73281 8.73281 +1995 257 8.31701 8.31701 +1995 258 9.01606 9.01606 +1995 259 9.88261 9.88261 +1995 260 9.48299 9.48299 +1995 261 8.08433 8.08433 +1995 262 7.67235 7.67235 +1995 263 8.82765 8.82765 +1995 264 10.63160 10.63160 +1995 265 10.68240 10.68240 +1995 266 9.81896 9.81896 +1995 267 11.51290 11.51290 +1995 268 12.13550 12.13550 +1995 269 12.15040 12.15040 +1995 270 11.38530 11.38530 +1995 271 12.57480 12.57480 +1995 272 13.31690 13.31690 +1995 273 12.12210 12.12210 +1995 274 11.26780 11.26780 +1995 275 10.67890 10.67890 +1995 276 11.29120 11.29120 +1995 277 11.86420 11.86420 +1995 278 10.50800 10.50800 +1995 279 10.43740 10.43740 +1995 280 9.67731 9.67731 +1995 281 11.13310 11.13310 +1995 282 8.51987 8.51987 +1995 283 8.59049 8.59049 +1995 284 10.69710 10.69710 +1995 285 9.97584 9.97584 +1995 286 9.91641 9.91641 +1995 287 9.75930 9.75930 +1995 288 9.98398 9.98398 +1995 289 10.27310 10.27310 +1995 290 9.73396 9.73396 +1995 291 9.98520 9.98520 +1995 292 9.62729 9.62729 +1995 293 11.28350 11.28350 +1995 294 9.60414 9.60414 +1995 295 9.95037 9.95037 +1995 296 11.03650 11.03650 +1995 297 11.13070 11.13070 +1995 298 11.71800 11.71800 +1995 299 12.59800 12.59800 +1995 300 13.00290 13.00290 +1995 301 13.71170 13.71170 +1995 302 13.15060 13.15060 +1995 303 13.44610 13.44610 +1995 304 13.72600 13.72600 +1995 305 10.56050 10.56050 +1995 306 10.23910 10.23910 +1995 307 11.85830 11.85830 +1995 308 11.44030 11.44030 +1995 309 11.01800 11.01800 +1995 310 11.69520 11.69520 +1995 311 12.52720 12.52720 +1995 312 13.81410 13.81410 +1995 313 14.38380 14.38380 +1995 314 12.97190 12.97190 +1995 315 13.43280 13.43280 +1995 316 12.56530 12.56530 +1995 317 11.44340 11.44340 +1995 318 12.23820 12.23820 +1995 319 12.81290 12.81290 +1995 320 13.43500 13.43500 +1995 321 14.13120 14.13120 +1995 322 13.35240 13.35240 +1995 323 12.46400 12.46400 +1995 324 10.99150 10.99150 +1995 325 10.41360 10.41360 +1995 326 11.66770 11.66770 +1995 327 11.65260 11.65260 +1995 328 16.08220 16.08220 +1995 329 13.18790 13.18790 +1995 330 10.08760 10.08760 +1995 331 10.75040 10.75040 +1995 332 12.84900 12.84900 +1995 333 15.26770 15.26770 +1995 334 16.70240 16.70240 +1995 335 19.13420 19.13420 +1995 336 20.10830 20.10830 +1995 337 17.95240 17.95240 +1995 338 18.54230 18.54230 +1995 339 18.59220 18.59220 +1995 340 19.01480 19.01480 +1995 341 17.12090 17.12090 +1995 342 17.53710 17.53710 +1995 343 15.88820 15.88820 +1995 344 14.72280 14.72280 +1995 345 15.44430 15.44430 +1995 346 16.23160 16.23160 +1995 347 17.10070 17.10070 +1995 348 17.47990 17.47990 +1995 349 16.56130 16.56130 +1995 350 15.77550 15.77550 +1995 351 15.25200 15.25200 +1995 352 14.54850 14.54850 +1995 353 14.84500 14.84500 +1995 354 16.45580 16.45580 +1995 355 16.30500 16.30500 +1995 356 16.20720 16.20720 +1995 357 16.50010 16.50010 +1995 358 14.66710 14.66710 +1995 359 12.98770 12.98770 +1995 360 13.33940 13.33940 +1995 361 14.22690 14.22690 +1995 362 15.64530 15.64530 +1995 363 16.85100 16.85100 +1995 364 16.75800 16.75800 +1995 365 15.90580 15.90580 +1996 1 16.77310 16.77310 +1996 2 16.56950 16.56950 +1996 3 18.11580 18.11580 +1996 4 17.44280 17.44280 +1996 5 17.47880 17.47880 +1996 6 17.40110 17.40110 +1996 7 17.33440 17.33440 +1996 8 17.92430 17.92430 +1996 9 17.61770 17.61770 +1996 10 17.14290 17.14290 +1996 11 17.25380 17.25380 +1996 12 15.78050 15.78050 +1996 13 17.67370 17.67370 +1996 14 17.95930 17.95930 +1996 15 17.32290 17.32290 +1996 16 18.11670 18.11670 +1996 17 18.29990 18.29990 +1996 18 17.52550 17.52550 +1996 19 17.46840 17.46840 +1996 20 16.10910 16.10910 +1996 21 16.45280 16.45280 +1996 22 16.80290 16.80290 +1996 23 16.02890 16.02890 +1996 24 14.60020 14.60020 +1996 25 13.04420 13.04420 +1996 26 16.68090 16.68090 +1996 27 17.06120 17.06120 +1996 28 17.93890 17.93890 +1996 29 18.33690 18.33690 +1996 30 17.14170 17.14170 +1996 31 18.14100 18.14100 +1996 32 18.97200 18.97200 +1996 33 19.90430 19.90430 +1996 34 19.68490 19.68490 +1996 35 16.84340 16.84340 +1996 36 17.68490 17.68490 +1996 37 17.78810 17.78810 +1996 38 16.92120 16.92120 +1996 39 17.59850 17.59850 +1996 40 16.38230 16.38230 +1996 41 16.49880 16.49880 +1996 42 17.67440 17.67440 +1996 43 20.42890 20.42890 +1996 44 20.22220 20.22220 +1996 45 18.11670 18.11670 +1996 46 16.44940 16.44940 +1996 47 16.42870 16.42870 +1996 48 17.48080 17.48080 +1996 49 18.84910 18.84910 +1996 50 19.03230 19.03230 +1996 51 15.77050 15.77050 +1996 52 15.49230 15.49230 +1996 53 15.35730 15.35730 +1996 54 13.22910 13.22910 +1996 55 14.01760 14.01760 +1996 56 14.80780 14.80780 +1996 57 15.69060 15.69060 +1996 58 17.47670 17.47670 +1996 59 17.68820 17.68820 +1996 60 17.51650 17.51650 +1996 61 16.68720 16.68720 +1996 62 17.60300 17.60300 +1996 63 16.50160 16.50160 +1996 64 15.01010 15.01010 +1996 65 13.24360 13.24360 +1996 66 13.52420 13.52420 +1996 67 14.18790 14.18790 +1996 68 14.43610 14.43610 +1996 69 14.09820 14.09820 +1996 70 12.71970 12.71970 +1996 71 12.79100 12.79100 +1996 72 13.89710 13.89710 +1996 73 13.73420 13.73420 +1996 74 13.84070 13.84070 +1996 75 10.24900 10.24900 +1996 76 13.10380 13.10380 +1996 77 15.15180 15.15180 +1996 78 15.85420 15.85420 +1996 79 16.04760 16.04760 +1996 80 14.73990 14.73990 +1996 81 15.45230 15.45230 +1996 82 13.69860 13.69860 +1996 83 12.56370 12.56370 +1996 84 12.70440 12.70440 +1996 85 13.45310 13.45310 +1996 86 13.49090 13.49090 +1996 87 13.87470 13.87470 +1996 88 13.34700 13.34700 +1996 89 14.23660 14.23660 +1996 90 13.86800 13.86800 +1996 91 15.22040 15.22040 +1996 92 14.26380 14.26380 +1996 93 14.46360 14.46360 +1996 94 14.05760 14.05760 +1996 95 13.05290 13.05290 +1996 96 12.43350 12.43350 +1996 97 11.45030 11.45030 +1996 98 10.74860 10.74860 +1996 99 12.89620 12.89620 +1996 100 14.76570 14.76570 +1996 101 15.38530 15.38530 +1996 102 15.59410 15.59410 +1996 103 16.62310 16.62310 +1996 104 16.76790 16.76790 +1996 105 15.75590 15.75590 +1996 106 15.81750 15.81750 +1996 107 15.81190 15.81190 +1996 108 14.58490 14.58490 +1996 109 14.45270 14.45270 +1996 110 16.39390 16.39390 +1996 111 15.66860 15.66860 +1996 112 12.49160 12.49160 +1996 113 12.37330 12.37330 +1996 114 11.69510 11.69510 +1996 115 10.56820 10.56820 +1996 116 10.76380 10.76380 +1996 117 11.14060 11.14060 +1996 118 12.32390 12.32390 +1996 119 13.09920 13.09920 +1996 120 13.64780 13.64780 +1996 121 10.59400 10.59400 +1996 122 8.36028 8.36028 +1996 123 9.20053 9.20053 +1996 124 9.71041 9.71041 +1996 125 9.10552 9.10552 +1996 126 9.80002 9.80002 +1996 127 9.53551 9.53551 +1996 128 11.07320 11.07320 +1996 129 11.49330 11.49330 +1996 130 9.12011 9.12011 +1996 131 8.70071 8.70071 +1996 132 11.38900 11.38900 +1996 133 10.64790 10.64790 +1996 134 12.03240 12.03240 +1996 135 12.47900 12.47900 +1996 136 10.62420 10.62420 +1996 137 9.04279 9.04279 +1996 138 7.82635 7.82635 +1996 139 8.00305 8.00305 +1996 140 9.98921 9.98921 +1996 141 12.34520 12.34520 +1996 142 14.43870 14.43870 +1996 143 10.33810 10.33810 +1996 144 10.06430 10.06430 +1996 145 10.64260 10.64260 +1996 146 5.80962 5.80962 +1996 147 7.27991 7.27991 +1996 148 6.14904 6.14904 +1996 149 7.76159 7.76159 +1996 150 8.76217 8.76217 +1996 151 9.37043 9.37043 +1996 152 9.75717 9.75717 +1996 153 4.92701 4.92701 +1996 154 4.85472 4.85472 +1996 155 4.85673 4.85673 +1996 156 5.24059 5.24059 +1996 157 5.91272 5.91272 +1996 158 8.29700 8.29700 +1996 159 7.59851 7.59851 +1996 160 9.51588 9.51588 +1996 161 7.26349 7.26349 +1996 162 5.01876 5.01876 +1996 163 3.76891 3.76891 +1996 164 4.22929 4.22929 +1996 165 4.53902 4.53902 +1996 166 4.34354 4.34354 +1996 167 5.17656 5.17656 +1996 168 4.11261 4.11261 +1996 169 4.17130 4.17130 +1996 170 3.40490 3.40490 +1996 171 5.77990 5.77990 +1996 172 8.75175 8.75175 +1996 173 9.75071 9.75071 +1996 174 10.48030 10.48030 +1996 175 10.42570 10.42570 +1996 176 10.43430 10.43430 +1996 177 8.70759 8.70759 +1996 178 8.11285 8.11285 +1996 179 7.73866 7.73866 +1996 180 7.40324 7.40324 +1996 181 9.33204 9.33204 +1996 182 7.13905 7.13905 +1996 183 4.81719 4.81719 +1996 184 3.84299 3.84299 +1996 185 4.08903 4.08903 +1996 186 5.21073 5.21073 +1996 187 5.95962 5.95962 +1996 188 6.09456 6.09456 +1996 189 5.85729 5.85729 +1996 190 6.30285 6.30285 +1996 191 7.74875 7.74875 +1996 192 8.42183 8.42183 +1996 193 8.30599 8.30599 +1996 194 7.73225 7.73225 +1996 195 8.19345 8.19345 +1996 196 9.11655 9.11655 +1996 197 9.29747 9.29747 +1996 198 9.80864 9.80864 +1996 199 9.17882 9.17882 +1996 200 8.99461 8.99461 +1996 201 8.44651 8.44651 +1996 202 9.33189 9.33189 +1996 203 11.12350 11.12350 +1996 204 9.33515 9.33515 +1996 205 8.90664 8.90664 +1996 206 8.85366 8.85366 +1996 207 8.41154 8.41154 +1996 208 6.82318 6.82318 +1996 209 5.33130 5.33130 +1996 210 6.05014 6.05014 +1996 211 7.67516 7.67516 +1996 212 5.35691 5.35691 +1996 213 7.41084 7.41084 +1996 214 11.64010 11.64010 +1996 215 9.56987 9.56987 +1996 216 9.07412 9.07412 +1996 217 9.31556 9.31556 +1996 218 8.25414 8.25414 +1996 219 6.37072 6.37072 +1996 220 6.99495 6.99495 +1996 221 8.42363 8.42363 +1996 222 7.54556 7.54556 +1996 223 6.62927 6.62927 +1996 224 5.86393 5.86393 +1996 225 6.59423 6.59423 +1996 226 6.95042 6.95042 +1996 227 7.60168 7.60168 +1996 228 7.59926 7.59926 +1996 229 7.47177 7.47177 +1996 230 6.10884 6.10884 +1996 231 6.61162 6.61162 +1996 232 9.15360 9.15360 +1996 233 8.68426 8.68426 +1996 234 6.01248 6.01248 +1996 235 4.47761 4.47761 +1996 236 6.54268 6.54268 +1996 237 7.06619 7.06619 +1996 238 9.18039 9.18039 +1996 239 8.18692 8.18692 +1996 240 7.12762 7.12762 +1996 241 7.03513 7.03513 +1996 242 5.60748 5.60748 +1996 243 4.23742 4.23742 +1996 244 5.98585 5.98585 +1996 245 7.61339 7.61339 +1996 246 9.74564 9.74564 +1996 247 10.51090 10.51090 +1996 248 10.87750 10.87750 +1996 249 9.67383 9.67383 +1996 250 9.58417 9.58417 +1996 251 8.90081 8.90081 +1996 252 10.47330 10.47330 +1996 253 9.72146 9.72146 +1996 254 9.98105 9.98105 +1996 255 11.71500 11.71500 +1996 256 10.61730 10.61730 +1996 257 12.04570 12.04570 +1996 258 10.55400 10.55400 +1996 259 9.62567 9.62567 +1996 260 10.24680 10.24680 +1996 261 11.05390 11.05390 +1996 262 11.38270 11.38270 +1996 263 8.01615 8.01615 +1996 264 9.88284 9.88284 +1996 265 10.60280 10.60280 +1996 266 11.39880 11.39880 +1996 267 11.73860 11.73860 +1996 268 11.03890 11.03890 +1996 269 10.72540 10.72540 +1996 270 10.34850 10.34850 +1996 271 11.60600 11.60600 +1996 272 8.96524 8.96524 +1996 273 9.27767 9.27767 +1996 274 10.47880 10.47880 +1996 275 13.30550 13.30550 +1996 276 11.63650 11.63650 +1996 277 10.96150 10.96150 +1996 278 10.31740 10.31740 +1996 279 10.05210 10.05210 +1996 280 11.28590 11.28590 +1996 281 10.90250 10.90250 +1996 282 8.88331 8.88331 +1996 283 8.99854 8.99854 +1996 284 10.24480 10.24480 +1996 285 12.87650 12.87650 +1996 286 12.16680 12.16680 +1996 287 9.92466 9.92466 +1996 288 9.58862 9.58862 +1996 289 10.81660 10.81660 +1996 290 10.61690 10.61690 +1996 291 11.12630 11.12630 +1996 292 10.99750 10.99750 +1996 293 11.82040 11.82040 +1996 294 12.09560 12.09560 +1996 295 12.23250 12.23250 +1996 296 10.46410 10.46410 +1996 297 10.30010 10.30010 +1996 298 10.70390 10.70390 +1996 299 11.93970 11.93970 +1996 300 13.02050 13.02050 +1996 301 11.64720 11.64720 +1996 302 11.76100 11.76100 +1996 303 13.57110 13.57110 +1996 304 11.96210 11.96210 +1996 305 10.15660 10.15660 +1996 306 9.79175 9.79175 +1996 307 9.05547 9.05547 +1996 308 8.46858 8.46858 +1996 309 9.15043 9.15043 +1996 310 10.76010 10.76010 +1996 311 12.19660 12.19660 +1996 312 10.69620 10.69620 +1996 313 10.94410 10.94410 +1996 314 10.95620 10.95620 +1996 315 11.16840 11.16840 +1996 316 11.45830 11.45830 +1996 317 10.83460 10.83460 +1996 318 11.75580 11.75580 +1996 319 15.69060 15.69060 +1996 320 13.89060 13.89060 +1996 321 13.09260 13.09260 +1996 322 10.28270 10.28270 +1996 323 14.50400 14.50400 +1996 324 11.40360 11.40360 +1996 325 11.75150 11.75150 +1996 326 12.83970 12.83970 +1996 327 12.12210 12.12210 +1996 328 11.43760 11.43760 +1996 329 12.32030 12.32030 +1996 330 14.35440 14.35440 +1996 331 12.89370 12.89370 +1996 332 12.34250 12.34250 +1996 333 13.10240 13.10240 +1996 334 12.98400 12.98400 +1996 335 15.07180 15.07180 +1996 336 15.23080 15.23080 +1996 337 15.94600 15.94600 +1996 338 14.18030 14.18030 +1996 339 12.20350 12.20350 +1996 340 11.79200 11.79200 +1996 341 10.69830 10.69830 +1996 342 11.92910 11.92910 +1996 343 13.79380 13.79380 +1996 344 14.59920 14.59920 +1996 345 15.17020 15.17020 +1996 346 14.81170 14.81170 +1996 347 12.18440 12.18440 +1996 348 15.08390 15.08390 +1996 349 14.47450 14.47450 +1996 350 11.46100 11.46100 +1996 351 11.95220 11.95220 +1996 352 14.13530 14.13530 +1996 353 14.43970 14.43970 +1996 354 15.20840 15.20840 +1996 355 12.93410 12.93410 +1996 356 13.53360 13.53360 +1996 357 14.24820 14.24820 +1996 358 15.57680 15.57680 +1996 359 15.73310 15.73310 +1996 360 15.64390 15.64390 +1996 361 15.26600 15.26600 +1996 362 16.24380 16.24380 +1996 363 14.92840 14.92840 +1996 364 15.08250 15.08250 +1996 365 18.38490 18.38490 +1996 366 17.99940 17.99940 +1997 1 18.24890 18.24890 +1997 2 18.82270 18.82270 +1997 3 16.11590 16.11590 +1997 4 10.84020 10.84020 +1997 5 12.10040 12.10040 +1997 6 15.08300 15.08300 +1997 7 16.28030 16.28030 +1997 8 15.81480 15.81480 +1997 9 14.70270 14.70270 +1997 10 15.88680 15.88680 +1997 11 14.24040 14.24040 +1997 12 13.33370 13.33370 +1997 13 14.14750 14.14750 +1997 14 14.79450 14.79450 +1997 15 14.74460 14.74460 +1997 16 15.50930 15.50930 +1997 17 13.93620 13.93620 +1997 18 12.43630 12.43630 +1997 19 13.91470 13.91470 +1997 20 13.55470 13.55470 +1997 21 14.53660 14.53660 +1997 22 15.55490 15.55490 +1997 23 16.22020 16.22020 +1997 24 16.09480 16.09480 +1997 25 16.21330 16.21330 +1997 26 15.14270 15.14270 +1997 27 14.42710 14.42710 +1997 28 14.45910 14.45910 +1997 29 15.06750 15.06750 +1997 30 15.12530 15.12530 +1997 31 14.77370 14.77370 +1997 32 15.65160 15.65160 +1997 33 15.56300 15.56300 +1997 34 14.95370 14.95370 +1997 35 15.07010 15.07010 +1997 36 15.61600 15.61600 +1997 37 16.45620 16.45620 +1997 38 16.40580 16.40580 +1997 39 16.02620 16.02620 +1997 40 16.95790 16.95790 +1997 41 16.83330 16.83330 +1997 42 17.48760 17.48760 +1997 43 16.64280 16.64280 +1997 44 15.29340 15.29340 +1997 45 15.91510 15.91510 +1997 46 16.35130 16.35130 +1997 47 16.91920 16.91920 +1997 48 16.22540 16.22540 +1997 49 15.23950 15.23950 +1997 50 18.60740 18.60740 +1997 51 18.64160 18.64160 +1997 52 19.94290 19.94290 +1997 53 19.10740 19.10740 +1997 54 20.28760 20.28760 +1997 55 19.19810 19.19810 +1997 56 17.19070 17.19070 +1997 57 15.71850 15.71850 +1997 58 16.99140 16.99140 +1997 59 15.84820 15.84820 +1997 60 19.41550 19.41550 +1997 61 19.96480 19.96480 +1997 62 18.75160 18.75160 +1997 63 18.17490 18.17490 +1997 64 17.66940 17.66940 +1997 65 16.40160 16.40160 +1997 66 16.47260 16.47260 +1997 67 17.56690 17.56690 +1997 68 16.34860 16.34860 +1997 69 11.78660 11.78660 +1997 70 12.07270 12.07270 +1997 71 13.54460 13.54460 +1997 72 13.14420 13.14420 +1997 73 14.84580 14.84580 +1997 74 15.20600 15.20600 +1997 75 12.97430 12.97430 +1997 76 13.28860 13.28860 +1997 77 12.86620 12.86620 +1997 78 13.40560 13.40560 +1997 79 15.19990 15.19990 +1997 80 14.87730 14.87730 +1997 81 13.04440 13.04440 +1997 82 12.91130 12.91130 +1997 83 12.83200 12.83200 +1997 84 12.90590 12.90590 +1997 85 13.65020 13.65020 +1997 86 12.72060 12.72060 +1997 87 12.22170 12.22170 +1997 88 12.36460 12.36460 +1997 89 13.29350 13.29350 +1997 90 12.70050 12.70050 +1997 91 12.25380 12.25380 +1997 92 12.92590 12.92590 +1997 93 13.29970 13.29970 +1997 94 14.37730 14.37730 +1997 95 16.28410 16.28410 +1997 96 16.38140 16.38140 +1997 97 15.92070 15.92070 +1997 98 14.81330 14.81330 +1997 99 11.39140 11.39140 +1997 100 11.38440 11.38440 +1997 101 11.21870 11.21870 +1997 102 11.64190 11.64190 +1997 103 10.68970 10.68970 +1997 104 10.61140 10.61140 +1997 105 10.13020 10.13020 +1997 106 9.89667 9.89667 +1997 107 11.97870 11.97870 +1997 108 10.29570 10.29570 +1997 109 7.76274 7.76274 +1997 110 8.16445 8.16445 +1997 111 8.97361 8.97361 +1997 112 9.93497 9.93497 +1997 113 8.27653 8.27653 +1997 114 9.25228 9.25228 +1997 115 10.04220 10.04220 +1997 116 10.13250 10.13250 +1997 117 11.05590 11.05590 +1997 118 13.81220 13.81220 +1997 119 11.60590 11.60590 +1997 120 10.95330 10.95330 +1997 121 10.77620 10.77620 +1997 122 10.57810 10.57810 +1997 123 9.47197 9.47197 +1997 124 10.52740 10.52740 +1997 125 11.60830 11.60830 +1997 126 9.88896 9.88896 +1997 127 10.04300 10.04300 +1997 128 10.64820 10.64820 +1997 129 10.32280 10.32280 +1997 130 10.09060 10.09060 +1997 131 10.98050 10.98050 +1997 132 10.57110 10.57110 +1997 133 10.98370 10.98370 +1997 134 11.57080 11.57080 +1997 135 10.58510 10.58510 +1997 136 9.62545 9.62545 +1997 137 10.18560 10.18560 +1997 138 10.88240 10.88240 +1997 139 11.76340 11.76340 +1997 140 12.23840 12.23840 +1997 141 11.20830 11.20830 +1997 142 11.28950 11.28950 +1997 143 12.98050 12.98050 +1997 144 13.03760 13.03760 +1997 145 12.24940 12.24940 +1997 146 12.41910 12.41910 +1997 147 10.59130 10.59130 +1997 148 9.41250 9.41250 +1997 149 10.02370 10.02370 +1997 150 11.75680 11.75680 +1997 151 9.13046 9.13046 +1997 152 7.62770 7.62770 +1997 153 6.92496 6.92496 +1997 154 7.51056 7.51056 +1997 155 8.18626 8.18626 +1997 156 6.16685 6.16685 +1997 157 6.71915 6.71915 +1997 158 6.70454 6.70454 +1997 159 7.96395 7.96395 +1997 160 10.22520 10.22520 +1997 161 9.28450 9.28450 +1997 162 8.16983 8.16983 +1997 163 7.69524 7.69524 +1997 164 6.89795 6.89795 +1997 165 6.46996 6.46996 +1997 166 8.88772 8.88772 +1997 167 10.56330 10.56330 +1997 168 11.26970 11.26970 +1997 169 6.00820 6.00820 +1997 170 5.51716 5.51716 +1997 171 8.21958 8.21958 +1997 172 8.60364 8.60364 +1997 173 7.35867 7.35867 +1997 174 7.15738 7.15738 +1997 175 5.60263 5.60263 +1997 176 5.35571 5.35571 +1997 177 5.06353 5.06353 +1997 178 4.35647 4.35647 +1997 179 4.71683 4.71683 +1997 180 7.26472 7.26472 +1997 181 8.51007 8.51007 +1997 182 9.40835 9.40835 +1997 183 8.51296 8.51296 +1997 184 7.43559 7.43559 +1997 185 5.94467 5.94467 +1997 186 5.38280 5.38280 +1997 187 4.91778 4.91778 +1997 188 6.00525 6.00525 +1997 189 8.07949 8.07949 +1997 190 9.42467 9.42467 +1997 191 5.73976 5.73976 +1997 192 4.37420 4.37420 +1997 193 6.78924 6.78924 +1997 194 5.94750 5.94750 +1997 195 5.70817 5.70817 +1997 196 5.79684 5.79684 +1997 197 5.44149 5.44149 +1997 198 7.02123 7.02123 +1997 199 5.06541 5.06541 +1997 200 5.06202 5.06202 +1997 201 5.55869 5.55869 +1997 202 4.93594 4.93594 +1997 203 6.57796 6.57796 +1997 204 7.77960 7.77960 +1997 205 6.06394 6.06394 +1997 206 5.49064 5.49064 +1997 207 5.14840 5.14840 +1997 208 5.48389 5.48389 +1997 209 5.24472 5.24472 +1997 210 6.04861 6.04861 +1997 211 7.37305 7.37305 +1997 212 6.36181 6.36181 +1997 213 4.63909 4.63909 +1997 214 5.74847 5.74847 +1997 215 4.97017 4.97017 +1997 216 5.52285 5.52285 +1997 217 5.38004 5.38004 +1997 218 5.23102 5.23102 +1997 219 5.57591 5.57591 +1997 220 5.37361 5.37361 +1997 221 7.93686 7.93686 +1997 222 9.39284 9.39284 +1997 223 9.25879 9.25879 +1997 224 8.66961 8.66961 +1997 225 6.11882 6.11882 +1997 226 6.90350 6.90350 +1997 227 8.27893 8.27893 +1997 228 9.42587 9.42587 +1997 229 9.60792 9.60792 +1997 230 8.41311 8.41311 +1997 231 7.32803 7.32803 +1997 232 5.65744 5.65744 +1997 233 4.67376 4.67376 +1997 234 6.42136 6.42136 +1997 235 8.78438 8.78438 +1997 236 8.71256 8.71256 +1997 237 8.90153 8.90153 +1997 238 9.01828 9.01828 +1997 239 7.80462 7.80462 +1997 240 6.99954 6.99954 +1997 241 8.56883 8.56883 +1997 242 8.05806 8.05806 +1997 243 7.95895 7.95895 +1997 244 7.85064 7.85064 +1997 245 9.15475 9.15475 +1997 246 7.37588 7.37588 +1997 247 6.73156 6.73156 +1997 248 4.65494 4.65494 +1997 249 5.53181 5.53181 +1997 250 7.06852 7.06852 +1997 251 9.02650 9.02650 +1997 252 9.11936 9.11936 +1997 253 10.63690 10.63690 +1997 254 9.39614 9.39614 +1997 255 7.26647 7.26647 +1997 256 6.81964 6.81964 +1997 257 9.40854 9.40854 +1997 258 7.29506 7.29506 +1997 259 8.56317 8.56317 +1997 260 10.11260 10.11260 +1997 261 8.29778 8.29778 +1997 262 8.34604 8.34604 +1997 263 8.43301 8.43301 +1997 264 8.75362 8.75362 +1997 265 10.26820 10.26820 +1997 266 8.07253 8.07253 +1997 267 7.27772 7.27772 +1997 268 8.28025 8.28025 +1997 269 9.00939 9.00939 +1997 270 11.81460 11.81460 +1997 271 10.93460 10.93460 +1997 272 10.23070 10.23070 +1997 273 9.19450 9.19450 +1997 274 10.31150 10.31150 +1997 275 10.72750 10.72750 +1997 276 11.78180 11.78180 +1997 277 9.93117 9.93117 +1997 278 8.08887 8.08887 +1997 279 7.89955 7.89955 +1997 280 9.83743 9.83743 +1997 281 10.12250 10.12250 +1997 282 11.18530 11.18530 +1997 283 13.31780 13.31780 +1997 284 12.07050 12.07050 +1997 285 13.18040 13.18040 +1997 286 12.26180 12.26180 +1997 287 11.31290 11.31290 +1997 288 10.01730 10.01730 +1997 289 10.52630 10.52630 +1997 290 10.91000 10.91000 +1997 291 8.65776 8.65776 +1997 292 9.07691 9.07691 +1997 293 8.94738 8.94738 +1997 294 9.23178 9.23178 +1997 295 11.25720 11.25720 +1997 296 10.99620 10.99620 +1997 297 11.63590 11.63590 +1997 298 11.39600 11.39600 +1997 299 11.50510 11.50510 +1997 300 10.96860 10.96860 +1997 301 12.57050 12.57050 +1997 302 13.64140 13.64140 +1997 303 14.35670 14.35670 +1997 304 14.57560 14.57560 +1997 305 13.75800 13.75800 +1997 306 13.70930 13.70930 +1997 307 12.93310 12.93310 +1997 308 12.88010 12.88010 +1997 309 11.49610 11.49610 +1997 310 13.04250 13.04250 +1997 311 12.29390 12.29390 +1997 312 8.62833 8.62833 +1997 313 9.83189 9.83189 +1997 314 10.47670 10.47670 +1997 315 12.02560 12.02560 +1997 316 14.48320 14.48320 +1997 317 13.30470 13.30470 +1997 318 13.04470 13.04470 +1997 319 14.11050 14.11050 +1997 320 12.45030 12.45030 +1997 321 11.86270 11.86270 +1997 322 12.23970 12.23970 +1997 323 12.94690 12.94690 +1997 324 11.98870 11.98870 +1997 325 11.23360 11.23360 +1997 326 13.90130 13.90130 +1997 327 15.02340 15.02340 +1997 328 13.72000 13.72000 +1997 329 14.47050 14.47050 +1997 330 15.97400 15.97400 +1997 331 15.37420 15.37420 +1997 332 16.06570 16.06570 +1997 333 14.92350 14.92350 +1997 334 15.14020 15.14020 +1997 335 14.23230 14.23230 +1997 336 17.22480 17.22480 +1997 337 14.11910 14.11910 +1997 338 12.71830 12.71830 +1997 339 12.91990 12.91990 +1997 340 13.08030 13.08030 +1997 341 12.07290 12.07290 +1997 342 11.86240 11.86240 +1997 343 13.34170 13.34170 +1997 344 13.98650 13.98650 +1997 345 12.64200 12.64200 +1997 346 14.17920 14.17920 +1997 347 15.32210 15.32210 +1997 348 16.03030 16.03030 +1997 349 16.64740 16.64740 +1997 350 18.01520 18.01520 +1997 351 16.04620 16.04620 +1997 352 17.03600 17.03600 +1997 353 18.60030 18.60030 +1997 354 18.96320 18.96320 +1997 355 16.41940 16.41940 +1997 356 18.04980 18.04980 +1997 357 19.40540 19.40540 +1997 358 16.99440 16.99440 +1997 359 15.31800 15.31800 +1997 360 14.75140 14.75140 +1997 361 16.48010 16.48010 +1997 362 14.94130 14.94130 +1997 363 14.23400 14.23400 +1997 364 14.34290 14.34290 +1997 365 15.23420 15.23420 +1998 1 17.97730 17.97730 +1998 2 17.69830 17.69830 +1998 3 16.77630 16.77630 +1998 4 17.29570 17.29570 +1998 5 17.19050 17.19050 +1998 6 17.89190 17.89190 +1998 7 16.64920 16.64920 +1998 8 14.78920 14.78920 +1998 9 12.17140 12.17140 +1998 10 13.26860 13.26860 +1998 11 15.62290 15.62290 +1998 12 15.94630 15.94630 +1998 13 17.11150 17.11150 +1998 14 16.42400 16.42400 +1998 15 16.33900 16.33900 +1998 16 15.40470 15.40470 +1998 17 17.31280 17.31280 +1998 18 16.13110 16.13110 +1998 19 18.02280 18.02280 +1998 20 15.58580 15.58580 +1998 21 16.69070 16.69070 +1998 22 16.09620 16.09620 +1998 23 17.43440 17.43440 +1998 24 18.02130 18.02130 +1998 25 19.41450 19.41450 +1998 26 19.42100 19.42100 +1998 27 19.29590 19.29590 +1998 28 19.74780 19.74780 +1998 29 20.40980 20.40980 +1998 30 21.52720 21.52720 +1998 31 20.49150 20.49150 +1998 32 20.64400 20.64400 +1998 33 20.95060 20.95060 +1998 34 21.39110 21.39110 +1998 35 22.57340 22.57340 +1998 36 21.15980 21.15980 +1998 37 20.61320 20.61320 +1998 38 21.36420 21.36420 +1998 39 20.39070 20.39070 +1998 40 19.11520 19.11520 +1998 41 18.21410 18.21410 +1998 42 18.78290 18.78290 +1998 43 18.74450 18.74450 +1998 44 20.08060 20.08060 +1998 45 20.15920 20.15920 +1998 46 20.79440 20.79440 +1998 47 19.62640 19.62640 +1998 48 18.66470 18.66470 +1998 49 18.70910 18.70910 +1998 50 19.44680 19.44680 +1998 51 19.76410 19.76410 +1998 52 18.49400 18.49400 +1998 53 17.26960 17.26960 +1998 54 14.81530 14.81530 +1998 55 13.62580 13.62580 +1998 56 15.80000 15.80000 +1998 57 16.83170 16.83170 +1998 58 18.29680 18.29680 +1998 59 17.88140 17.88140 +1998 60 16.90660 16.90660 +1998 61 17.69400 17.69400 +1998 62 16.81120 16.81120 +1998 63 16.77320 16.77320 +1998 64 17.48500 17.48500 +1998 65 18.13860 18.13860 +1998 66 18.38580 18.38580 +1998 67 18.23520 18.23520 +1998 68 18.09950 18.09950 +1998 69 17.34510 17.34510 +1998 70 17.81000 17.81000 +1998 71 17.67100 17.67100 +1998 72 17.65570 17.65570 +1998 73 16.29140 16.29140 +1998 74 13.21580 13.21580 +1998 75 14.04380 14.04380 +1998 76 14.30020 14.30020 +1998 77 15.52910 15.52910 +1998 78 15.43160 15.43160 +1998 79 15.92510 15.92510 +1998 80 17.05990 17.05990 +1998 81 16.03310 16.03310 +1998 82 17.25680 17.25680 +1998 83 17.50040 17.50040 +1998 84 15.76280 15.76280 +1998 85 16.33690 16.33690 +1998 86 16.58970 16.58970 +1998 87 17.33540 17.33540 +1998 88 15.35900 15.35900 +1998 89 16.26720 16.26720 +1998 90 16.79700 16.79700 +1998 91 12.89010 12.89010 +1998 92 12.28570 12.28570 +1998 93 14.90470 14.90470 +1998 94 12.42530 12.42530 +1998 95 11.68530 11.68530 +1998 96 13.88500 13.88500 +1998 97 14.64410 14.64410 +1998 98 16.63040 16.63040 +1998 99 15.24130 15.24130 +1998 100 13.50360 13.50360 +1998 101 15.51020 15.51020 +1998 102 15.28870 15.28870 +1998 103 15.32740 15.32740 +1998 104 14.82780 14.82780 +1998 105 12.87270 12.87270 +1998 106 12.62050 12.62050 +1998 107 13.94300 13.94300 +1998 108 11.75690 11.75690 +1998 109 11.76630 11.76630 +1998 110 13.51040 13.51040 +1998 111 14.84420 14.84420 +1998 112 15.84440 15.84440 +1998 113 17.05580 17.05580 +1998 114 13.32730 13.32730 +1998 115 14.04950 14.04950 +1998 116 15.89130 15.89130 +1998 117 16.94130 16.94130 +1998 118 14.52360 14.52360 +1998 119 13.12820 13.12820 +1998 120 12.05320 12.05320 +1998 121 13.24580 13.24580 +1998 122 11.25360 11.25360 +1998 123 11.55780 11.55780 +1998 124 10.07010 10.07010 +1998 125 9.88627 9.88627 +1998 126 12.12230 12.12230 +1998 127 14.37130 14.37130 +1998 128 11.78850 11.78850 +1998 129 11.01640 11.01640 +1998 130 10.24630 10.24630 +1998 131 10.09220 10.09220 +1998 132 10.83170 10.83170 +1998 133 8.83955 8.83955 +1998 134 7.61324 7.61324 +1998 135 8.81269 8.81269 +1998 136 11.38610 11.38610 +1998 137 9.24051 9.24051 +1998 138 9.10158 9.10158 +1998 139 9.81133 9.81133 +1998 140 13.24390 13.24390 +1998 141 13.36640 13.36640 +1998 142 12.98520 12.98520 +1998 143 12.47300 12.47300 +1998 144 12.20590 12.20590 +1998 145 11.53290 11.53290 +1998 146 9.81600 9.81600 +1998 147 7.87774 7.87774 +1998 148 9.47177 9.47177 +1998 149 10.63830 10.63830 +1998 150 11.79890 11.79890 +1998 151 8.42767 8.42767 +1998 152 10.18110 10.18110 +1998 153 8.40601 8.40601 +1998 154 6.60807 6.60807 +1998 155 7.50666 7.50666 +1998 156 6.93987 6.93987 +1998 157 11.24970 11.24970 +1998 158 14.14460 14.14460 +1998 159 14.24690 14.24690 +1998 160 12.70140 12.70140 +1998 161 7.88227 7.88227 +1998 162 8.66925 8.66925 +1998 163 12.65800 12.65800 +1998 164 14.45450 14.45450 +1998 165 9.21966 9.21966 +1998 166 6.22145 6.22145 +1998 167 9.57021 9.57021 +1998 168 10.32090 10.32090 +1998 169 8.36737 8.36737 +1998 170 5.95709 5.95709 +1998 171 6.11582 6.11582 +1998 172 7.90995 7.90995 +1998 173 10.04750 10.04750 +1998 174 9.42035 9.42035 +1998 175 11.51450 11.51450 +1998 176 12.20630 12.20630 +1998 177 9.29056 9.29056 +1998 178 6.46394 6.46394 +1998 179 6.58554 6.58554 +1998 180 7.57832 7.57832 +1998 181 11.85170 11.85170 +1998 182 12.81290 12.81290 +1998 183 7.56738 7.56738 +1998 184 7.11269 7.11269 +1998 185 6.74226 6.74226 +1998 186 5.46002 5.46002 +1998 187 9.14809 9.14809 +1998 188 10.36360 10.36360 +1998 189 11.66340 11.66340 +1998 190 12.59210 12.59210 +1998 191 12.20310 12.20310 +1998 192 9.98597 9.98597 +1998 193 8.51658 8.51658 +1998 194 9.66767 9.66767 +1998 195 9.47193 9.47193 +1998 196 9.23473 9.23473 +1998 197 9.32332 9.32332 +1998 198 7.03555 7.03555 +1998 199 6.48717 6.48717 +1998 200 6.68090 6.68090 +1998 201 8.71295 8.71295 +1998 202 10.82630 10.82630 +1998 203 12.04760 12.04760 +1998 204 9.98456 9.98456 +1998 205 8.50575 8.50575 +1998 206 9.41816 9.41816 +1998 207 10.43520 10.43520 +1998 208 10.47300 10.47300 +1998 209 9.58588 9.58588 +1998 210 12.10350 12.10350 +1998 211 10.40860 10.40860 +1998 212 10.28580 10.28580 +1998 213 9.06460 9.06460 +1998 214 6.78012 6.78012 +1998 215 4.70550 4.70550 +1998 216 6.37507 6.37507 +1998 217 7.72109 7.72109 +1998 218 9.66006 9.66006 +1998 219 7.94940 7.94940 +1998 220 6.68640 6.68640 +1998 221 9.85046 9.85046 +1998 222 12.29200 12.29200 +1998 223 10.29830 10.29830 +1998 224 8.56989 8.56989 +1998 225 8.74715 8.74715 +1998 226 7.96161 7.96161 +1998 227 7.17697 7.17697 +1998 228 6.03332 6.03332 +1998 229 7.44812 7.44812 +1998 230 5.58401 5.58401 +1998 231 6.04929 6.04929 +1998 232 4.96691 4.96691 +1998 233 6.76919 6.76919 +1998 234 6.31002 6.31002 +1998 235 9.24405 9.24405 +1998 236 10.31810 10.31810 +1998 237 11.50400 11.50400 +1998 238 11.10400 11.10400 +1998 239 11.68810 11.68810 +1998 240 9.35843 9.35843 +1998 241 7.30088 7.30088 +1998 242 5.55268 5.55268 +1998 243 6.65109 6.65109 +1998 244 8.08677 8.08677 +1998 245 8.60570 8.60570 +1998 246 7.95754 7.95754 +1998 247 7.17319 7.17319 +1998 248 10.38890 10.38890 +1998 249 8.16285 8.16285 +1998 250 8.62494 8.62494 +1998 251 7.86879 7.86879 +1998 252 7.21479 7.21479 +1998 253 9.10255 9.10255 +1998 254 8.39875 8.39875 +1998 255 8.10077 8.10077 +1998 256 9.62933 9.62933 +1998 257 11.97870 11.97870 +1998 258 12.99780 12.99780 +1998 259 13.68090 13.68090 +1998 260 10.71190 10.71190 +1998 261 10.23580 10.23580 +1998 262 10.21680 10.21680 +1998 263 10.48630 10.48630 +1998 264 10.80850 10.80850 +1998 265 10.06160 10.06160 +1998 266 9.84513 9.84513 +1998 267 10.89810 10.89810 +1998 268 10.89020 10.89020 +1998 269 13.12090 13.12090 +1998 270 11.60610 11.60610 +1998 271 11.27830 11.27830 +1998 272 12.32720 12.32720 +1998 273 11.99110 11.99110 +1998 274 10.97880 10.97880 +1998 275 13.69950 13.69950 +1998 276 11.79730 11.79730 +1998 277 11.65110 11.65110 +1998 278 11.12470 11.12470 +1998 279 10.64640 10.64640 +1998 280 12.41490 12.41490 +1998 281 13.28980 13.28980 +1998 282 13.21480 13.21480 +1998 283 12.98040 12.98040 +1998 284 13.62470 13.62470 +1998 285 11.53520 11.53520 +1998 286 12.08200 12.08200 +1998 287 12.57090 12.57090 +1998 288 10.54710 10.54710 +1998 289 10.25640 10.25640 +1998 290 10.95190 10.95190 +1998 291 11.99530 11.99530 +1998 292 14.31400 14.31400 +1998 293 11.70540 11.70540 +1998 294 9.26551 9.26551 +1998 295 10.18130 10.18130 +1998 296 10.62310 10.62310 +1998 297 11.78330 11.78330 +1998 298 13.36450 13.36450 +1998 299 13.84070 13.84070 +1998 300 15.10250 15.10250 +1998 301 14.64730 14.64730 +1998 302 12.23420 12.23420 +1998 303 11.95560 11.95560 +1998 304 12.29190 12.29190 +1998 305 12.15810 12.15810 +1998 306 11.71770 11.71770 +1998 307 13.62900 13.62900 +1998 308 12.88590 12.88590 +1998 309 13.32660 13.32660 +1998 310 14.33570 14.33570 +1998 311 13.32440 13.32440 +1998 312 14.19420 14.19420 +1998 313 14.23290 14.23290 +1998 314 14.18260 14.18260 +1998 315 14.58730 14.58730 +1998 316 12.91570 12.91570 +1998 317 11.97090 11.97090 +1998 318 12.16840 12.16840 +1998 319 12.62400 12.62400 +1998 320 13.50140 13.50140 +1998 321 14.28210 14.28210 +1998 322 14.52230 14.52230 +1998 323 14.58610 14.58610 +1998 324 13.62040 13.62040 +1998 325 14.44710 14.44710 +1998 326 13.20190 13.20190 +1998 327 14.75700 14.75700 +1998 328 14.29600 14.29600 +1998 329 13.52510 13.52510 +1998 330 11.50790 11.50790 +1998 331 10.20840 10.20840 +1998 332 11.54470 11.54470 +1998 333 16.30850 16.30850 +1998 334 14.83240 14.83240 +1998 335 14.63200 14.63200 +1998 336 14.11680 14.11680 +1998 337 12.37110 12.37110 +1998 338 14.00930 14.00930 +1998 339 14.22380 14.22380 +1998 340 13.58620 13.58620 +1998 341 13.68400 13.68400 +1998 342 12.68030 12.68030 +1998 343 12.20160 12.20160 +1998 344 12.75650 12.75650 +1998 345 13.85510 13.85510 +1998 346 15.27490 15.27490 +1998 347 15.88190 15.88190 +1998 348 15.53710 15.53710 +1998 349 16.52020 16.52020 +1998 350 16.33910 16.33910 +1998 351 16.56150 16.56150 +1998 352 17.91050 17.91050 +1998 353 16.98100 16.98100 +1998 354 18.01660 18.01660 +1998 355 18.66330 18.66330 +1998 356 19.33250 19.33250 +1998 357 17.13320 17.13320 +1998 358 14.31550 14.31550 +1998 359 14.90310 14.90310 +1998 360 14.72990 14.72990 +1998 361 15.12250 15.12250 +1998 362 16.16260 16.16260 +1998 363 16.32020 16.32020 +1998 364 18.07630 18.07630 +1998 365 18.46990 18.46990 +1999 1 18.83740 18.83740 +1999 2 17.68730 17.68730 +1999 3 18.03610 18.03610 +1999 4 19.62250 19.62250 +1999 5 20.31380 20.31380 +1999 6 20.96510 20.96510 +1999 7 19.64360 19.64360 +1999 8 19.03000 19.03000 +1999 9 16.60420 16.60420 +1999 10 16.84700 16.84700 +1999 11 16.78090 16.78090 +1999 12 17.46220 17.46220 +1999 13 17.61630 17.61630 +1999 14 18.78920 18.78920 +1999 15 19.41610 19.41610 +1999 16 19.20360 19.20360 +1999 17 18.62420 18.62420 +1999 18 19.79750 19.79750 +1999 19 20.07190 20.07190 +1999 20 20.25330 20.25330 +1999 21 18.99960 18.99960 +1999 22 18.08080 18.08080 +1999 23 18.07530 18.07530 +1999 24 17.57150 17.57150 +1999 25 16.69730 16.69730 +1999 26 17.90910 17.90910 +1999 27 17.70680 17.70680 +1999 28 17.56550 17.56550 +1999 29 16.23090 16.23090 +1999 30 18.91380 18.91380 +1999 31 16.29740 16.29740 +1999 32 14.34580 14.34580 +1999 33 15.57780 15.57780 +1999 34 16.40840 16.40840 +1999 35 17.29870 17.29870 +1999 36 16.85550 16.85550 +1999 37 17.56380 17.56380 +1999 38 17.06160 17.06160 +1999 39 17.62150 17.62150 +1999 40 17.46340 17.46340 +1999 41 16.97850 16.97850 +1999 42 16.24400 16.24400 +1999 43 16.83860 16.83860 +1999 44 16.62030 16.62030 +1999 45 16.70340 16.70340 +1999 46 16.79620 16.79620 +1999 47 18.14380 18.14380 +1999 48 18.28850 18.28850 +1999 49 17.73920 17.73920 +1999 50 18.37650 18.37650 +1999 51 18.01320 18.01320 +1999 52 16.63700 16.63700 +1999 53 18.20950 18.20950 +1999 54 16.07440 16.07440 +1999 55 15.39260 15.39260 +1999 56 16.25360 16.25360 +1999 57 18.61730 18.61730 +1999 58 16.40650 16.40650 +1999 59 15.62560 15.62560 +1999 60 15.25630 15.25630 +1999 61 15.97820 15.97820 +1999 62 16.83900 16.83900 +1999 63 15.66770 15.66770 +1999 64 16.27380 16.27380 +1999 65 17.81620 17.81620 +1999 66 17.77770 17.77770 +1999 67 16.53670 16.53670 +1999 68 15.54540 15.54540 +1999 69 15.52140 15.52140 +1999 70 17.30520 17.30520 +1999 71 16.90150 16.90150 +1999 72 15.49740 15.49740 +1999 73 16.71150 16.71150 +1999 74 17.09380 17.09380 +1999 75 17.68830 17.68830 +1999 76 16.59770 16.59770 +1999 77 16.53160 16.53160 +1999 78 16.46940 16.46940 +1999 79 17.59410 17.59410 +1999 80 17.07110 17.07110 +1999 81 16.89980 16.89980 +1999 82 17.73060 17.73060 +1999 83 16.40840 16.40840 +1999 84 16.67870 16.67870 +1999 85 16.69020 16.69020 +1999 86 16.73820 16.73820 +1999 87 17.36740 17.36740 +1999 88 17.06840 17.06840 +1999 89 16.81660 16.81660 +1999 90 16.24740 16.24740 +1999 91 15.30200 15.30200 +1999 92 14.89450 14.89450 +1999 93 14.91840 14.91840 +1999 94 15.31350 15.31350 +1999 95 15.31520 15.31520 +1999 96 17.52340 17.52340 +1999 97 18.04440 18.04440 +1999 98 14.68420 14.68420 +1999 99 13.11550 13.11550 +1999 100 11.46090 11.46090 +1999 101 11.17140 11.17140 +1999 102 11.64450 11.64450 +1999 103 13.12380 13.12380 +1999 104 13.47530 13.47530 +1999 105 12.80020 12.80020 +1999 106 8.52632 8.52632 +1999 107 9.26654 9.26654 +1999 108 11.37740 11.37740 +1999 109 12.38970 12.38970 +1999 110 12.51660 12.51660 +1999 111 12.63180 12.63180 +1999 112 12.57650 12.57650 +1999 113 13.02940 13.02940 +1999 114 13.12830 13.12830 +1999 115 12.79470 12.79470 +1999 116 12.69050 12.69050 +1999 117 12.64370 12.64370 +1999 118 11.71360 11.71360 +1999 119 11.18530 11.18530 +1999 120 13.63650 13.63650 +1999 121 13.19750 13.19750 +1999 122 11.28360 11.28360 +1999 123 8.77182 8.77182 +1999 124 10.48690 10.48690 +1999 125 7.14227 7.14227 +1999 126 9.73445 9.73445 +1999 127 10.23220 10.23220 +1999 128 9.77668 9.77668 +1999 129 11.99750 11.99750 +1999 130 10.64900 10.64900 +1999 131 10.58180 10.58180 +1999 132 11.20280 11.20280 +1999 133 14.32620 14.32620 +1999 134 15.34300 15.34300 +1999 135 15.49390 15.49390 +1999 136 12.87280 12.87280 +1999 137 9.80537 9.80537 +1999 138 8.87742 8.87742 +1999 139 8.11751 8.11751 +1999 140 8.00239 8.00239 +1999 141 7.72499 7.72499 +1999 142 7.73735 7.73735 +1999 143 8.53686 8.53686 +1999 144 9.00885 9.00885 +1999 145 11.09150 11.09150 +1999 146 13.62330 13.62330 +1999 147 14.22510 14.22510 +1999 148 14.17590 14.17590 +1999 149 13.78760 13.78760 +1999 150 13.07470 13.07470 +1999 151 12.46580 12.46580 +1999 152 12.32230 12.32230 +1999 153 10.11780 10.11780 +1999 154 9.26377 9.26377 +1999 155 9.39518 9.39518 +1999 156 10.36150 10.36150 +1999 157 8.89184 8.89184 +1999 158 9.41574 9.41574 +1999 159 9.22084 9.22084 +1999 160 7.49181 7.49181 +1999 161 7.68029 7.68029 +1999 162 10.76430 10.76430 +1999 163 11.88050 11.88050 +1999 164 10.78120 10.78120 +1999 165 12.07590 12.07590 +1999 166 10.67790 10.67790 +1999 167 9.23876 9.23876 +1999 168 7.34039 7.34039 +1999 169 6.66034 6.66034 +1999 170 6.08939 6.08939 +1999 171 6.81296 6.81296 +1999 172 6.86873 6.86873 +1999 173 5.42043 5.42043 +1999 174 5.93104 5.93104 +1999 175 5.53132 5.53132 +1999 176 6.52190 6.52190 +1999 177 6.45148 6.45148 +1999 178 5.49390 5.49390 +1999 179 5.60897 5.60897 +1999 180 4.54351 4.54351 +1999 181 5.93003 5.93003 +1999 182 8.67612 8.67612 +1999 183 11.48940 11.48940 +1999 184 7.13412 7.13412 +1999 185 6.58225 6.58225 +1999 186 7.01797 7.01797 +1999 187 9.59135 9.59135 +1999 188 8.65482 8.65482 +1999 189 5.81383 5.81383 +1999 190 5.44884 5.44884 +1999 191 4.86497 4.86497 +1999 192 5.81832 5.81832 +1999 193 7.69501 7.69501 +1999 194 7.63720 7.63720 +1999 195 6.90313 6.90313 +1999 196 10.10220 10.10220 +1999 197 12.18910 12.18910 +1999 198 11.50010 11.50010 +1999 199 10.69700 10.69700 +1999 200 9.55297 9.55297 +1999 201 8.50666 8.50666 +1999 202 8.70573 8.70573 +1999 203 7.29360 7.29360 +1999 204 7.46422 7.46422 +1999 205 6.46286 6.46286 +1999 206 7.61773 7.61773 +1999 207 4.66575 4.66575 +1999 208 4.87982 4.87982 +1999 209 5.05624 5.05624 +1999 210 5.51507 5.51507 +1999 211 5.46813 5.46813 +1999 212 4.74082 4.74082 +1999 213 6.06560 6.06560 +1999 214 9.23171 9.23171 +1999 215 6.82489 6.82489 +1999 216 7.28934 7.28934 +1999 217 7.14365 7.14365 +1999 218 6.22966 6.22966 +1999 219 6.31692 6.31692 +1999 220 6.78076 6.78076 +1999 221 6.71206 6.71206 +1999 222 7.32706 7.32706 +1999 223 8.36887 8.36887 +1999 224 7.95901 7.95901 +1999 225 6.94288 6.94288 +1999 226 9.46506 9.46506 +1999 227 9.75593 9.75593 +1999 228 6.75134 6.75134 +1999 229 5.01855 5.01855 +1999 230 5.11005 5.11005 +1999 231 7.18376 7.18376 +1999 232 8.35491 8.35491 +1999 233 7.63616 7.63616 +1999 234 6.84997 6.84997 +1999 235 8.07754 8.07754 +1999 236 9.52635 9.52635 +1999 237 8.51323 8.51323 +1999 238 7.85510 7.85510 +1999 239 7.19560 7.19560 +1999 240 7.50876 7.50876 +1999 241 8.42348 8.42348 +1999 242 9.17925 9.17925 +1999 243 6.18656 6.18656 +1999 244 9.05256 9.05256 +1999 245 8.93423 8.93423 +1999 246 8.98573 8.98573 +1999 247 9.11739 9.11739 +1999 248 9.86074 9.86074 +1999 249 11.90050 11.90050 +1999 250 10.62430 10.62430 +1999 251 7.59530 7.59530 +1999 252 7.17074 7.17074 +1999 253 8.06387 8.06387 +1999 254 10.12360 10.12360 +1999 255 11.30820 11.30820 +1999 256 12.81930 12.81930 +1999 257 10.80910 10.80910 +1999 258 10.04910 10.04910 +1999 259 10.07150 10.07150 +1999 260 9.74118 9.74118 +1999 261 9.70729 9.70729 +1999 262 9.78828 9.78828 +1999 263 7.97730 7.97730 +1999 264 7.81720 7.81720 +1999 265 8.59751 8.59751 +1999 266 8.75537 8.75537 +1999 267 8.67656 8.67656 +1999 268 9.54615 9.54615 +1999 269 9.19991 9.19991 +1999 270 7.87432 7.87432 +1999 271 10.29100 10.29100 +1999 272 10.89900 10.89900 +1999 273 10.93620 10.93620 +1999 274 10.45130 10.45130 +1999 275 11.00740 11.00740 +1999 276 9.87753 9.87753 +1999 277 12.01930 12.01930 +1999 278 11.80420 11.80420 +1999 279 13.13050 13.13050 +1999 280 12.46480 12.46480 +1999 281 13.35310 13.35310 +1999 282 13.17640 13.17640 +1999 283 14.70140 14.70140 +1999 284 12.78430 12.78430 +1999 285 12.94150 12.94150 +1999 286 9.46598 9.46598 +1999 287 7.49546 7.49546 +1999 288 8.85215 8.85215 +1999 289 9.86957 9.86957 +1999 290 9.54004 9.54004 +1999 291 11.40590 11.40590 +1999 292 11.64470 11.64470 +1999 293 12.02620 12.02620 +1999 294 11.71070 11.71070 +1999 295 12.08220 12.08220 +1999 296 11.93110 11.93110 +1999 297 10.80300 10.80300 +1999 298 11.83460 11.83460 +1999 299 12.35010 12.35010 +1999 300 13.09080 13.09080 +1999 301 13.88440 13.88440 +1999 302 13.61290 13.61290 +1999 303 13.99490 13.99490 +1999 304 13.49960 13.49960 +1999 305 13.57460 13.57460 +1999 306 13.93660 13.93660 +1999 307 12.97470 12.97470 +1999 308 14.27600 14.27600 +1999 309 14.79920 14.79920 +1999 310 14.52310 14.52310 +1999 311 14.81430 14.81430 +1999 312 15.70650 15.70650 +1999 313 15.86180 15.86180 +1999 314 15.17850 15.17850 +1999 315 12.28700 12.28700 +1999 316 11.32130 11.32130 +1999 317 12.38180 12.38180 +1999 318 13.07450 13.07450 +1999 319 13.62320 13.62320 +1999 320 13.70610 13.70610 +1999 321 13.20430 13.20430 +1999 322 13.60750 13.60750 +1999 323 11.40060 11.40060 +1999 324 9.91589 9.91589 +1999 325 10.49620 10.49620 +1999 326 12.12020 12.12020 +1999 327 11.97070 11.97070 +1999 328 14.59370 14.59370 +1999 329 13.71460 13.71460 +1999 330 13.97860 13.97860 +1999 331 12.18550 12.18550 +1999 332 11.55120 11.55120 +1999 333 12.10080 12.10080 +1999 334 12.90610 12.90610 +1999 335 13.55730 13.55730 +1999 336 15.05800 15.05800 +1999 337 16.06340 16.06340 +1999 338 16.84990 16.84990 +1999 339 16.23320 16.23320 +1999 340 14.00070 14.00070 +1999 341 12.41670 12.41670 +1999 342 13.39910 13.39910 +1999 343 14.37720 14.37720 +1999 344 14.00630 14.00630 +1999 345 15.52070 15.52070 +1999 346 15.15050 15.15050 +1999 347 11.64960 11.64960 +1999 348 12.33690 12.33690 +1999 349 13.41940 13.41940 +1999 350 14.22850 14.22850 +1999 351 15.12800 15.12800 +1999 352 15.56590 15.56590 +1999 353 16.20410 16.20410 +1999 354 13.02140 13.02140 +1999 355 15.24240 15.24240 +1999 356 14.58070 14.58070 +1999 357 14.87820 14.87820 +1999 358 12.79710 12.79710 +1999 359 11.96710 11.96710 +1999 360 12.14130 12.14130 +1999 361 12.92890 12.92890 +1999 362 13.84870 13.84870 +1999 363 14.45940 14.45940 +1999 364 13.79810 13.79810 +1999 365 15.83350 15.83350 +2000 1 16.78660 16.78660 +2000 2 13.43360 13.43360 +2000 3 12.25590 12.25590 +2000 4 14.60990 14.60990 +2000 5 16.29810 16.29810 +2000 6 15.74860 15.74860 +2000 7 14.80580 14.80580 +2000 8 14.63450 14.63450 +2000 9 14.90320 14.90320 +2000 10 13.30160 13.30160 +2000 11 13.11090 13.11090 +2000 12 14.23960 14.23960 +2000 13 16.45680 16.45680 +2000 14 16.65820 16.65820 +2000 15 15.41780 15.41780 +2000 16 16.68290 16.68290 +2000 17 16.94870 16.94870 +2000 18 16.79140 16.79140 +2000 19 16.87910 16.87910 +2000 20 17.43050 17.43050 +2000 21 18.63010 18.63010 +2000 22 18.89700 18.89700 +2000 23 18.43520 18.43520 +2000 24 16.60850 16.60850 +2000 25 15.20090 15.20090 +2000 26 14.60210 14.60210 +2000 27 15.41820 15.41820 +2000 28 15.41180 15.41180 +2000 29 16.62380 16.62380 +2000 30 14.82780 14.82780 +2000 31 13.80790 13.80790 +2000 32 14.01410 14.01410 +2000 33 13.53840 13.53840 +2000 34 14.01970 14.01970 +2000 35 17.47780 17.47780 +2000 36 16.81580 16.81580 +2000 37 18.48740 18.48740 +2000 38 17.62720 17.62720 +2000 39 18.02790 18.02790 +2000 40 19.06350 19.06350 +2000 41 17.22760 17.22760 +2000 42 16.46110 16.46110 +2000 43 15.92080 15.92080 +2000 44 17.41660 17.41660 +2000 45 17.96640 17.96640 +2000 46 16.17660 16.17660 +2000 47 18.19250 18.19250 +2000 48 17.10820 17.10820 +2000 49 16.65180 16.65180 +2000 50 16.80770 16.80770 +2000 51 17.03110 17.03110 +2000 52 16.28870 16.28870 +2000 53 15.31060 15.31060 +2000 54 15.70070 15.70070 +2000 55 17.26550 17.26550 +2000 56 17.86490 17.86490 +2000 57 17.86160 17.86160 +2000 58 18.78350 18.78350 +2000 59 17.88400 17.88400 +2000 60 17.56490 17.56490 +2000 61 16.57390 16.57390 +2000 62 17.06790 17.06790 +2000 63 16.47470 16.47470 +2000 64 18.39710 18.39710 +2000 65 18.88440 18.88440 +2000 66 18.22330 18.22330 +2000 67 16.80100 16.80100 +2000 68 16.83890 16.83890 +2000 69 16.57700 16.57700 +2000 70 15.00300 15.00300 +2000 71 15.88580 15.88580 +2000 72 14.79260 14.79260 +2000 73 13.67010 13.67010 +2000 74 14.09420 14.09420 +2000 75 14.18830 14.18830 +2000 76 15.12270 15.12270 +2000 77 14.08630 14.08630 +2000 78 14.03500 14.03500 +2000 79 15.74500 15.74500 +2000 80 15.97640 15.97640 +2000 81 11.73530 11.73530 +2000 82 11.34230 11.34230 +2000 83 13.11960 13.11960 +2000 84 14.40450 14.40450 +2000 85 13.72120 13.72120 +2000 86 14.56690 14.56690 +2000 87 13.70030 13.70030 +2000 88 14.57810 14.57810 +2000 89 13.42940 13.42940 +2000 90 14.09080 14.09080 +2000 91 15.30880 15.30880 +2000 92 14.75750 14.75750 +2000 93 14.69370 14.69370 +2000 94 13.35820 13.35820 +2000 95 15.70660 15.70660 +2000 96 16.31120 16.31120 +2000 97 16.33680 16.33680 +2000 98 14.18080 14.18080 +2000 99 13.72350 13.72350 +2000 100 13.52510 13.52510 +2000 101 13.08280 13.08280 +2000 102 12.75930 12.75930 +2000 103 11.91930 11.91930 +2000 104 11.95610 11.95610 +2000 105 12.09470 12.09470 +2000 106 13.97470 13.97470 +2000 107 14.36790 14.36790 +2000 108 14.47080 14.47080 +2000 109 14.54400 14.54400 +2000 110 15.29540 15.29540 +2000 111 14.21380 14.21380 +2000 112 13.24430 13.24430 +2000 113 11.26880 11.26880 +2000 114 11.22420 11.22420 +2000 115 9.40359 9.40359 +2000 116 9.99461 9.99461 +2000 117 11.38160 11.38160 +2000 118 11.84340 11.84340 +2000 119 9.90623 9.90623 +2000 120 9.68597 9.68597 +2000 121 9.97802 9.97802 +2000 122 11.20210 11.20210 +2000 123 11.71130 11.71130 +2000 124 11.59230 11.59230 +2000 125 12.25120 12.25120 +2000 126 11.24960 11.24960 +2000 127 14.02620 14.02620 +2000 128 12.31640 12.31640 +2000 129 10.01730 10.01730 +2000 130 11.37070 11.37070 +2000 131 12.34150 12.34150 +2000 132 14.71820 14.71820 +2000 133 15.29190 15.29190 +2000 134 11.89210 11.89210 +2000 135 10.85370 10.85370 +2000 136 11.18720 11.18720 +2000 137 8.94510 8.94510 +2000 138 9.55978 9.55978 +2000 139 10.53340 10.53340 +2000 140 11.60310 11.60310 +2000 141 11.76660 11.76660 +2000 142 10.01630 10.01630 +2000 143 9.90293 9.90293 +2000 144 9.95349 9.95349 +2000 145 9.44983 9.44983 +2000 146 8.30538 8.30538 +2000 147 7.94522 7.94522 +2000 148 7.73766 7.73766 +2000 149 8.72017 8.72017 +2000 150 11.10890 11.10890 +2000 151 11.22360 11.22360 +2000 152 11.19500 11.19500 +2000 153 10.00820 10.00820 +2000 154 11.07510 11.07510 +2000 155 9.19816 9.19816 +2000 156 9.56178 9.56178 +2000 157 8.92674 8.92674 +2000 158 8.67472 8.67472 +2000 159 7.66454 7.66454 +2000 160 5.76638 5.76638 +2000 161 7.47375 7.47375 +2000 162 9.02927 9.02927 +2000 163 6.07147 6.07147 +2000 164 4.18544 4.18544 +2000 165 5.44766 5.44766 +2000 166 5.66383 5.66383 +2000 167 6.32234 6.32234 +2000 168 8.84367 8.84367 +2000 169 10.71730 10.71730 +2000 170 8.52628 8.52628 +2000 171 7.90499 7.90499 +2000 172 7.47629 7.47629 +2000 173 6.41833 6.41833 +2000 174 7.01148 7.01148 +2000 175 9.27124 9.27124 +2000 176 10.74510 10.74510 +2000 177 10.79600 10.79600 +2000 178 10.55720 10.55720 +2000 179 10.05330 10.05330 +2000 180 10.81530 10.81530 +2000 181 10.57900 10.57900 +2000 182 9.01924 9.01924 +2000 183 10.36680 10.36680 +2000 184 10.68510 10.68510 +2000 185 10.42860 10.42860 +2000 186 9.72539 9.72539 +2000 187 9.82498 9.82498 +2000 188 9.38280 9.38280 +2000 189 8.51230 8.51230 +2000 190 7.39323 7.39323 +2000 191 6.42160 6.42160 +2000 192 5.21108 5.21108 +2000 193 5.51833 5.51833 +2000 194 8.19475 8.19475 +2000 195 9.39445 9.39445 +2000 196 9.12839 9.12839 +2000 197 9.27437 9.27437 +2000 198 8.85677 8.85677 +2000 199 8.88293 8.88293 +2000 200 10.18090 10.18090 +2000 201 11.42090 11.42090 +2000 202 11.07790 11.07790 +2000 203 9.82739 9.82739 +2000 204 8.56185 8.56185 +2000 205 7.73597 7.73597 +2000 206 9.19752 9.19752 +2000 207 10.55410 10.55410 +2000 208 11.02970 11.02970 +2000 209 9.87030 9.87030 +2000 210 7.59583 7.59583 +2000 211 6.47811 6.47811 +2000 212 8.17251 8.17251 +2000 213 7.20905 7.20905 +2000 214 5.60633 5.60633 +2000 215 5.30025 5.30025 +2000 216 6.67567 6.67567 +2000 217 7.35862 7.35862 +2000 218 7.68742 7.68742 +2000 219 6.95808 6.95808 +2000 220 7.34496 7.34496 +2000 221 7.69781 7.69781 +2000 222 8.34834 8.34834 +2000 223 9.78413 9.78413 +2000 224 7.89916 7.89916 +2000 225 6.66949 6.66949 +2000 226 7.97179 7.97179 +2000 227 6.29739 6.29739 +2000 228 6.32890 6.32890 +2000 229 8.25052 8.25052 +2000 230 10.31400 10.31400 +2000 231 8.03403 8.03403 +2000 232 8.90866 8.90866 +2000 233 8.02174 8.02174 +2000 234 6.76754 6.76754 +2000 235 5.59529 5.59529 +2000 236 5.14866 5.14866 +2000 237 6.53623 6.53623 +2000 238 9.27257 9.27257 +2000 239 10.39560 10.39560 +2000 240 9.50800 9.50800 +2000 241 9.56777 9.56777 +2000 242 8.71314 8.71314 +2000 243 9.15852 9.15852 +2000 244 8.40430 8.40430 +2000 245 8.34065 8.34065 +2000 246 7.81011 7.81011 +2000 247 8.19763 8.19763 +2000 248 7.98111 7.98111 +2000 249 10.11160 10.11160 +2000 250 11.55540 11.55540 +2000 251 12.08650 12.08650 +2000 252 12.43840 12.43840 +2000 253 10.06720 10.06720 +2000 254 8.52553 8.52553 +2000 255 7.83729 7.83729 +2000 256 7.96019 7.96019 +2000 257 8.13705 8.13705 +2000 258 7.65860 7.65860 +2000 259 7.66843 7.66843 +2000 260 8.48544 8.48544 +2000 261 8.46843 8.46843 +2000 262 10.10770 10.10770 +2000 263 12.52960 12.52960 +2000 264 13.09580 13.09580 +2000 265 10.90650 10.90650 +2000 266 10.99300 10.99300 +2000 267 11.13600 11.13600 +2000 268 8.04219 8.04219 +2000 269 6.35929 6.35929 +2000 270 6.97045 6.97045 +2000 271 7.85675 7.85675 +2000 272 9.36475 9.36475 +2000 273 12.28310 12.28310 +2000 274 12.93580 12.93580 +2000 275 12.84080 12.84080 +2000 276 10.48900 10.48900 +2000 277 10.07270 10.07270 +2000 278 9.95243 9.95243 +2000 279 11.16610 11.16610 +2000 280 12.77540 12.77540 +2000 281 13.28200 13.28200 +2000 282 12.31210 12.31210 +2000 283 9.92551 9.92551 +2000 284 9.49207 9.49207 +2000 285 8.20832 8.20832 +2000 286 10.09430 10.09430 +2000 287 10.00380 10.00380 +2000 288 10.31170 10.31170 +2000 289 12.52990 12.52990 +2000 290 10.34820 10.34820 +2000 291 8.95364 8.95364 +2000 292 8.18260 8.18260 +2000 293 9.71545 9.71545 +2000 294 10.39960 10.39960 +2000 295 11.29370 11.29370 +2000 296 12.50770 12.50770 +2000 297 12.22690 12.22690 +2000 298 12.51000 12.51000 +2000 299 13.56920 13.56920 +2000 300 12.50950 12.50950 +2000 301 12.59830 12.59830 +2000 302 13.42450 13.42450 +2000 303 14.08800 14.08800 +2000 304 11.88030 11.88030 +2000 305 12.66190 12.66190 +2000 306 11.80780 11.80780 +2000 307 10.69890 10.69890 +2000 308 9.30823 9.30823 +2000 309 10.52630 10.52630 +2000 310 13.24030 13.24030 +2000 311 12.03760 12.03760 +2000 312 10.40100 10.40100 +2000 313 10.12470 10.12470 +2000 314 9.86369 9.86369 +2000 315 10.39260 10.39260 +2000 316 10.78490 10.78490 +2000 317 11.39680 11.39680 +2000 318 11.82150 11.82150 +2000 319 11.33210 11.33210 +2000 320 10.43660 10.43660 +2000 321 12.47000 12.47000 +2000 322 10.75470 10.75470 +2000 323 10.33760 10.33760 +2000 324 9.61685 9.61685 +2000 325 12.41890 12.41890 +2000 326 12.80190 12.80190 +2000 327 12.90550 12.90550 +2000 328 12.20850 12.20850 +2000 329 12.60340 12.60340 +2000 330 12.06410 12.06410 +2000 331 12.01280 12.01280 +2000 332 11.08140 11.08140 +2000 333 11.46230 11.46230 +2000 334 13.95000 13.95000 +2000 335 13.08320 13.08320 +2000 336 14.34520 14.34520 +2000 337 14.25490 14.25490 +2000 338 12.27080 12.27080 +2000 339 13.74210 13.74210 +2000 340 13.86360 13.86360 +2000 341 14.21630 14.21630 +2000 342 15.39890 15.39890 +2000 343 14.58130 14.58130 +2000 344 13.92470 13.92470 +2000 345 13.49140 13.49140 +2000 346 13.38980 13.38980 +2000 347 14.90440 14.90440 +2000 348 15.45830 15.45830 +2000 349 15.23590 15.23590 +2000 350 15.51740 15.51740 +2000 351 15.82050 15.82050 +2000 352 16.44280 16.44280 +2000 353 15.32180 15.32180 +2000 354 15.32000 15.32000 +2000 355 16.76640 16.76640 +2000 356 15.25840 15.25840 +2000 357 14.99040 14.99040 +2000 358 16.56000 16.56000 +2000 359 18.34240 18.34240 +2000 360 18.60250 18.60250 +2000 361 18.82670 18.82670 +2000 362 18.52680 18.52680 +2000 363 16.95190 16.95190 +2000 364 14.44110 14.44110 +2000 365 13.14100 13.14100 +2000 366 12.37560 12.37560 +2001 1 13.32200 13.32200 +2001 2 14.25020 14.25020 +2001 3 15.96270 15.96270 +2001 4 16.46510 16.46510 +2001 5 16.76540 16.76540 +2001 6 16.76480 16.76480 +2001 7 16.37040 16.37040 +2001 8 16.26270 16.26270 +2001 9 15.77900 15.77900 +2001 10 15.39320 15.39320 +2001 11 16.13440 16.13440 +2001 12 16.42000 16.42000 +2001 13 15.94860 15.94860 +2001 14 13.92510 13.92510 +2001 15 15.16110 15.16110 +2001 16 14.23420 14.23420 +2001 17 15.37980 15.37980 +2001 18 16.16220 16.16220 +2001 19 15.74890 15.74890 +2001 20 14.74150 14.74150 +2001 21 17.20630 17.20630 +2001 22 17.40810 17.40810 +2001 23 17.21010 17.21010 +2001 24 18.91800 18.91800 +2001 25 16.38360 16.38360 +2001 26 13.67950 13.67950 +2001 27 14.07540 14.07540 +2001 28 15.18080 15.18080 +2001 29 16.51830 16.51830 +2001 30 15.46330 15.46330 +2001 31 17.45910 17.45910 +2001 32 16.99650 16.99650 +2001 33 16.50610 16.50610 +2001 34 16.89890 16.89890 +2001 35 16.94300 16.94300 +2001 36 18.11260 18.11260 +2001 37 13.91600 13.91600 +2001 38 14.78910 14.78910 +2001 39 16.56790 16.56790 +2001 40 17.75840 17.75840 +2001 41 16.68940 16.68940 +2001 42 16.43520 16.43520 +2001 43 18.35130 18.35130 +2001 44 18.33870 18.33870 +2001 45 19.83710 19.83710 +2001 46 19.75780 19.75780 +2001 47 18.23740 18.23740 +2001 48 18.71970 18.71970 +2001 49 18.54290 18.54290 +2001 50 18.32060 18.32060 +2001 51 19.65840 19.65840 +2001 52 18.94820 18.94820 +2001 53 16.22070 16.22070 +2001 54 16.58510 16.58510 +2001 55 17.85990 17.85990 +2001 56 17.93810 17.93810 +2001 57 17.01940 17.01940 +2001 58 17.69130 17.69130 +2001 59 16.58690 16.58690 +2001 60 16.44630 16.44630 +2001 61 16.90910 16.90910 +2001 62 16.08500 16.08500 +2001 63 15.71470 15.71470 +2001 64 15.01840 15.01840 +2001 65 14.77480 14.77480 +2001 66 15.70300 15.70300 +2001 67 15.03570 15.03570 +2001 68 13.22220 13.22220 +2001 69 11.96810 11.96810 +2001 70 13.31480 13.31480 +2001 71 14.61620 14.61620 +2001 72 15.82250 15.82250 +2001 73 15.10250 15.10250 +2001 74 14.17580 14.17580 +2001 75 14.03110 14.03110 +2001 76 13.46250 13.46250 +2001 77 13.87530 13.87530 +2001 78 13.81230 13.81230 +2001 79 13.79590 13.79590 +2001 80 14.41230 14.41230 +2001 81 14.49130 14.49130 +2001 82 14.78490 14.78490 +2001 83 15.01210 15.01210 +2001 84 15.16190 15.16190 +2001 85 15.45210 15.45210 +2001 86 16.07410 16.07410 +2001 87 15.12480 15.12480 +2001 88 12.59160 12.59160 +2001 89 12.30370 12.30370 +2001 90 12.35010 12.35010 +2001 91 14.58740 14.58740 +2001 92 16.22390 16.22390 +2001 93 12.30580 12.30580 +2001 94 12.38140 12.38140 +2001 95 13.65970 13.65970 +2001 96 13.76290 13.76290 +2001 97 11.73770 11.73770 +2001 98 11.70470 11.70470 +2001 99 12.76220 12.76220 +2001 100 14.13660 14.13660 +2001 101 13.96340 13.96340 +2001 102 16.78820 16.78820 +2001 103 11.77190 11.77190 +2001 104 11.66250 11.66250 +2001 105 12.04010 12.04010 +2001 106 11.97630 11.97630 +2001 107 12.55100 12.55100 +2001 108 13.25750 13.25750 +2001 109 13.99600 13.99600 +2001 110 13.83320 13.83320 +2001 111 12.73800 12.73800 +2001 112 11.36840 11.36840 +2001 113 11.11180 11.11180 +2001 114 9.67802 9.67802 +2001 115 9.76283 9.76283 +2001 116 9.21707 9.21707 +2001 117 10.95430 10.95430 +2001 118 12.70920 12.70920 +2001 119 12.99510 12.99510 +2001 120 13.49220 13.49220 +2001 121 12.84390 12.84390 +2001 122 15.52180 15.52180 +2001 123 14.42000 14.42000 +2001 124 14.45130 14.45130 +2001 125 14.79610 14.79610 +2001 126 13.63360 13.63360 +2001 127 13.20730 13.20730 +2001 128 11.64770 11.64770 +2001 129 12.01160 12.01160 +2001 130 14.58120 14.58120 +2001 131 14.41790 14.41790 +2001 132 13.96610 13.96610 +2001 133 12.36570 12.36570 +2001 134 10.74970 10.74970 +2001 135 7.74871 7.74871 +2001 136 7.83122 7.83122 +2001 137 10.93650 10.93650 +2001 138 11.80420 11.80420 +2001 139 10.49060 10.49060 +2001 140 11.84320 11.84320 +2001 141 9.22036 9.22036 +2001 142 7.81009 7.81009 +2001 143 10.76660 10.76660 +2001 144 11.23670 11.23670 +2001 145 8.62342 8.62342 +2001 146 8.43491 8.43491 +2001 147 6.52910 6.52910 +2001 148 5.28577 5.28577 +2001 149 5.12946 5.12946 +2001 150 6.22534 6.22534 +2001 151 5.56810 5.56810 +2001 152 5.44202 5.44202 +2001 153 6.00491 6.00491 +2001 154 5.52322 5.52322 +2001 155 5.70552 5.70552 +2001 156 6.01656 6.01656 +2001 157 7.10979 7.10979 +2001 158 8.21766 8.21766 +2001 159 8.08437 8.08437 +2001 160 10.82610 10.82610 +2001 161 5.02458 5.02458 +2001 162 4.31306 4.31306 +2001 163 5.18992 5.18992 +2001 164 8.14864 8.14864 +2001 165 11.82450 11.82450 +2001 166 12.85670 12.85670 +2001 167 11.31600 11.31600 +2001 168 8.36752 8.36752 +2001 169 5.65132 5.65132 +2001 170 5.47979 5.47979 +2001 171 5.76755 5.76755 +2001 172 8.41052 8.41052 +2001 173 9.99205 9.99205 +2001 174 8.47721 8.47721 +2001 175 6.65634 6.65634 +2001 176 8.59616 8.59616 +2001 177 8.88903 8.88903 +2001 178 8.03155 8.03155 +2001 179 7.27513 7.27513 +2001 180 6.66737 6.66737 +2001 181 4.23090 4.23090 +2001 182 4.65087 4.65087 +2001 183 4.28413 4.28413 +2001 184 3.65937 3.65937 +2001 185 6.13632 6.13632 +2001 186 7.84894 7.84894 +2001 187 7.59274 7.59274 +2001 188 7.64047 7.64047 +2001 189 6.22427 6.22427 +2001 190 4.58967 4.58967 +2001 191 3.56711 3.56711 +2001 192 3.74249 3.74249 +2001 193 3.99594 3.99594 +2001 194 4.85627 4.85627 +2001 195 5.49721 5.49721 +2001 196 8.30939 8.30939 +2001 197 8.59966 8.59966 +2001 198 7.85358 7.85358 +2001 199 6.16992 6.16992 +2001 200 5.30432 5.30432 +2001 201 5.62130 5.62130 +2001 202 6.66895 6.66895 +2001 203 6.83995 6.83995 +2001 204 5.35867 5.35867 +2001 205 5.18482 5.18482 +2001 206 5.29982 5.29982 +2001 207 7.21607 7.21607 +2001 208 6.21177 6.21177 +2001 209 8.43010 8.43010 +2001 210 9.24357 9.24357 +2001 211 7.38684 7.38684 +2001 212 7.35972 7.35972 +2001 213 7.40443 7.40443 +2001 214 7.95278 7.95278 +2001 215 6.56564 6.56564 +2001 216 7.49199 7.49199 +2001 217 7.73584 7.73584 +2001 218 7.57413 7.57413 +2001 219 10.02500 10.02500 +2001 220 10.97200 10.97200 +2001 221 10.06630 10.06630 +2001 222 9.00346 9.00346 +2001 223 7.62977 7.62977 +2001 224 5.83223 5.83223 +2001 225 6.36012 6.36012 +2001 226 5.34453 5.34453 +2001 227 6.04722 6.04722 +2001 228 6.24900 6.24900 +2001 229 6.58093 6.58093 +2001 230 8.45473 8.45473 +2001 231 7.83293 7.83293 +2001 232 9.45694 9.45694 +2001 233 9.71124 9.71124 +2001 234 9.73859 9.73859 +2001 235 9.09515 9.09515 +2001 236 8.54798 8.54798 +2001 237 7.42036 7.42036 +2001 238 7.15390 7.15390 +2001 239 6.81276 6.81276 +2001 240 7.39112 7.39112 +2001 241 8.26141 8.26141 +2001 242 7.59590 7.59590 +2001 243 7.17307 7.17307 +2001 244 7.88867 7.88867 +2001 245 7.93344 7.93344 +2001 246 8.37665 8.37665 +2001 247 10.64790 10.64790 +2001 248 11.14130 11.14130 +2001 249 9.77290 9.77290 +2001 250 9.80411 9.80411 +2001 251 7.99941 7.99941 +2001 252 7.25700 7.25700 +2001 253 7.24232 7.24232 +2001 254 7.86059 7.86059 +2001 255 8.26717 8.26717 +2001 256 9.04771 9.04771 +2001 257 10.33810 10.33810 +2001 258 11.90550 11.90550 +2001 259 10.25520 10.25520 +2001 260 10.79100 10.79100 +2001 261 9.82637 9.82637 +2001 262 10.15810 10.15810 +2001 263 10.56090 10.56090 +2001 264 10.65450 10.65450 +2001 265 9.21378 9.21378 +2001 266 9.31287 9.31287 +2001 267 8.08369 8.08369 +2001 268 9.39873 9.39873 +2001 269 10.40630 10.40630 +2001 270 10.78920 10.78920 +2001 271 11.18610 11.18610 +2001 272 11.19010 11.19010 +2001 273 12.00000 12.00000 +2001 274 12.37330 12.37330 +2001 275 11.52100 11.52100 +2001 276 11.61420 11.61420 +2001 277 12.84000 12.84000 +2001 278 13.28500 13.28500 +2001 279 12.81210 12.81210 +2001 280 11.56430 11.56430 +2001 281 10.91990 10.91990 +2001 282 11.42930 11.42930 +2001 283 11.33750 11.33750 +2001 284 10.88740 10.88740 +2001 285 10.55910 10.55910 +2001 286 12.11490 12.11490 +2001 287 13.13810 13.13810 +2001 288 13.02310 13.02310 +2001 289 12.50350 12.50350 +2001 290 11.90510 11.90510 +2001 291 12.59040 12.59040 +2001 292 14.32830 14.32830 +2001 293 12.98340 12.98340 +2001 294 12.57070 12.57070 +2001 295 12.37000 12.37000 +2001 296 9.81017 9.81017 +2001 297 9.00437 9.00437 +2001 298 11.90440 11.90440 +2001 299 14.16760 14.16760 +2001 300 12.42030 12.42030 +2001 301 12.28360 12.28360 +2001 302 13.53330 13.53330 +2001 303 14.38400 14.38400 +2001 304 13.00130 13.00130 +2001 305 11.97860 11.97860 +2001 306 10.38440 10.38440 +2001 307 10.03680 10.03680 +2001 308 10.22550 10.22550 +2001 309 11.04010 11.04010 +2001 310 12.64040 12.64040 +2001 311 13.29350 13.29350 +2001 312 12.89700 12.89700 +2001 313 13.69180 13.69180 +2001 314 14.35810 14.35810 +2001 315 13.76860 13.76860 +2001 316 13.08660 13.08660 +2001 317 14.28240 14.28240 +2001 318 13.09740 13.09740 +2001 319 12.18920 12.18920 +2001 320 12.33300 12.33300 +2001 321 11.95800 11.95800 +2001 322 12.91340 12.91340 +2001 323 15.33030 15.33030 +2001 324 14.84160 14.84160 +2001 325 14.95750 14.95750 +2001 326 14.86560 14.86560 +2001 327 12.15120 12.15120 +2001 328 11.86210 11.86210 +2001 329 11.67320 11.67320 +2001 330 12.05320 12.05320 +2001 331 13.66020 13.66020 +2001 332 15.28780 15.28780 +2001 333 15.93920 15.93920 +2001 334 15.77260 15.77260 +2001 335 15.73060 15.73060 +2001 336 15.99160 15.99160 +2001 337 16.11540 16.11540 +2001 338 16.42220 16.42220 +2001 339 16.42810 16.42810 +2001 340 16.19890 16.19890 +2001 341 15.82420 15.82420 +2001 342 17.50780 17.50780 +2001 343 14.89980 14.89980 +2001 344 15.00370 15.00370 +2001 345 15.19280 15.19280 +2001 346 13.81850 13.81850 +2001 347 14.44380 14.44380 +2001 348 14.68340 14.68340 +2001 349 16.53650 16.53650 +2001 350 16.33740 16.33740 +2001 351 15.34440 15.34440 +2001 352 15.52800 15.52800 +2001 353 16.36840 16.36840 +2001 354 15.97250 15.97250 +2001 355 15.88950 15.88950 +2001 356 15.78640 15.78640 +2001 357 15.79560 15.79560 +2001 358 16.14480 16.14480 +2001 359 16.16990 16.16990 +2001 360 16.19870 16.19870 +2001 361 14.53230 14.53230 +2001 362 13.24320 13.24320 +2001 363 13.83740 13.83740 +2001 364 15.89820 15.89820 +2001 365 17.95220 17.95220 +2002 1 18.05170 18.05170 +2002 2 17.81690 17.81690 +2002 3 16.57420 16.57420 +2002 4 14.46480 14.46480 +2002 5 13.45960 13.45960 +2002 6 13.66790 13.66790 +2002 7 14.26980 14.26980 +2002 8 14.36390 14.36390 +2002 9 17.09970 17.09970 +2002 10 15.61990 15.61990 +2002 11 15.49530 15.49530 +2002 12 16.41250 16.41250 +2002 13 16.28420 16.28420 +2002 14 16.55850 16.55850 +2002 15 16.80600 16.80600 +2002 16 16.48640 16.48640 +2002 17 16.89150 16.89150 +2002 18 17.05640 17.05640 +2002 19 14.26820 14.26820 +2002 20 15.19660 15.19660 +2002 21 16.46920 16.46920 +2002 22 17.10070 17.10070 +2002 23 17.57620 17.57620 +2002 24 17.25440 17.25440 +2002 25 17.28540 17.28540 +2002 26 16.75420 16.75420 +2002 27 17.03700 17.03700 +2002 28 17.12560 17.12560 +2002 29 17.18450 17.18450 +2002 30 17.81590 17.81590 +2002 31 18.18900 18.18900 +2002 32 14.73580 14.73580 +2002 33 16.86180 16.86180 +2002 34 17.02050 17.02050 +2002 35 15.65010 15.65010 +2002 36 14.41210 14.41210 +2002 37 14.18100 14.18100 +2002 38 14.19570 14.19570 +2002 39 15.22730 15.22730 +2002 40 16.30050 16.30050 +2002 41 18.06490 18.06490 +2002 42 18.70690 18.70690 +2002 43 17.09600 17.09600 +2002 44 13.86740 13.86740 +2002 45 13.74970 13.74970 +2002 46 14.13280 14.13280 +2002 47 14.69640 14.69640 +2002 48 15.92160 15.92160 +2002 49 15.87060 15.87060 +2002 50 16.03600 16.03600 +2002 51 14.42330 14.42330 +2002 52 15.83630 15.83630 +2002 53 16.30100 16.30100 +2002 54 15.34140 15.34140 +2002 55 15.42740 15.42740 +2002 56 15.91220 15.91220 +2002 57 16.07570 16.07570 +2002 58 16.35850 16.35850 +2002 59 16.60530 16.60530 +2002 60 16.09850 16.09850 +2002 61 16.63370 16.63370 +2002 62 15.67260 15.67260 +2002 63 15.02880 15.02880 +2002 64 14.51120 14.51120 +2002 65 14.54100 14.54100 +2002 66 15.67350 15.67350 +2002 67 15.75430 15.75430 +2002 68 15.41480 15.41480 +2002 69 15.64500 15.64500 +2002 70 14.94900 14.94900 +2002 71 14.37300 14.37300 +2002 72 15.99410 15.99410 +2002 73 15.98750 15.98750 +2002 74 14.78930 14.78930 +2002 75 14.53840 14.53840 +2002 76 14.49930 14.49930 +2002 77 13.27740 13.27740 +2002 78 16.17690 16.17690 +2002 79 17.19300 17.19300 +2002 80 16.70540 16.70540 +2002 81 16.24250 16.24250 +2002 82 15.96990 15.96990 +2002 83 17.31230 17.31230 +2002 84 16.35240 16.35240 +2002 85 14.74010 14.74010 +2002 86 15.45850 15.45850 +2002 87 16.47970 16.47970 +2002 88 16.59540 16.59540 +2002 89 14.18310 14.18310 +2002 90 9.51154 9.51154 +2002 91 9.19109 9.19109 +2002 92 9.43824 9.43824 +2002 93 12.47120 12.47120 +2002 94 13.04200 13.04200 +2002 95 12.48560 12.48560 +2002 96 11.93880 11.93880 +2002 97 11.00460 11.00460 +2002 98 11.49490 11.49490 +2002 99 11.64590 11.64590 +2002 100 12.32260 12.32260 +2002 101 12.65260 12.65260 +2002 102 13.18080 13.18080 +2002 103 13.13380 13.13380 +2002 104 11.77080 11.77080 +2002 105 12.66570 12.66570 +2002 106 12.40690 12.40690 +2002 107 11.74410 11.74410 +2002 108 12.33290 12.33290 +2002 109 11.72750 11.72750 +2002 110 12.56790 12.56790 +2002 111 12.54070 12.54070 +2002 112 13.27380 13.27380 +2002 113 12.90140 12.90140 +2002 114 14.76240 14.76240 +2002 115 15.81740 15.81740 +2002 116 15.86170 15.86170 +2002 117 15.09160 15.09160 +2002 118 11.23060 11.23060 +2002 119 9.23093 9.23093 +2002 120 10.34810 10.34810 +2002 121 10.94080 10.94080 +2002 122 12.24670 12.24670 +2002 123 13.94700 13.94700 +2002 124 13.23190 13.23190 +2002 125 10.94780 10.94780 +2002 126 12.06250 12.06250 +2002 127 12.19620 12.19620 +2002 128 10.87250 10.87250 +2002 129 11.08030 11.08030 +2002 130 11.67730 11.67730 +2002 131 11.40800 11.40800 +2002 132 11.89540 11.89540 +2002 133 10.38850 10.38850 +2002 134 10.80550 10.80550 +2002 135 9.80397 9.80397 +2002 136 9.33329 9.33329 +2002 137 9.16082 9.16082 +2002 138 9.59567 9.59567 +2002 139 11.21670 11.21670 +2002 140 13.12450 13.12450 +2002 141 12.06640 12.06640 +2002 142 11.91090 11.91090 +2002 143 8.62127 8.62127 +2002 144 8.19753 8.19753 +2002 145 9.37796 9.37796 +2002 146 9.06126 9.06126 +2002 147 7.99181 7.99181 +2002 148 7.13429 7.13429 +2002 149 7.99251 7.99251 +2002 150 8.06888 8.06888 +2002 151 6.52735 6.52735 +2002 152 7.21467 7.21467 +2002 153 10.04780 10.04780 +2002 154 9.99436 9.99436 +2002 155 10.48830 10.48830 +2002 156 9.60846 9.60846 +2002 157 7.99246 7.99246 +2002 158 11.11140 11.11140 +2002 159 11.31250 11.31250 +2002 160 11.37870 11.37870 +2002 161 11.62800 11.62800 +2002 162 11.52130 11.52130 +2002 163 11.50670 11.50670 +2002 164 12.26980 12.26980 +2002 165 10.61790 10.61790 +2002 166 9.05428 9.05428 +2002 167 9.67493 9.67493 +2002 168 12.89020 12.89020 +2002 169 10.93100 10.93100 +2002 170 7.55213 7.55213 +2002 171 12.14130 12.14130 +2002 172 9.92812 9.92812 +2002 173 9.49155 9.49155 +2002 174 8.10209 8.10209 +2002 175 8.76974 8.76974 +2002 176 9.60082 9.60082 +2002 177 9.15484 9.15484 +2002 178 10.72480 10.72480 +2002 179 11.80250 11.80250 +2002 180 10.50290 10.50290 +2002 181 8.18418 8.18418 +2002 182 6.96234 6.96234 +2002 183 7.48423 7.48423 +2002 184 8.00673 8.00673 +2002 185 9.34556 9.34556 +2002 186 9.31254 9.31254 +2002 187 9.80691 9.80691 +2002 188 7.76978 7.76978 +2002 189 8.54852 8.54852 +2002 190 9.35318 9.35318 +2002 191 8.52375 8.52375 +2002 192 8.78767 8.78767 +2002 193 7.43150 7.43150 +2002 194 4.98366 4.98366 +2002 195 6.43577 6.43577 +2002 196 6.77054 6.77054 +2002 197 5.16359 5.16359 +2002 198 4.65630 4.65630 +2002 199 5.54710 5.54710 +2002 200 9.21335 9.21335 +2002 201 9.03974 9.03974 +2002 202 9.69430 9.69430 +2002 203 10.32820 10.32820 +2002 204 11.11980 11.11980 +2002 205 8.95061 8.95061 +2002 206 8.08266 8.08266 +2002 207 7.13728 7.13728 +2002 208 7.17607 7.17607 +2002 209 7.34109 7.34109 +2002 210 7.70033 7.70033 +2002 211 7.76008 7.76008 +2002 212 6.71912 6.71912 +2002 213 7.17345 7.17345 +2002 214 7.18110 7.18110 +2002 215 10.73880 10.73880 +2002 216 8.45288 8.45288 +2002 217 9.41953 9.41953 +2002 218 11.25320 11.25320 +2002 219 8.73971 8.73971 +2002 220 6.61217 6.61217 +2002 221 6.66026 6.66026 +2002 222 9.67424 9.67424 +2002 223 10.81750 10.81750 +2002 224 10.90980 10.90980 +2002 225 9.22507 9.22507 +2002 226 8.28813 8.28813 +2002 227 7.60156 7.60156 +2002 228 7.34359 7.34359 +2002 229 7.14988 7.14988 +2002 230 6.10849 6.10849 +2002 231 7.31028 7.31028 +2002 232 7.72914 7.72914 +2002 233 7.71623 7.71623 +2002 234 6.87460 6.87460 +2002 235 8.57860 8.57860 +2002 236 8.39127 8.39127 +2002 237 6.67141 6.67141 +2002 238 5.24014 5.24014 +2002 239 5.65178 5.65178 +2002 240 6.18244 6.18244 +2002 241 6.90411 6.90411 +2002 242 7.23294 7.23294 +2002 243 6.90839 6.90839 +2002 244 8.53674 8.53674 +2002 245 8.96158 8.96158 +2002 246 9.85542 9.85542 +2002 247 11.26500 11.26500 +2002 248 12.01110 12.01110 +2002 249 9.39339 9.39339 +2002 250 10.76450 10.76450 +2002 251 11.38630 11.38630 +2002 252 10.70830 10.70830 +2002 253 11.14590 11.14590 +2002 254 9.09693 9.09693 +2002 255 7.71574 7.71574 +2002 256 7.29637 7.29637 +2002 257 7.60305 7.60305 +2002 258 9.78406 9.78406 +2002 259 10.15890 10.15890 +2002 260 9.40668 9.40668 +2002 261 10.81750 10.81750 +2002 262 7.89890 7.89890 +2002 263 7.26078 7.26078 +2002 264 8.89213 8.89213 +2002 265 11.33390 11.33390 +2002 266 11.05600 11.05600 +2002 267 8.33210 8.33210 +2002 268 7.32504 7.32504 +2002 269 11.19420 11.19420 +2002 270 10.58410 10.58410 +2002 271 11.52090 11.52090 +2002 272 10.95370 10.95370 +2002 273 10.17740 10.17740 +2002 274 10.22480 10.22480 +2002 275 10.39620 10.39620 +2002 276 8.16161 8.16161 +2002 277 7.59894 7.59894 +2002 278 8.47527 8.47527 +2002 279 7.04421 7.04421 +2002 280 7.82016 7.82016 +2002 281 9.23911 9.23911 +2002 282 9.98415 9.98415 +2002 283 10.28210 10.28210 +2002 284 10.46720 10.46720 +2002 285 8.81384 8.81384 +2002 286 6.98275 6.98275 +2002 287 7.56199 7.56199 +2002 288 9.51442 9.51442 +2002 289 11.66320 11.66320 +2002 290 13.06730 13.06730 +2002 291 10.78350 10.78350 +2002 292 10.75350 10.75350 +2002 293 11.25520 11.25520 +2002 294 10.75960 10.75960 +2002 295 10.83870 10.83870 +2002 296 11.13900 11.13900 +2002 297 11.94750 11.94750 +2002 298 10.55160 10.55160 +2002 299 12.24170 12.24170 +2002 300 9.11134 9.11134 +2002 301 8.69239 8.69239 +2002 302 10.02410 10.02410 +2002 303 10.33150 10.33150 +2002 304 11.53030 11.53030 +2002 305 11.39880 11.39880 +2002 306 9.51145 9.51145 +2002 307 10.54300 10.54300 +2002 308 12.03960 12.03960 +2002 309 11.23900 11.23900 +2002 310 10.64970 10.64970 +2002 311 11.17220 11.17220 +2002 312 11.75830 11.75830 +2002 313 13.08120 13.08120 +2002 314 11.64400 11.64400 +2002 315 9.06167 9.06167 +2002 316 9.28551 9.28551 +2002 317 11.41060 11.41060 +2002 318 12.74270 12.74270 +2002 319 12.50160 12.50160 +2002 320 8.55400 8.55400 +2002 321 8.18832 8.18832 +2002 322 7.64211 7.64211 +2002 323 10.74080 10.74080 +2002 324 14.11850 14.11850 +2002 325 13.31790 13.31790 +2002 326 12.12540 12.12540 +2002 327 11.96060 11.96060 +2002 328 12.78980 12.78980 +2002 329 13.24490 13.24490 +2002 330 12.87740 12.87740 +2002 331 15.61030 15.61030 +2002 332 16.10850 16.10850 +2002 333 14.93970 14.93970 +2002 334 16.46150 16.46150 +2002 335 16.67490 16.67490 +2002 336 16.67160 16.67160 +2002 337 16.51820 16.51820 +2002 338 16.65160 16.65160 +2002 339 15.90690 15.90690 +2002 340 15.98350 15.98350 +2002 341 13.63480 13.63480 +2002 342 13.03730 13.03730 +2002 343 14.37950 14.37950 +2002 344 14.62490 14.62490 +2002 345 14.50880 14.50880 +2002 346 14.78610 14.78610 +2002 347 14.15240 14.15240 +2002 348 12.89000 12.89000 +2002 349 13.25240 13.25240 +2002 350 13.59960 13.59960 +2002 351 13.09990 13.09990 +2002 352 14.59940 14.59940 +2002 353 14.81710 14.81710 +2002 354 15.83920 15.83920 +2002 355 15.25510 15.25510 +2002 356 14.48260 14.48260 +2002 357 16.31560 16.31560 +2002 358 16.51610 16.51610 +2002 359 15.81750 15.81750 +2002 360 13.38300 13.38300 +2002 361 13.85670 13.85670 +2002 362 15.05420 15.05420 +2002 363 13.86560 13.86560 +2002 364 15.70540 15.70540 +2002 365 17.07830 17.07830 +2003 1 17.19330 17.19330 +2003 2 17.29360 17.29360 +2003 3 17.26340 17.26340 +2003 4 17.23710 17.23710 +2003 5 17.00290 17.00290 +2003 6 18.10060 18.10060 +2003 7 15.43160 15.43160 +2003 8 14.96140 14.96140 +2003 9 15.18130 15.18130 +2003 10 16.07140 16.07140 +2003 11 16.71990 16.71990 +2003 12 14.08980 14.08980 +2003 13 12.10670 12.10670 +2003 14 12.50730 12.50730 +2003 15 15.24190 15.24190 +2003 16 16.03200 16.03200 +2003 17 16.68730 16.68730 +2003 18 16.26800 16.26800 +2003 19 16.34020 16.34020 +2003 20 17.71840 17.71840 +2003 21 16.76050 16.76050 +2003 22 16.19060 16.19060 +2003 23 14.36960 14.36960 +2003 24 13.48530 13.48530 +2003 25 13.16000 13.16000 +2003 26 15.73480 15.73480 +2003 27 15.22700 15.22700 +2003 28 15.48520 15.48520 +2003 29 15.94090 15.94090 +2003 30 17.04590 17.04590 +2003 31 17.80220 17.80220 +2003 32 17.33200 17.33200 +2003 33 17.77410 17.77410 +2003 34 17.47250 17.47250 +2003 35 16.11750 16.11750 +2003 36 16.38810 16.38810 +2003 37 17.43580 17.43580 +2003 38 17.06160 17.06160 +2003 39 17.15720 17.15720 +2003 40 18.07990 18.07990 +2003 41 18.10940 18.10940 +2003 42 18.76450 18.76450 +2003 43 17.46190 17.46190 +2003 44 17.78740 17.78740 +2003 45 16.98300 16.98300 +2003 46 16.54820 16.54820 +2003 47 17.10190 17.10190 +2003 48 17.45810 17.45810 +2003 49 16.29870 16.29870 +2003 50 15.47190 15.47190 +2003 51 13.91310 13.91310 +2003 52 12.58960 12.58960 +2003 53 12.91440 12.91440 +2003 54 15.16410 15.16410 +2003 55 15.63980 15.63980 +2003 56 15.54920 15.54920 +2003 57 15.54550 15.54550 +2003 58 17.57150 17.57150 +2003 59 18.34120 18.34120 +2003 60 18.14810 18.14810 +2003 61 17.02310 17.02310 +2003 62 14.69070 14.69070 +2003 63 14.61010 14.61010 +2003 64 16.28660 16.28660 +2003 65 16.10660 16.10660 +2003 66 15.46410 15.46410 +2003 67 16.18710 16.18710 +2003 68 15.84750 15.84750 +2003 69 13.59320 13.59320 +2003 70 15.42470 15.42470 +2003 71 14.36060 14.36060 +2003 72 14.23660 14.23660 +2003 73 14.64340 14.64340 +2003 74 14.99300 14.99300 +2003 75 15.89680 15.89680 +2003 76 15.33690 15.33690 +2003 77 14.14540 14.14540 +2003 78 14.28100 14.28100 +2003 79 14.28700 14.28700 +2003 80 15.12180 15.12180 +2003 81 15.14680 15.14680 +2003 82 14.97640 14.97640 +2003 83 15.35810 15.35810 +2003 84 15.11910 15.11910 +2003 85 15.29990 15.29990 +2003 86 15.26740 15.26740 +2003 87 17.29350 17.29350 +2003 88 17.12080 17.12080 +2003 89 15.98510 15.98510 +2003 90 15.68180 15.68180 +2003 91 15.84580 15.84580 +2003 92 15.30410 15.30410 +2003 93 14.99420 14.99420 +2003 94 15.29280 15.29280 +2003 95 16.17010 16.17010 +2003 96 15.01980 15.01980 +2003 97 12.27050 12.27050 +2003 98 12.69180 12.69180 +2003 99 12.48100 12.48100 +2003 100 12.24770 12.24770 +2003 101 11.81160 11.81160 +2003 102 11.54440 11.54440 +2003 103 12.47660 12.47660 +2003 104 14.37280 14.37280 +2003 105 15.31860 15.31860 +2003 106 15.26160 15.26160 +2003 107 13.87310 13.87310 +2003 108 12.46370 12.46370 +2003 109 12.57520 12.57520 +2003 110 12.66320 12.66320 +2003 111 12.88480 12.88480 +2003 112 11.63930 11.63930 +2003 113 12.19690 12.19690 +2003 114 9.97728 9.97728 +2003 115 9.46064 9.46064 +2003 116 11.46070 11.46070 +2003 117 10.45670 10.45670 +2003 118 10.70690 10.70690 +2003 119 11.33630 11.33630 +2003 120 11.93470 11.93470 +2003 121 14.17670 14.17670 +2003 122 13.87520 13.87520 +2003 123 11.21910 11.21910 +2003 124 11.03190 11.03190 +2003 125 11.25770 11.25770 +2003 126 10.64680 10.64680 +2003 127 10.22340 10.22340 +2003 128 9.42921 9.42921 +2003 129 10.07800 10.07800 +2003 130 11.29020 11.29020 +2003 131 11.46640 11.46640 +2003 132 10.16820 10.16820 +2003 133 9.76062 9.76062 +2003 134 9.93232 9.93232 +2003 135 8.70527 8.70527 +2003 136 9.45550 9.45550 +2003 137 8.66335 8.66335 +2003 138 12.66090 12.66090 +2003 139 14.91820 14.91820 +2003 140 15.58020 15.58020 +2003 141 14.38140 14.38140 +2003 142 11.70040 11.70040 +2003 143 10.17370 10.17370 +2003 144 10.48730 10.48730 +2003 145 9.94176 9.94176 +2003 146 8.68109 8.68109 +2003 147 7.41306 7.41306 +2003 148 7.54284 7.54284 +2003 149 11.14620 11.14620 +2003 150 12.37760 12.37760 +2003 151 11.01310 11.01310 +2003 152 11.62640 11.62640 +2003 153 11.77600 11.77600 +2003 154 11.72630 11.72630 +2003 155 12.77330 12.77330 +2003 156 13.42700 13.42700 +2003 157 11.95250 11.95250 +2003 158 11.22460 11.22460 +2003 159 11.22380 11.22380 +2003 160 9.34166 9.34166 +2003 161 7.62754 7.62754 +2003 162 8.49732 8.49732 +2003 163 7.99441 7.99441 +2003 164 6.56668 6.56668 +2003 165 9.90067 9.90067 +2003 166 9.81111 9.81111 +2003 167 9.08028 9.08028 +2003 168 9.71946 9.71946 +2003 169 9.47997 9.47997 +2003 170 10.40130 10.40130 +2003 171 9.92820 9.92820 +2003 172 8.70740 8.70740 +2003 173 10.80460 10.80460 +2003 174 10.14590 10.14590 +2003 175 7.90276 7.90276 +2003 176 6.06082 6.06082 +2003 177 5.47329 5.47329 +2003 178 9.12843 9.12843 +2003 179 11.60740 11.60740 +2003 180 12.60210 12.60210 +2003 181 10.28800 10.28800 +2003 182 7.38695 7.38695 +2003 183 8.19892 8.19892 +2003 184 7.03257 7.03257 +2003 185 5.06042 5.06042 +2003 186 3.95716 3.95716 +2003 187 4.69764 4.69764 +2003 188 7.62399 7.62399 +2003 189 6.67685 6.67685 +2003 190 7.73404 7.73404 +2003 191 7.36351 7.36351 +2003 192 5.83691 5.83691 +2003 193 5.80148 5.80148 +2003 194 5.15872 5.15872 +2003 195 7.21429 7.21429 +2003 196 6.96721 6.96721 +2003 197 9.31730 9.31730 +2003 198 5.50407 5.50407 +2003 199 5.51036 5.51036 +2003 200 4.88586 4.88586 +2003 201 5.17142 5.17142 +2003 202 4.26614 4.26614 +2003 203 5.48401 5.48401 +2003 204 5.56986 5.56986 +2003 205 4.82643 4.82643 +2003 206 5.97405 5.97405 +2003 207 6.65732 6.65732 +2003 208 8.27697 8.27697 +2003 209 8.21182 8.21182 +2003 210 7.60210 7.60210 +2003 211 7.08598 7.08598 +2003 212 8.10045 8.10045 +2003 213 9.05236 9.05236 +2003 214 8.80509 8.80509 +2003 215 6.84489 6.84489 +2003 216 6.56907 6.56907 +2003 217 6.26188 6.26188 +2003 218 6.47017 6.47017 +2003 219 6.98436 6.98436 +2003 220 6.81287 6.81287 +2003 221 7.36062 7.36062 +2003 222 8.91601 8.91601 +2003 223 9.49683 9.49683 +2003 224 8.69075 8.69075 +2003 225 7.45468 7.45468 +2003 226 7.58899 7.58899 +2003 227 7.43625 7.43625 +2003 228 7.47468 7.47468 +2003 229 7.42433 7.42433 +2003 230 6.58189 6.58189 +2003 231 7.43839 7.43839 +2003 232 9.08622 9.08622 +2003 233 9.16663 9.16663 +2003 234 9.74697 9.74697 +2003 235 9.69217 9.69217 +2003 236 8.88505 8.88505 +2003 237 8.14663 8.14663 +2003 238 8.48774 8.48774 +2003 239 8.28285 8.28285 +2003 240 7.57390 7.57390 +2003 241 7.77588 7.77588 +2003 242 6.97453 6.97453 +2003 243 7.77792 7.77792 +2003 244 8.65640 8.65640 +2003 245 8.47850 8.47850 +2003 246 9.24591 9.24591 +2003 247 8.09571 8.09571 +2003 248 9.08390 9.08390 +2003 249 8.66984 8.66984 +2003 250 7.44417 7.44417 +2003 251 7.85392 7.85392 +2003 252 8.60136 8.60136 +2003 253 7.44809 7.44809 +2003 254 7.30816 7.30816 +2003 255 8.64360 8.64360 +2003 256 10.74050 10.74050 +2003 257 10.05560 10.05560 +2003 258 11.82490 11.82490 +2003 259 9.36839 9.36839 +2003 260 11.10710 11.10710 +2003 261 11.41460 11.41460 +2003 262 10.47670 10.47670 +2003 263 11.09400 11.09400 +2003 264 9.65093 9.65093 +2003 265 9.88335 9.88335 +2003 266 12.66960 12.66960 +2003 267 12.46960 12.46960 +2003 268 12.04340 12.04340 +2003 269 14.28830 14.28830 +2003 270 13.22360 13.22360 +2003 271 8.82059 8.82059 +2003 272 9.24435 9.24435 +2003 273 7.61055 7.61055 +2003 274 9.57747 9.57747 +2003 275 10.27910 10.27910 +2003 276 10.62450 10.62450 +2003 277 7.16641 7.16641 +2003 278 6.32533 6.32533 +2003 279 8.34899 8.34899 +2003 280 9.09889 9.09889 +2003 281 9.60655 9.60655 +2003 282 11.68590 11.68590 +2003 283 11.67800 11.67800 +2003 284 11.96350 11.96350 +2003 285 10.23420 10.23420 +2003 286 8.61463 8.61463 +2003 287 9.25511 9.25511 +2003 288 10.41070 10.41070 +2003 289 11.57860 11.57860 +2003 290 12.43540 12.43540 +2003 291 12.77190 12.77190 +2003 292 12.15250 12.15250 +2003 293 12.10470 12.10470 +2003 294 12.43440 12.43440 +2003 295 13.49930 13.49930 +2003 296 13.88710 13.88710 +2003 297 10.73330 10.73330 +2003 298 8.74390 8.74390 +2003 299 9.19308 9.19308 +2003 300 11.63540 11.63540 +2003 301 12.01440 12.01440 +2003 302 10.90820 10.90820 +2003 303 12.17340 12.17340 +2003 304 12.43270 12.43270 +2003 305 11.95840 11.95840 +2003 306 9.68207 9.68207 +2003 307 9.88544 9.88544 +2003 308 10.43850 10.43850 +2003 309 11.24950 11.24950 +2003 310 11.39580 11.39580 +2003 311 11.93420 11.93420 +2003 312 11.93710 11.93710 +2003 313 12.61620 12.61620 +2003 314 11.74160 11.74160 +2003 315 13.91030 13.91030 +2003 316 11.62450 11.62450 +2003 317 9.45910 9.45910 +2003 318 10.23620 10.23620 +2003 319 13.69480 13.69480 +2003 320 14.14780 14.14780 +2003 321 10.58830 10.58830 +2003 322 12.13580 12.13580 +2003 323 12.60620 12.60620 +2003 324 13.86720 13.86720 +2003 325 14.85420 14.85420 +2003 326 14.72700 14.72700 +2003 327 14.57710 14.57710 +2003 328 11.96010 11.96010 +2003 329 13.54070 13.54070 +2003 330 13.69130 13.69130 +2003 331 10.83110 10.83110 +2003 332 11.37960 11.37960 +2003 333 12.10950 12.10950 +2003 334 13.82610 13.82610 +2003 335 13.70740 13.70740 +2003 336 14.29770 14.29770 +2003 337 15.86480 15.86480 +2003 338 15.36460 15.36460 +2003 339 15.74150 15.74150 +2003 340 16.24540 16.24540 +2003 341 14.65220 14.65220 +2003 342 15.72070 15.72070 +2003 343 15.82970 15.82970 +2003 344 18.62480 18.62480 +2003 345 18.80390 18.80390 +2003 346 18.49160 18.49160 +2003 347 18.43840 18.43840 +2003 348 16.00260 16.00260 +2003 349 14.08550 14.08550 +2003 350 13.09030 13.09030 +2003 351 14.42290 14.42290 +2003 352 16.24050 16.24050 +2003 353 15.88160 15.88160 +2003 354 14.96620 14.96620 +2003 355 17.16040 17.16040 +2003 356 15.68870 15.68870 +2003 357 16.17410 16.17410 +2003 358 13.57420 13.57420 +2003 359 15.23100 15.23100 +2003 360 18.28040 18.28040 +2003 361 17.01840 17.01840 +2003 362 14.77710 14.77710 +2003 363 12.85880 12.85880 +2003 364 15.05330 15.05330 +2003 365 17.37860 17.37860 +2004 1 18.83770 18.83770 +2004 2 19.21270 19.21270 +2004 3 19.55160 19.55160 +2004 4 18.55130 18.55130 +2004 5 16.85980 16.85980 +2004 6 17.03220 17.03220 +2004 7 19.26050 19.26050 +2004 8 19.18140 19.18140 +2004 9 17.83990 17.83990 +2004 10 18.97210 18.97210 +2004 11 20.15120 20.15120 +2004 12 19.57680 19.57680 +2004 13 18.19220 18.19220 +2004 14 18.40730 18.40730 +2004 15 19.09050 19.09050 +2004 16 18.29470 18.29470 +2004 17 16.81340 16.81340 +2004 18 16.53270 16.53270 +2004 19 12.19510 12.19510 +2004 20 13.46540 13.46540 +2004 21 16.36420 16.36420 +2004 22 15.71070 15.71070 +2004 23 18.21300 18.21300 +2004 24 17.28760 17.28760 +2004 25 17.94460 17.94460 +2004 26 18.38820 18.38820 +2004 27 17.51570 17.51570 +2004 28 18.00620 18.00620 +2004 29 17.38500 17.38500 +2004 30 18.67460 18.67460 +2004 31 18.60660 18.60660 +2004 32 17.31360 17.31360 +2004 33 18.34780 18.34780 +2004 34 16.35310 16.35310 +2004 35 17.15720 17.15720 +2004 36 15.83720 15.83720 +2004 37 16.22920 16.22920 +2004 38 15.23270 15.23270 +2004 39 14.89180 14.89180 +2004 40 17.63950 17.63950 +2004 41 18.51470 18.51470 +2004 42 16.83170 16.83170 +2004 43 15.26350 15.26350 +2004 44 17.31480 17.31480 +2004 45 13.83640 13.83640 +2004 46 12.83980 12.83980 +2004 47 13.82670 13.82670 +2004 48 13.67610 13.67610 +2004 49 15.73260 15.73260 +2004 50 12.81820 12.81820 +2004 51 14.65300 14.65300 +2004 52 15.96030 15.96030 +2004 53 15.11950 15.11950 +2004 54 15.94860 15.94860 +2004 55 12.82280 12.82280 +2004 56 12.88090 12.88090 +2004 57 13.50020 13.50020 +2004 58 15.17040 15.17040 +2004 59 16.78210 16.78210 +2004 60 14.83240 14.83240 +2004 61 14.89360 14.89360 +2004 62 13.20650 13.20650 +2004 63 11.74100 11.74100 +2004 64 13.06560 13.06560 +2004 65 13.64350 13.64350 +2004 66 15.47300 15.47300 +2004 67 15.68190 15.68190 +2004 68 15.65360 15.65360 +2004 69 16.63960 16.63960 +2004 70 15.03460 15.03460 +2004 71 14.26880 14.26880 +2004 72 14.16930 14.16930 +2004 73 12.97800 12.97800 +2004 74 13.57550 13.57550 +2004 75 14.56450 14.56450 +2004 76 14.56530 14.56530 +2004 77 15.01430 15.01430 +2004 78 13.21660 13.21660 +2004 79 14.01640 14.01640 +2004 80 14.56330 14.56330 +2004 81 15.01340 15.01340 +2004 82 13.51530 13.51530 +2004 83 13.61850 13.61850 +2004 84 12.60780 12.60780 +2004 85 13.40060 13.40060 +2004 86 12.27120 12.27120 +2004 87 11.84740 11.84740 +2004 88 10.55260 10.55260 +2004 89 11.67040 11.67040 +2004 90 12.34800 12.34800 +2004 91 12.31890 12.31890 +2004 92 13.47900 13.47900 +2004 93 14.70590 14.70590 +2004 94 12.53570 12.53570 +2004 95 11.91940 11.91940 +2004 96 9.21966 9.21966 +2004 97 7.56090 7.56090 +2004 98 9.21010 9.21010 +2004 99 11.62700 11.62700 +2004 100 10.04290 10.04290 +2004 101 10.10110 10.10110 +2004 102 10.76660 10.76660 +2004 103 10.37770 10.37770 +2004 104 10.39050 10.39050 +2004 105 11.19000 11.19000 +2004 106 11.93230 11.93230 +2004 107 13.42160 13.42160 +2004 108 13.53850 13.53850 +2004 109 14.04600 14.04600 +2004 110 12.21460 12.21460 +2004 111 11.99910 11.99910 +2004 112 12.81420 12.81420 +2004 113 12.26040 12.26040 +2004 114 12.08890 12.08890 +2004 115 11.27070 11.27070 +2004 116 11.37790 11.37790 +2004 117 12.30110 12.30110 +2004 118 12.31450 12.31450 +2004 119 12.17980 12.17980 +2004 120 13.43400 13.43400 +2004 121 13.71820 13.71820 +2004 122 16.41690 16.41690 +2004 123 15.70580 15.70580 +2004 124 11.16500 11.16500 +2004 125 12.39110 12.39110 +2004 126 11.23750 11.23750 +2004 127 11.87400 11.87400 +2004 128 12.32070 12.32070 +2004 129 11.60370 11.60370 +2004 130 12.02230 12.02230 +2004 131 13.08850 13.08850 +2004 132 14.77160 14.77160 +2004 133 13.75140 13.75140 +2004 134 11.08710 11.08710 +2004 135 10.29070 10.29070 +2004 136 8.62769 8.62769 +2004 137 8.56622 8.56622 +2004 138 9.02333 9.02333 +2004 139 9.90938 9.90938 +2004 140 10.13410 10.13410 +2004 141 9.22234 9.22234 +2004 142 7.86881 7.86881 +2004 143 10.02690 10.02690 +2004 144 8.44581 8.44581 +2004 145 7.82344 7.82344 +2004 146 9.05719 9.05719 +2004 147 9.93056 9.93056 +2004 148 11.63320 11.63320 +2004 149 11.00300 11.00300 +2004 150 9.44282 9.44282 +2004 151 8.43206 8.43206 +2004 152 9.32293 9.32293 +2004 153 10.93140 10.93140 +2004 154 11.66760 11.66760 +2004 155 11.70810 11.70810 +2004 156 10.04870 10.04870 +2004 157 7.23001 7.23001 +2004 158 7.56598 7.56598 +2004 159 6.22967 6.22967 +2004 160 5.18628 5.18628 +2004 161 5.05848 5.05848 +2004 162 5.11714 5.11714 +2004 163 6.55123 6.55123 +2004 164 6.35959 6.35959 +2004 165 7.15608 7.15608 +2004 166 8.34214 8.34214 +2004 167 9.51296 9.51296 +2004 168 10.83990 10.83990 +2004 169 12.28790 12.28790 +2004 170 10.67380 10.67380 +2004 171 12.07730 12.07730 +2004 172 10.91100 10.91100 +2004 173 6.62738 6.62738 +2004 174 5.57845 5.57845 +2004 175 6.01439 6.01439 +2004 176 8.62639 8.62639 +2004 177 8.54054 8.54054 +2004 178 9.15551 9.15551 +2004 179 9.88839 9.88839 +2004 180 7.71627 7.71627 +2004 181 8.75819 8.75819 +2004 182 8.70967 8.70967 +2004 183 8.70753 8.70753 +2004 184 7.33031 7.33031 +2004 185 5.70783 5.70783 +2004 186 5.62751 5.62751 +2004 187 8.30442 8.30442 +2004 188 7.38299 7.38299 +2004 189 7.31127 7.31127 +2004 190 4.70590 4.70590 +2004 191 6.52980 6.52980 +2004 192 6.46078 6.46078 +2004 193 4.57685 4.57685 +2004 194 5.09789 5.09789 +2004 195 5.43984 5.43984 +2004 196 8.81379 8.81379 +2004 197 8.28088 8.28088 +2004 198 9.14816 9.14816 +2004 199 7.92357 7.92357 +2004 200 6.66172 6.66172 +2004 201 5.94123 5.94123 +2004 202 7.75095 7.75095 +2004 203 5.95919 5.95919 +2004 204 4.65345 4.65345 +2004 205 4.67175 4.67175 +2004 206 5.73862 5.73862 +2004 207 4.85082 4.85082 +2004 208 8.61128 8.61128 +2004 209 8.97827 8.97827 +2004 210 10.21370 10.21370 +2004 211 7.63747 7.63747 +2004 212 5.76475 5.76475 +2004 213 5.90809 5.90809 +2004 214 5.36020 5.36020 +2004 215 4.57534 4.57534 +2004 216 4.77267 4.77267 +2004 217 9.27466 9.27466 +2004 218 8.86686 8.86686 +2004 219 7.64170 7.64170 +2004 220 7.38024 7.38024 +2004 221 7.07425 7.07425 +2004 222 6.93630 6.93630 +2004 223 6.85291 6.85291 +2004 224 8.36828 8.36828 +2004 225 8.87942 8.87942 +2004 226 8.96923 8.96923 +2004 227 9.60757 9.60757 +2004 228 6.09199 6.09199 +2004 229 4.21435 4.21435 +2004 230 6.32298 6.32298 +2004 231 8.77382 8.77382 +2004 232 6.96799 6.96799 +2004 233 6.78159 6.78159 +2004 234 7.56566 7.56566 +2004 235 7.69070 7.69070 +2004 236 4.86348 4.86348 +2004 237 4.68853 4.68853 +2004 238 4.37488 4.37488 +2004 239 4.07538 4.07538 +2004 240 3.70496 3.70496 +2004 241 3.34834 3.34834 +2004 242 4.38186 4.38186 +2004 243 5.36941 5.36941 +2004 244 7.02684 7.02684 +2004 245 7.91386 7.91386 +2004 246 6.76661 6.76661 +2004 247 5.10338 5.10338 +2004 248 7.33507 7.33507 +2004 249 7.33839 7.33839 +2004 250 6.59205 6.59205 +2004 251 7.47285 7.47285 +2004 252 7.62252 7.62252 +2004 253 7.80795 7.80795 +2004 254 9.79317 9.79317 +2004 255 10.89830 10.89830 +2004 256 10.43610 10.43610 +2004 257 7.94668 7.94668 +2004 258 7.54930 7.54930 +2004 259 8.32753 8.32753 +2004 260 7.25465 7.25465 +2004 261 7.82066 7.82066 +2004 262 7.39764 7.39764 +2004 263 7.19353 7.19353 +2004 264 9.15102 9.15102 +2004 265 8.58821 8.58821 +2004 266 9.86007 9.86007 +2004 267 11.81000 11.81000 +2004 268 8.08965 8.08965 +2004 269 9.00803 9.00803 +2004 270 8.52552 8.52552 +2004 271 9.26754 9.26754 +2004 272 7.91944 7.91944 +2004 273 7.95023 7.95023 +2004 274 11.17770 11.17770 +2004 275 9.00922 9.00922 +2004 276 7.18655 7.18655 +2004 277 9.03039 9.03039 +2004 278 10.31880 10.31880 +2004 279 8.87933 8.87933 +2004 280 8.60524 8.60524 +2004 281 11.11920 11.11920 +2004 282 11.05760 11.05760 +2004 283 11.19890 11.19890 +2004 284 10.97510 10.97510 +2004 285 10.68850 10.68850 +2004 286 12.68980 12.68980 +2004 287 14.33280 14.33280 +2004 288 13.84290 13.84290 +2004 289 12.91370 12.91370 +2004 290 11.32800 11.32800 +2004 291 9.43436 9.43436 +2004 292 8.55256 8.55256 +2004 293 9.21967 9.21967 +2004 294 9.97818 9.97818 +2004 295 11.17970 11.17970 +2004 296 11.46910 11.46910 +2004 297 13.81980 13.81980 +2004 298 14.67110 14.67110 +2004 299 12.88580 12.88580 +2004 300 13.20990 13.20990 +2004 301 11.64520 11.64520 +2004 302 14.02790 14.02790 +2004 303 11.92280 11.92280 +2004 304 9.88019 9.88019 +2004 305 11.34510 11.34510 +2004 306 11.24430 11.24430 +2004 307 11.48340 11.48340 +2004 308 11.72350 11.72350 +2004 309 13.10750 13.10750 +2004 310 13.92370 13.92370 +2004 311 15.76910 15.76910 +2004 312 13.74180 13.74180 +2004 313 14.57930 14.57930 +2004 314 14.09660 14.09660 +2004 315 14.13600 14.13600 +2004 316 13.85960 13.85960 +2004 317 14.09320 14.09320 +2004 318 14.46810 14.46810 +2004 319 12.29490 12.29490 +2004 320 12.46170 12.46170 +2004 321 11.10650 11.10650 +2004 322 12.32760 12.32760 +2004 323 13.21570 13.21570 +2004 324 13.39940 13.39940 +2004 325 14.38960 14.38960 +2004 326 13.49820 13.49820 +2004 327 12.12230 12.12230 +2004 328 13.11170 13.11170 +2004 329 11.70810 11.70810 +2004 330 9.40938 9.40938 +2004 331 9.61603 9.61603 +2004 332 12.52720 12.52720 +2004 333 13.17010 13.17010 +2004 334 12.28010 12.28010 +2004 335 13.41700 13.41700 +2004 336 15.81040 15.81040 +2004 337 12.70670 12.70670 +2004 338 10.93700 10.93700 +2004 339 9.34789 9.34789 +2004 340 11.95000 11.95000 +2004 341 12.54140 12.54140 +2004 342 12.74910 12.74910 +2004 343 11.50560 11.50560 +2004 344 11.49600 11.49600 +2004 345 10.84100 10.84100 +2004 346 11.23320 11.23320 +2004 347 13.07470 13.07470 +2004 348 13.66260 13.66260 +2004 349 12.90710 12.90710 +2004 350 14.71980 14.71980 +2004 351 12.60560 12.60560 +2004 352 9.59306 9.59306 +2004 353 9.77287 9.77287 +2004 354 10.64610 10.64610 +2004 355 11.80940 11.80940 +2004 356 11.47580 11.47580 +2004 357 11.58520 11.58520 +2004 358 11.55670 11.55670 +2004 359 12.33120 12.33120 +2004 360 12.06580 12.06580 +2004 361 14.27170 14.27170 +2004 362 14.24490 14.24490 +2004 363 15.42230 15.42230 +2004 364 15.86890 15.86890 +2004 365 15.73040 15.73040 +2004 366 14.33110 14.33110 +2005 1 14.70010 14.70010 +2005 2 14.52720 14.52720 +2005 3 15.24900 15.24900 +2005 4 15.48100 15.48100 +2005 5 16.89110 16.89110 +2005 6 15.95240 15.95240 +2005 7 15.93320 15.93320 +2005 8 14.11940 14.11940 +2005 9 13.92020 13.92020 +2005 10 14.54590 14.54590 +2005 11 15.09210 15.09210 +2005 12 16.22820 16.22820 +2005 13 16.24340 16.24340 +2005 14 17.41720 17.41720 +2005 15 18.24910 18.24910 +2005 16 17.09890 17.09890 +2005 17 16.43540 16.43540 +2005 18 15.12400 15.12400 +2005 19 14.75700 14.75700 +2005 20 16.40760 16.40760 +2005 21 16.07630 16.07630 +2005 22 16.99210 16.99210 +2005 23 17.45250 17.45250 +2005 24 18.61090 18.61090 +2005 25 18.78850 18.78850 +2005 26 16.23380 16.23380 +2005 27 16.85380 16.85380 +2005 28 17.65540 17.65540 +2005 29 17.76590 17.76590 +2005 30 19.12410 19.12410 +2005 31 19.91320 19.91320 +2005 32 19.55680 19.55680 +2005 33 19.44520 19.44520 +2005 34 19.37480 19.37480 +2005 35 18.71370 18.71370 +2005 36 18.22270 18.22270 +2005 37 17.47830 17.47830 +2005 38 18.88310 18.88310 +2005 39 20.08450 20.08450 +2005 40 20.72380 20.72380 +2005 41 18.72290 18.72290 +2005 42 16.97910 16.97910 +2005 43 16.66560 16.66560 +2005 44 15.93580 15.93580 +2005 45 16.46150 16.46150 +2005 46 15.91330 15.91330 +2005 47 15.94390 15.94390 +2005 48 17.26330 17.26330 +2005 49 16.97550 16.97550 +2005 50 16.93110 16.93110 +2005 51 17.83090 17.83090 +2005 52 16.25300 16.25300 +2005 53 17.25370 17.25370 +2005 54 17.63380 17.63380 +2005 55 17.92640 17.92640 +2005 56 17.90180 17.90180 +2005 57 18.04290 18.04290 +2005 58 16.67120 16.67120 +2005 59 15.01180 15.01180 +2005 60 15.19460 15.19460 +2005 61 16.52520 16.52520 +2005 62 17.28590 17.28590 +2005 63 16.17560 16.17560 +2005 64 17.33510 17.33510 +2005 65 16.33360 16.33360 +2005 66 14.69170 14.69170 +2005 67 16.27540 16.27540 +2005 68 16.24610 16.24610 +2005 69 16.58500 16.58500 +2005 70 15.36790 15.36790 +2005 71 14.63770 14.63770 +2005 72 14.97180 14.97180 +2005 73 16.13630 16.13630 +2005 74 16.30050 16.30050 +2005 75 14.55750 14.55750 +2005 76 17.05940 17.05940 +2005 77 17.27040 17.27040 +2005 78 17.84440 17.84440 +2005 79 17.62580 17.62580 +2005 80 16.71930 16.71930 +2005 81 16.78910 16.78910 +2005 82 16.58630 16.58630 +2005 83 17.45260 17.45260 +2005 84 16.82500 16.82500 +2005 85 15.58580 15.58580 +2005 86 13.68240 13.68240 +2005 87 14.15360 14.15360 +2005 88 14.69170 14.69170 +2005 89 13.48900 13.48900 +2005 90 14.29280 14.29280 +2005 91 14.99370 14.99370 +2005 92 14.64400 14.64400 +2005 93 15.23280 15.23280 +2005 94 15.41890 15.41890 +2005 95 14.20630 14.20630 +2005 96 15.05610 15.05610 +2005 97 14.91320 14.91320 +2005 98 14.52300 14.52300 +2005 99 14.09310 14.09310 +2005 100 13.31650 13.31650 +2005 101 15.53420 15.53420 +2005 102 13.92430 13.92430 +2005 103 10.80460 10.80460 +2005 104 11.80890 11.80890 +2005 105 11.67560 11.67560 +2005 106 12.38800 12.38800 +2005 107 12.48520 12.48520 +2005 108 11.12220 11.12220 +2005 109 11.71760 11.71760 +2005 110 12.15160 12.15160 +2005 111 10.26500 10.26500 +2005 112 11.90920 11.90920 +2005 113 9.86068 9.86068 +2005 114 6.37993 6.37993 +2005 115 8.60885 8.60885 +2005 116 11.81410 11.81410 +2005 117 10.73780 10.73780 +2005 118 8.95228 8.95228 +2005 119 12.20340 12.20340 +2005 120 13.25340 13.25340 +2005 121 13.43550 13.43550 +2005 122 13.25370 13.25370 +2005 123 13.31970 13.31970 +2005 124 12.89430 12.89430 +2005 125 11.21310 11.21310 +2005 126 10.20270 10.20270 +2005 127 10.02800 10.02800 +2005 128 7.96255 7.96255 +2005 129 8.14969 8.14969 +2005 130 9.47499 9.47499 +2005 131 11.71060 11.71060 +2005 132 11.14170 11.14170 +2005 133 10.08580 10.08580 +2005 134 10.04510 10.04510 +2005 135 10.41380 10.41380 +2005 136 11.62760 11.62760 +2005 137 13.63130 13.63130 +2005 138 13.82060 13.82060 +2005 139 14.25420 14.25420 +2005 140 14.14000 14.14000 +2005 141 13.30480 13.30480 +2005 142 12.82420 12.82420 +2005 143 11.72100 11.72100 +2005 144 9.86555 9.86555 +2005 145 9.33208 9.33208 +2005 146 10.88400 10.88400 +2005 147 10.58780 10.58780 +2005 148 10.62940 10.62940 +2005 149 8.01779 8.01779 +2005 150 7.52642 7.52642 +2005 151 10.28220 10.28220 +2005 152 8.37471 8.37471 +2005 153 7.05190 7.05190 +2005 154 7.49287 7.49287 +2005 155 8.18779 8.18779 +2005 156 8.66264 8.66264 +2005 157 5.72283 5.72283 +2005 158 7.67469 7.67469 +2005 159 6.06650 6.06650 +2005 160 7.61796 7.61796 +2005 161 7.90643 7.90643 +2005 162 8.17855 8.17855 +2005 163 8.37524 8.37524 +2005 164 7.91055 7.91055 +2005 165 8.54603 8.54603 +2005 166 9.20429 9.20429 +2005 167 9.03594 9.03594 +2005 168 10.83290 10.83290 +2005 169 10.19590 10.19590 +2005 170 8.26812 8.26812 +2005 171 9.89481 9.89481 +2005 172 10.65430 10.65430 +2005 173 9.15791 9.15791 +2005 174 9.10498 9.10498 +2005 175 7.33127 7.33127 +2005 176 4.97077 4.97077 +2005 177 4.68451 4.68451 +2005 178 7.00402 7.00402 +2005 179 9.03229 9.03229 +2005 180 6.89356 6.89356 +2005 181 5.16921 5.16921 +2005 182 5.32490 5.32490 +2005 183 5.94629 5.94629 +2005 184 8.82699 8.82699 +2005 185 10.40800 10.40800 +2005 186 10.10910 10.10910 +2005 187 10.44550 10.44550 +2005 188 11.29920 11.29920 +2005 189 8.59489 8.59489 +2005 190 6.82676 6.82676 +2005 191 6.75361 6.75361 +2005 192 8.73033 8.73033 +2005 193 7.52667 7.52667 +2005 194 8.96566 8.96566 +2005 195 10.28250 10.28250 +2005 196 8.32813 8.32813 +2005 197 6.85350 6.85350 +2005 198 7.52887 7.52887 +2005 199 7.03898 7.03898 +2005 200 6.83662 6.83662 +2005 201 6.35894 6.35894 +2005 202 5.35793 5.35793 +2005 203 6.90660 6.90660 +2005 204 8.88103 8.88103 +2005 205 8.93385 8.93385 +2005 206 8.65736 8.65736 +2005 207 10.22140 10.22140 +2005 208 9.98707 9.98707 +2005 209 9.25599 9.25599 +2005 210 7.50931 7.50931 +2005 211 8.48250 8.48250 +2005 212 8.89025 8.89025 +2005 213 7.31352 7.31352 +2005 214 6.61147 6.61147 +2005 215 6.69059 6.69059 +2005 216 6.08460 6.08460 +2005 217 6.68288 6.68288 +2005 218 7.72420 7.72420 +2005 219 8.70113 8.70113 +2005 220 7.50414 7.50414 +2005 221 7.75393 7.75393 +2005 222 7.88293 7.88293 +2005 223 9.12138 9.12138 +2005 224 8.22821 8.22821 +2005 225 6.94784 6.94784 +2005 226 6.18369 6.18369 +2005 227 6.84966 6.84966 +2005 228 7.91779 7.91779 +2005 229 8.08638 8.08638 +2005 230 8.35930 8.35930 +2005 231 8.06954 8.06954 +2005 232 7.42841 7.42841 +2005 233 8.89136 8.89136 +2005 234 9.09751 9.09751 +2005 235 9.75056 9.75056 +2005 236 8.67518 8.67518 +2005 237 9.82823 9.82823 +2005 238 8.08877 8.08877 +2005 239 7.89569 7.89569 +2005 240 8.18650 8.18650 +2005 241 8.71149 8.71149 +2005 242 9.67329 9.67329 +2005 243 10.51540 10.51540 +2005 244 10.51720 10.51720 +2005 245 10.01830 10.01830 +2005 246 11.16100 11.16100 +2005 247 9.75956 9.75956 +2005 248 10.15930 10.15930 +2005 249 9.64518 9.64518 +2005 250 8.97859 8.97859 +2005 251 9.48985 9.48985 +2005 252 9.69259 9.69259 +2005 253 11.42060 11.42060 +2005 254 12.76870 12.76870 +2005 255 12.01080 12.01080 +2005 256 11.59640 11.59640 +2005 257 10.35380 10.35380 +2005 258 9.78117 9.78117 +2005 259 10.85720 10.85720 +2005 260 11.32470 11.32470 +2005 261 6.68348 6.68348 +2005 262 5.39893 5.39893 +2005 263 6.94064 6.94064 +2005 264 8.01542 8.01542 +2005 265 9.24311 9.24311 +2005 266 9.56353 9.56353 +2005 267 9.65499 9.65499 +2005 268 11.47040 11.47040 +2005 269 12.01260 12.01260 +2005 270 12.14430 12.14430 +2005 271 9.96250 9.96250 +2005 272 10.98250 10.98250 +2005 273 11.76970 11.76970 +2005 274 11.85530 11.85530 +2005 275 11.22530 11.22530 +2005 276 11.32300 11.32300 +2005 277 9.39804 9.39804 +2005 278 8.74110 8.74110 +2005 279 9.45159 9.45159 +2005 280 8.34858 8.34858 +2005 281 9.50886 9.50886 +2005 282 11.24560 11.24560 +2005 283 11.16480 11.16480 +2005 284 10.66630 10.66630 +2005 285 11.30700 11.30700 +2005 286 11.60760 11.60760 +2005 287 11.36360 11.36360 +2005 288 12.20960 12.20960 +2005 289 11.85820 11.85820 +2005 290 11.68050 11.68050 +2005 291 12.07690 12.07690 +2005 292 11.37960 11.37960 +2005 293 10.51810 10.51810 +2005 294 9.80337 9.80337 +2005 295 10.21440 10.21440 +2005 296 11.49540 11.49540 +2005 297 11.36690 11.36690 +2005 298 12.62180 12.62180 +2005 299 12.89090 12.89090 +2005 300 12.22830 12.22830 +2005 301 12.52830 12.52830 +2005 302 12.47730 12.47730 +2005 303 12.41850 12.41850 +2005 304 13.13770 13.13770 +2005 305 13.20240 13.20240 +2005 306 12.63810 12.63810 +2005 307 15.57010 15.57010 +2005 308 14.55750 14.55750 +2005 309 13.93200 13.93200 +2005 310 11.67450 11.67450 +2005 311 14.26100 14.26100 +2005 312 13.90660 13.90660 +2005 313 14.82540 14.82540 +2005 314 14.69000 14.69000 +2005 315 15.36290 15.36290 +2005 316 13.63270 13.63270 +2005 317 11.41750 11.41750 +2005 318 11.72040 11.72040 +2005 319 11.80800 11.80800 +2005 320 12.20410 12.20410 +2005 321 13.58420 13.58420 +2005 322 14.20770 14.20770 +2005 323 13.76450 13.76450 +2005 324 13.44950 13.44950 +2005 325 11.31160 11.31160 +2005 326 11.48590 11.48590 +2005 327 11.38670 11.38670 +2005 328 11.07160 11.07160 +2005 329 7.93657 7.93657 +2005 330 9.09063 9.09063 +2005 331 10.86530 10.86530 +2005 332 12.99700 12.99700 +2005 333 13.11250 13.11250 +2005 334 14.89930 14.89930 +2005 335 15.05880 15.05880 +2005 336 13.62200 13.62200 +2005 337 15.34010 15.34010 +2005 338 15.34120 15.34120 +2005 339 15.60760 15.60760 +2005 340 15.42620 15.42620 +2005 341 15.49570 15.49570 +2005 342 18.27290 18.27290 +2005 343 17.48990 17.48990 +2005 344 16.39370 16.39370 +2005 345 16.37230 16.37230 +2005 346 17.52950 17.52950 +2005 347 16.97700 16.97700 +2005 348 15.79000 15.79000 +2005 349 16.04540 16.04540 +2005 350 15.75820 15.75820 +2005 351 17.13690 17.13690 +2005 352 15.57040 15.57040 +2005 353 16.29750 16.29750 +2005 354 14.14080 14.14080 +2005 355 14.63690 14.63690 +2005 356 14.90150 14.90150 +2005 357 14.31820 14.31820 +2005 358 14.57580 14.57580 +2005 359 16.70330 16.70330 +2005 360 16.21640 16.21640 +2005 361 15.68440 15.68440 +2005 362 15.63370 15.63370 +2005 363 15.77630 15.77630 +2005 364 17.74390 17.74390 +2005 365 16.96170 16.96170 +2006 1 16.50200 16.50200 +2006 2 15.46320 15.46320 +2006 3 15.82210 15.82210 +2006 4 13.10750 13.10750 +2006 5 12.68890 12.68890 +2006 6 13.50430 13.50430 +2006 7 15.12830 15.12830 +2006 8 17.48020 17.48020 +2006 9 17.04570 17.04570 +2006 10 17.38340 17.38340 +2006 11 17.66680 17.66680 +2006 12 17.06440 17.06440 +2006 13 19.19030 19.19030 +2006 14 17.42360 17.42360 +2006 15 16.76930 16.76930 +2006 16 17.00540 17.00540 +2006 17 16.48270 16.48270 +2006 18 16.42630 16.42630 +2006 19 15.26940 15.26940 +2006 20 15.44030 15.44030 +2006 21 16.70350 16.70350 +2006 22 16.65630 16.65630 +2006 23 17.08930 17.08930 +2006 24 18.72770 18.72770 +2006 25 16.78750 16.78750 +2006 26 17.79390 17.79390 +2006 27 19.74950 19.74950 +2006 28 20.02240 20.02240 +2006 29 19.81230 19.81230 +2006 30 19.77820 19.77820 +2006 31 19.49920 19.49920 +2006 32 18.99590 18.99590 +2006 33 19.55610 19.55610 +2006 34 18.55180 18.55180 +2006 35 18.87550 18.87550 +2006 36 15.99890 15.99890 +2006 37 16.20980 16.20980 +2006 38 15.14870 15.14870 +2006 39 14.19900 14.19900 +2006 40 15.64380 15.64380 +2006 41 17.88540 17.88540 +2006 42 18.39060 18.39060 +2006 43 16.97640 16.97640 +2006 44 15.98980 15.98980 +2006 45 17.18410 17.18410 +2006 46 17.19890 17.19890 +2006 47 17.88750 17.88750 +2006 48 18.24220 18.24220 +2006 49 18.22260 18.22260 +2006 50 18.21250 18.21250 +2006 51 16.39770 16.39770 +2006 52 17.19600 17.19600 +2006 53 15.95880 15.95880 +2006 54 13.58450 13.58450 +2006 55 15.07500 15.07500 +2006 56 15.87330 15.87330 +2006 57 15.08210 15.08210 +2006 58 16.61530 16.61530 +2006 59 15.33220 15.33220 +2006 60 14.25120 14.25120 +2006 61 13.60380 13.60380 +2006 62 11.41050 11.41050 +2006 63 12.03350 12.03350 +2006 64 15.18980 15.18980 +2006 65 15.62960 15.62960 +2006 66 15.68180 15.68180 +2006 67 12.63560 12.63560 +2006 68 11.98840 11.98840 +2006 69 15.35640 15.35640 +2006 70 15.08110 15.08110 +2006 71 13.13070 13.13070 +2006 72 12.53600 12.53600 +2006 73 15.47800 15.47800 +2006 74 15.59470 15.59470 +2006 75 16.38440 16.38440 +2006 76 15.18370 15.18370 +2006 77 16.43220 16.43220 +2006 78 16.19950 16.19950 +2006 79 15.41030 15.41030 +2006 80 14.90300 14.90300 +2006 81 14.86050 14.86050 +2006 82 14.08270 14.08270 +2006 83 13.39880 13.39880 +2006 84 12.64100 12.64100 +2006 85 16.03850 16.03850 +2006 86 16.41810 16.41810 +2006 87 14.98830 14.98830 +2006 88 12.53470 12.53470 +2006 89 13.71290 13.71290 +2006 90 15.18710 15.18710 +2006 91 15.77110 15.77110 +2006 92 17.09620 17.09620 +2006 93 15.11330 15.11330 +2006 94 14.80290 14.80290 +2006 95 13.47200 13.47200 +2006 96 14.92950 14.92950 +2006 97 13.98060 13.98060 +2006 98 13.64750 13.64750 +2006 99 12.83990 12.83990 +2006 100 12.15450 12.15450 +2006 101 11.45290 11.45290 +2006 102 11.76180 11.76180 +2006 103 12.27650 12.27650 +2006 104 11.43110 11.43110 +2006 105 12.19600 12.19600 +2006 106 13.03740 13.03740 +2006 107 13.52780 13.52780 +2006 108 13.37460 13.37460 +2006 109 12.05880 12.05880 +2006 110 13.29620 13.29620 +2006 111 14.55320 14.55320 +2006 112 15.41970 15.41970 +2006 113 15.11770 15.11770 +2006 114 15.08860 15.08860 +2006 115 13.15420 13.15420 +2006 116 12.43140 12.43140 +2006 117 13.43270 13.43270 +2006 118 13.49350 13.49350 +2006 119 12.81970 12.81970 +2006 120 12.40290 12.40290 +2006 121 11.69160 11.69160 +2006 122 13.07980 13.07980 +2006 123 12.57870 12.57870 +2006 124 9.80228 9.80228 +2006 125 11.64950 11.64950 +2006 126 10.92810 10.92810 +2006 127 10.34420 10.34420 +2006 128 9.04795 9.04795 +2006 129 10.16960 10.16960 +2006 130 9.38278 9.38278 +2006 131 8.67820 8.67820 +2006 132 8.07189 8.07189 +2006 133 8.55296 8.55296 +2006 134 6.60851 6.60851 +2006 135 6.84089 6.84089 +2006 136 7.63664 7.63664 +2006 137 8.24835 8.24835 +2006 138 9.68261 9.68261 +2006 139 8.73151 8.73151 +2006 140 9.44813 9.44813 +2006 141 10.80890 10.80890 +2006 142 11.10380 11.10380 +2006 143 12.25380 12.25380 +2006 144 13.77780 13.77780 +2006 145 13.35620 13.35620 +2006 146 13.84940 13.84940 +2006 147 11.35700 11.35700 +2006 148 10.11580 10.11580 +2006 149 9.12962 9.12962 +2006 150 7.70545 7.70545 +2006 151 7.25843 7.25843 +2006 152 6.04232 6.04232 +2006 153 7.22223 7.22223 +2006 154 11.30490 11.30490 +2006 155 7.12632 7.12632 +2006 156 4.55570 4.55570 +2006 157 4.84982 4.84982 +2006 158 5.78040 5.78040 +2006 159 7.84866 7.84866 +2006 160 8.79418 8.79418 +2006 161 9.10165 9.10165 +2006 162 10.73830 10.73830 +2006 163 6.65166 6.65166 +2006 164 4.72094 4.72094 +2006 165 8.04061 8.04061 +2006 166 7.68076 7.68076 +2006 167 6.04276 6.04276 +2006 168 4.35607 4.35607 +2006 169 4.67690 4.67690 +2006 170 6.84795 6.84795 +2006 171 6.65062 6.65062 +2006 172 5.83825 5.83825 +2006 173 4.67600 4.67600 +2006 174 6.41578 6.41578 +2006 175 5.86422 5.86422 +2006 176 5.18068 5.18068 +2006 177 5.73947 5.73947 +2006 178 5.01039 5.01039 +2006 179 4.05604 4.05604 +2006 180 5.12052 5.12052 +2006 181 6.76822 6.76822 +2006 182 6.03311 6.03311 +2006 183 5.16453 5.16453 +2006 184 8.74936 8.74936 +2006 185 7.28469 7.28469 +2006 186 6.68588 6.68588 +2006 187 7.90108 7.90108 +2006 188 8.45082 8.45082 +2006 189 9.41848 9.41848 +2006 190 8.38467 8.38467 +2006 191 7.92963 7.92963 +2006 192 9.79163 9.79163 +2006 193 8.94232 8.94232 +2006 194 7.60332 7.60332 +2006 195 9.78766 9.78766 +2006 196 10.15840 10.15840 +2006 197 8.57388 8.57388 +2006 198 7.19783 7.19783 +2006 199 8.12014 8.12014 +2006 200 8.84308 8.84308 +2006 201 6.41429 6.41429 +2006 202 4.17139 4.17139 +2006 203 5.49312 5.49312 +2006 204 7.01113 7.01113 +2006 205 7.13913 7.13913 +2006 206 6.83596 6.83596 +2006 207 5.77184 5.77184 +2006 208 5.78708 5.78708 +2006 209 5.76232 5.76232 +2006 210 7.49756 7.49756 +2006 211 10.09480 10.09480 +2006 212 10.43190 10.43190 +2006 213 11.11900 11.11900 +2006 214 9.44549 9.44549 +2006 215 8.72794 8.72794 +2006 216 8.54892 8.54892 +2006 217 10.92620 10.92620 +2006 218 11.35430 11.35430 +2006 219 8.40237 8.40237 +2006 220 6.81816 6.81816 +2006 221 5.95656 5.95656 +2006 222 6.78700 6.78700 +2006 223 6.38276 6.38276 +2006 224 6.65540 6.65540 +2006 225 5.97035 5.97035 +2006 226 5.11935 5.11935 +2006 227 5.46025 5.46025 +2006 228 5.84218 5.84218 +2006 229 6.48882 6.48882 +2006 230 7.88063 7.88063 +2006 231 8.22093 8.22093 +2006 232 7.75162 7.75162 +2006 233 4.86054 4.86054 +2006 234 4.31509 4.31509 +2006 235 5.54407 5.54407 +2006 236 8.51759 8.51759 +2006 237 8.95691 8.95691 +2006 238 7.85948 7.85948 +2006 239 6.17973 6.17973 +2006 240 8.04616 8.04616 +2006 241 8.82503 8.82503 +2006 242 8.07214 8.07214 +2006 243 10.55140 10.55140 +2006 244 8.67014 8.67014 +2006 245 10.56670 10.56670 +2006 246 10.33030 10.33030 +2006 247 9.77461 9.77461 +2006 248 10.89980 10.89980 +2006 249 8.99971 8.99971 +2006 250 7.90717 7.90717 +2006 251 7.96633 7.96633 +2006 252 10.03030 10.03030 +2006 253 9.31506 9.31506 +2006 254 7.74844 7.74844 +2006 255 8.62153 8.62153 +2006 256 8.33033 8.33033 +2006 257 8.49001 8.49001 +2006 258 8.80416 8.80416 +2006 259 9.33894 9.33894 +2006 260 8.03373 8.03373 +2006 261 8.27864 8.27864 +2006 262 10.57090 10.57090 +2006 263 11.16810 11.16810 +2006 264 12.69590 12.69590 +2006 265 12.02020 12.02020 +2006 266 13.25100 13.25100 +2006 267 13.07370 13.07370 +2006 268 11.67110 11.67110 +2006 269 11.72500 11.72500 +2006 270 11.92290 11.92290 +2006 271 11.79320 11.79320 +2006 272 11.89500 11.89500 +2006 273 12.24520 12.24520 +2006 274 10.83850 10.83850 +2006 275 10.66480 10.66480 +2006 276 10.72220 10.72220 +2006 277 7.88068 7.88068 +2006 278 7.32540 7.32540 +2006 279 8.83087 8.83087 +2006 280 11.28820 11.28820 +2006 281 11.10120 11.10120 +2006 282 7.48495 7.48495 +2006 283 8.82515 8.82515 +2006 284 11.88470 11.88470 +2006 285 13.93930 13.93930 +2006 286 13.48980 13.48980 +2006 287 13.20520 13.20520 +2006 288 10.55180 10.55180 +2006 289 8.98509 8.98509 +2006 290 8.98397 8.98397 +2006 291 9.33461 9.33461 +2006 292 13.76650 13.76650 +2006 293 12.31720 12.31720 +2006 294 12.50590 12.50590 +2006 295 11.16520 11.16520 +2006 296 10.12510 10.12510 +2006 297 9.32483 9.32483 +2006 298 10.69490 10.69490 +2006 299 9.68890 9.68890 +2006 300 11.99110 11.99110 +2006 301 11.86390 11.86390 +2006 302 10.43960 10.43960 +2006 303 10.31980 10.31980 +2006 304 10.84080 10.84080 +2006 305 11.07240 11.07240 +2006 306 11.78250 11.78250 +2006 307 13.04540 13.04540 +2006 308 12.77540 12.77540 +2006 309 13.94700 13.94700 +2006 310 13.95330 13.95330 +2006 311 12.69780 12.69780 +2006 312 8.34835 8.34835 +2006 313 8.66557 8.66557 +2006 314 11.49630 11.49630 +2006 315 12.48190 12.48190 +2006 316 13.46530 13.46530 +2006 317 15.71780 15.71780 +2006 318 15.78830 15.78830 +2006 319 15.69080 15.69080 +2006 320 16.53520 16.53520 +2006 321 13.50670 13.50670 +2006 322 11.56350 11.56350 +2006 323 11.51070 11.51070 +2006 324 11.45700 11.45700 +2006 325 12.26110 12.26110 +2006 326 15.14430 15.14430 +2006 327 14.69930 14.69930 +2006 328 12.73910 12.73910 +2006 329 13.79480 13.79480 +2006 330 11.61570 11.61570 +2006 331 10.03240 10.03240 +2006 332 12.85040 12.85040 +2006 333 13.05690 13.05690 +2006 334 10.29590 10.29590 +2006 335 10.88370 10.88370 +2006 336 13.95630 13.95630 +2006 337 14.72080 14.72080 +2006 338 13.55900 13.55900 +2006 339 12.75110 12.75110 +2006 340 13.88200 13.88200 +2006 341 12.52940 12.52940 +2006 342 10.45780 10.45780 +2006 343 10.51370 10.51370 +2006 344 14.20760 14.20760 +2006 345 14.50060 14.50060 +2006 346 14.39170 14.39170 +2006 347 13.85130 13.85130 +2006 348 14.66020 14.66020 +2006 349 14.82310 14.82310 +2006 350 14.26930 14.26930 +2006 351 14.08770 14.08770 +2006 352 14.79470 14.79470 +2006 353 14.66380 14.66380 +2006 354 10.78660 10.78660 +2006 355 10.52760 10.52760 +2006 356 10.29960 10.29960 +2006 357 11.38300 11.38300 +2006 358 15.03310 15.03310 +2006 359 17.31800 17.31800 +2006 360 15.15220 15.15220 +2006 361 14.71770 14.71770 +2006 362 14.25860 14.25860 +2006 363 12.55390 12.55390 +2006 364 11.98910 11.98910 +2006 365 10.48150 10.48150 +2007 1 11.15560 11.15560 +2007 2 12.72050 12.72050 +2007 3 13.80400 13.80400 +2007 4 15.60350 15.60350 +2007 5 14.08280 14.08280 +2007 6 16.01750 16.01750 +2007 7 15.18650 15.18650 +2007 8 15.00050 15.00050 +2007 9 17.66940 17.66940 +2007 10 17.76410 17.76410 +2007 11 17.43620 17.43620 +2007 12 17.46340 17.46340 +2007 13 18.07570 18.07570 +2007 14 18.64490 18.64490 +2007 15 18.21610 18.21610 +2007 16 16.37170 16.37170 +2007 17 14.76590 14.76590 +2007 18 16.31550 16.31550 +2007 19 16.22060 16.22060 +2007 20 17.32080 17.32080 +2007 21 18.59540 18.59540 +2007 22 18.24230 18.24230 +2007 23 18.18110 18.18110 +2007 24 19.73880 19.73880 +2007 25 17.76740 17.76740 +2007 26 17.40980 17.40980 +2007 27 18.13810 18.13810 +2007 28 18.16210 18.16210 +2007 29 15.41740 15.41740 +2007 30 15.55410 15.55410 +2007 31 16.31610 16.31610 +2007 32 15.72970 15.72970 +2007 33 14.88590 14.88590 +2007 34 15.63100 15.63100 +2007 35 16.80620 16.80620 +2007 36 17.61510 17.61510 +2007 37 17.46440 17.46440 +2007 38 17.99230 17.99230 +2007 39 17.94020 17.94020 +2007 40 17.43190 17.43190 +2007 41 15.88280 15.88280 +2007 42 15.15150 15.15150 +2007 43 14.87780 14.87780 +2007 44 16.25770 16.25770 +2007 45 16.70870 16.70870 +2007 46 16.05140 16.05140 +2007 47 15.13900 15.13900 +2007 48 17.21320 17.21320 +2007 49 18.22830 18.22830 +2007 50 17.16220 17.16220 +2007 51 18.40590 18.40590 +2007 52 17.65780 17.65780 +2007 53 17.51930 17.51930 +2007 54 17.47140 17.47140 +2007 55 16.69230 16.69230 +2007 56 17.45710 17.45710 +2007 57 19.26170 19.26170 +2007 58 16.84090 16.84090 +2007 59 15.31080 15.31080 +2007 60 17.07840 17.07840 +2007 61 17.52200 17.52200 +2007 62 16.76810 16.76810 +2007 63 17.86830 17.86830 +2007 64 17.29150 17.29150 +2007 65 17.13000 17.13000 +2007 66 17.88130 17.88130 +2007 67 16.66660 16.66660 +2007 68 17.69190 17.69190 +2007 69 17.14890 17.14890 +2007 70 17.06740 17.06740 +2007 71 15.77870 15.77870 +2007 72 11.85900 11.85900 +2007 73 11.41590 11.41590 +2007 74 14.33560 14.33560 +2007 75 15.06660 15.06660 +2007 76 14.80980 14.80980 +2007 77 13.46540 13.46540 +2007 78 14.28830 14.28830 +2007 79 14.32110 14.32110 +2007 80 15.93370 15.93370 +2007 81 14.94260 14.94260 +2007 82 14.49050 14.49050 +2007 83 15.49430 15.49430 +2007 84 15.71870 15.71870 +2007 85 16.15140 16.15140 +2007 86 15.35190 15.35190 +2007 87 15.84860 15.84860 +2007 88 17.25100 17.25100 +2007 89 17.29890 17.29890 +2007 90 16.16400 16.16400 +2007 91 15.02210 15.02210 +2007 92 14.19340 14.19340 +2007 93 13.55580 13.55580 +2007 94 13.08990 13.08990 +2007 95 13.08460 13.08460 +2007 96 11.96970 11.96970 +2007 97 13.91250 13.91250 +2007 98 13.77460 13.77460 +2007 99 14.11870 14.11870 +2007 100 13.25190 13.25190 +2007 101 10.43520 10.43520 +2007 102 10.41160 10.41160 +2007 103 10.84450 10.84450 +2007 104 12.56970 12.56970 +2007 105 12.05070 12.05070 +2007 106 12.66750 12.66750 +2007 107 11.67280 11.67280 +2007 108 9.89134 9.89134 +2007 109 10.03070 10.03070 +2007 110 10.58680 10.58680 +2007 111 11.31890 11.31890 +2007 112 10.41240 10.41240 +2007 113 11.63370 11.63370 +2007 114 11.34840 11.34840 +2007 115 12.05210 12.05210 +2007 116 11.36270 11.36270 +2007 117 12.18230 12.18230 +2007 118 11.73130 11.73130 +2007 119 13.54420 13.54420 +2007 120 15.14820 15.14820 +2007 121 13.13880 13.13880 +2007 122 12.81270 12.81270 +2007 123 12.36850 12.36850 +2007 124 12.27610 12.27610 +2007 125 11.82750 11.82750 +2007 126 13.30590 13.30590 +2007 127 12.17690 12.17690 +2007 128 9.89193 9.89193 +2007 129 10.62310 10.62310 +2007 130 10.84460 10.84460 +2007 131 11.14790 11.14790 +2007 132 9.88239 9.88239 +2007 133 10.47960 10.47960 +2007 134 12.37830 12.37830 +2007 135 12.47770 12.47770 +2007 136 12.64970 12.64970 +2007 137 11.46500 11.46500 +2007 138 10.73500 10.73500 +2007 139 11.86570 11.86570 +2007 140 13.12470 13.12470 +2007 141 12.73500 12.73500 +2007 142 13.65730 13.65730 +2007 143 12.36870 12.36870 +2007 144 10.62000 10.62000 +2007 145 11.09280 11.09280 +2007 146 10.86180 10.86180 +2007 147 9.24796 9.24796 +2007 148 8.38679 8.38679 +2007 149 8.95740 8.95740 +2007 150 8.81817 8.81817 +2007 151 9.28859 9.28859 +2007 152 11.15170 11.15170 +2007 153 8.95787 8.95787 +2007 154 7.56181 7.56181 +2007 155 9.83358 9.83358 +2007 156 10.75060 10.75060 +2007 157 10.31970 10.31970 +2007 158 9.74122 9.74122 +2007 159 8.73166 8.73166 +2007 160 7.16649 7.16649 +2007 161 9.86824 9.86824 +2007 162 9.79826 9.79826 +2007 163 8.34918 8.34918 +2007 164 8.87491 8.87491 +2007 165 7.37720 7.37720 +2007 166 5.26862 5.26862 +2007 167 7.06069 7.06069 +2007 168 6.33364 6.33364 +2007 169 4.26960 4.26960 +2007 170 6.01147 6.01147 +2007 171 10.38560 10.38560 +2007 172 8.30505 8.30505 +2007 173 7.85854 7.85854 +2007 174 8.49735 8.49735 +2007 175 8.11423 8.11423 +2007 176 4.43178 4.43178 +2007 177 4.17519 4.17519 +2007 178 4.55833 4.55833 +2007 179 7.86255 7.86255 +2007 180 11.53280 11.53280 +2007 181 11.65280 11.65280 +2007 182 9.75490 9.75490 +2007 183 8.64187 8.64187 +2007 184 8.81865 8.81865 +2007 185 9.91645 9.91645 +2007 186 9.21405 9.21405 +2007 187 5.82062 5.82062 +2007 188 5.51942 5.51942 +2007 189 6.42015 6.42015 +2007 190 7.01368 7.01368 +2007 191 6.03095 6.03095 +2007 192 6.90490 6.90490 +2007 193 5.82647 5.82647 +2007 194 4.90961 4.90961 +2007 195 5.71235 5.71235 +2007 196 7.07968 7.07968 +2007 197 8.66344 8.66344 +2007 198 8.61580 8.61580 +2007 199 8.51244 8.51244 +2007 200 8.22700 8.22700 +2007 201 7.91801 7.91801 +2007 202 5.87715 5.87715 +2007 203 5.34533 5.34533 +2007 204 7.89582 7.89582 +2007 205 8.16920 8.16920 +2007 206 9.16238 9.16238 +2007 207 9.39325 9.39325 +2007 208 8.51002 8.51002 +2007 209 10.31240 10.31240 +2007 210 10.34150 10.34150 +2007 211 9.93737 9.93737 +2007 212 9.02176 9.02176 +2007 213 7.96152 7.96152 +2007 214 8.96119 8.96119 +2007 215 8.41362 8.41362 +2007 216 8.56834 8.56834 +2007 217 7.50725 7.50725 +2007 218 6.71687 6.71687 +2007 219 5.97571 5.97571 +2007 220 8.69186 8.69186 +2007 221 9.86195 9.86195 +2007 222 10.73850 10.73850 +2007 223 9.55560 9.55560 +2007 224 7.15811 7.15811 +2007 225 5.22553 5.22553 +2007 226 5.96440 5.96440 +2007 227 8.01883 8.01883 +2007 228 10.12100 10.12100 +2007 229 9.93973 9.93973 +2007 230 9.96331 9.96331 +2007 231 6.84618 6.84618 +2007 232 6.13626 6.13626 +2007 233 7.55543 7.55543 +2007 234 6.82272 6.82272 +2007 235 6.70165 6.70165 +2007 236 7.02814 7.02814 +2007 237 7.37359 7.37359 +2007 238 8.39739 8.39739 +2007 239 10.25650 10.25650 +2007 240 8.56089 8.56089 +2007 241 9.55259 9.55259 +2007 242 9.32659 9.32659 +2007 243 9.65578 9.65578 +2007 244 9.83222 9.83222 +2007 245 8.83715 8.83715 +2007 246 9.82462 9.82462 +2007 247 7.03743 7.03743 +2007 248 5.64230 5.64230 +2007 249 5.62739 5.62739 +2007 250 7.90374 7.90374 +2007 251 7.90798 7.90798 +2007 252 9.31369 9.31369 +2007 253 7.99000 7.99000 +2007 254 7.80864 7.80864 +2007 255 8.69755 8.69755 +2007 256 9.93487 9.93487 +2007 257 10.51360 10.51360 +2007 258 11.72910 11.72910 +2007 259 11.41980 11.41980 +2007 260 11.18650 11.18650 +2007 261 11.58790 11.58790 +2007 262 11.50310 11.50310 +2007 263 9.90333 9.90333 +2007 264 9.95252 9.95252 +2007 265 12.02380 12.02380 +2007 266 11.70660 11.70660 +2007 267 9.42575 9.42575 +2007 268 8.21539 8.21539 +2007 269 7.18276 7.18276 +2007 270 7.62166 7.62166 +2007 271 9.37515 9.37515 +2007 272 10.62300 10.62300 +2007 273 11.57680 11.57680 +2007 274 9.58622 9.58622 +2007 275 7.48511 7.48511 +2007 276 7.97413 7.97413 +2007 277 10.37970 10.37970 +2007 278 10.87790 10.87790 +2007 279 12.33270 12.33270 +2007 280 14.08200 14.08200 +2007 281 12.44670 12.44670 +2007 282 13.24260 13.24260 +2007 283 12.22040 12.22040 +2007 284 10.01300 10.01300 +2007 285 11.14960 11.14960 +2007 286 9.70506 9.70506 +2007 287 9.00584 9.00584 +2007 288 10.87320 10.87320 +2007 289 13.25030 13.25030 +2007 290 9.38252 9.38252 +2007 291 7.30378 7.30378 +2007 292 7.74987 7.74987 +2007 293 10.99840 10.99840 +2007 294 11.46810 11.46810 +2007 295 12.47790 12.47790 +2007 296 12.13260 12.13260 +2007 297 11.48250 11.48250 +2007 298 11.32770 11.32770 +2007 299 9.96900 9.96900 +2007 300 8.91624 8.91624 +2007 301 10.91610 10.91610 +2007 302 11.63300 11.63300 +2007 303 11.96150 11.96150 +2007 304 12.04390 12.04390 +2007 305 13.49320 13.49320 +2007 306 13.63190 13.63190 +2007 307 13.53790 13.53790 +2007 308 14.09920 14.09920 +2007 309 11.30020 11.30020 +2007 310 12.08420 12.08420 +2007 311 10.85030 10.85030 +2007 312 12.08390 12.08390 +2007 313 12.16940 12.16940 +2007 314 12.53110 12.53110 +2007 315 12.57010 12.57010 +2007 316 11.07030 11.07030 +2007 317 10.36480 10.36480 +2007 318 10.55100 10.55100 +2007 319 11.71170 11.71170 +2007 320 13.03630 13.03630 +2007 321 12.33820 12.33820 +2007 322 14.55250 14.55250 +2007 323 14.74160 14.74160 +2007 324 16.03050 16.03050 +2007 325 14.77480 14.77480 +2007 326 14.82080 14.82080 +2007 327 15.43140 15.43140 +2007 328 18.18070 18.18070 +2007 329 17.51600 17.51600 +2007 330 17.02510 17.02510 +2007 331 13.89690 13.89690 +2007 332 12.13200 12.13200 +2007 333 13.40370 13.40370 +2007 334 13.44970 13.44970 +2007 335 15.01550 15.01550 +2007 336 15.53480 15.53480 +2007 337 15.99010 15.99010 +2007 338 14.63050 14.63050 +2007 339 15.37420 15.37420 +2007 340 13.50860 13.50860 +2007 341 15.98680 15.98680 +2007 342 15.50480 15.50480 +2007 343 15.16270 15.16270 +2007 344 15.21340 15.21340 +2007 345 15.85740 15.85740 +2007 346 16.35800 16.35800 +2007 347 16.88780 16.88780 +2007 348 16.12400 16.12400 +2007 349 15.45840 15.45840 +2007 350 16.42330 16.42330 +2007 351 17.04760 17.04760 +2007 352 16.64180 16.64180 +2007 353 15.75170 15.75170 +2007 354 15.39480 15.39480 +2007 355 14.23670 14.23670 +2007 356 13.80090 13.80090 +2007 357 14.82460 14.82460 +2007 358 16.12350 16.12350 +2007 359 12.96020 12.96020 +2007 360 12.85780 12.85780 +2007 361 14.95320 14.95320 +2007 362 16.28670 16.28670 +2007 363 16.23820 16.23820 +2007 364 17.02430 17.02430 +2007 365 15.90890 15.90890 +2008 1 16.63050 16.63050 +2008 2 17.35480 17.35480 +2008 3 17.25260 17.25260 +2008 4 17.33110 17.33110 +2008 5 17.47080 17.47080 +2008 6 18.49570 18.49570 +2008 7 17.68760 17.68760 +2008 8 18.33540 18.33540 +2008 9 18.36530 18.36530 +2008 10 15.18880 15.18880 +2008 11 16.36390 16.36390 +2008 12 17.82260 17.82260 +2008 13 18.09410 18.09410 +2008 14 19.78070 19.78070 +2008 15 19.18240 19.18240 +2008 16 20.04320 20.04320 +2008 17 19.67920 19.67920 +2008 18 17.45720 17.45720 +2008 19 17.97820 17.97820 +2008 20 19.37530 19.37530 +2008 21 20.39350 20.39350 +2008 22 18.69000 18.69000 +2008 23 17.97370 17.97370 +2008 24 17.18840 17.18840 +2008 25 16.55550 16.55550 +2008 26 16.78130 16.78130 +2008 27 17.66010 17.66010 +2008 28 18.88810 18.88810 +2008 29 19.17030 19.17030 +2008 30 18.36670 18.36670 +2008 31 18.22140 18.22140 +2008 32 18.70090 18.70090 +2008 33 18.04240 18.04240 +2008 34 19.66770 19.66770 +2008 35 15.08250 15.08250 +2008 36 14.29560 14.29560 +2008 37 15.13150 15.13150 +2008 38 16.63800 16.63800 +2008 39 17.57200 17.57200 +2008 40 17.74280 17.74280 +2008 41 19.26710 19.26710 +2008 42 15.94630 15.94630 +2008 43 16.89200 16.89200 +2008 44 16.11630 16.11630 +2008 45 16.06480 16.06480 +2008 46 14.18250 14.18250 +2008 47 15.24420 15.24420 +2008 48 17.01060 17.01060 +2008 49 16.87930 16.87930 +2008 50 16.05450 16.05450 +2008 51 16.34450 16.34450 +2008 52 15.81760 15.81760 +2008 53 16.27680 16.27680 +2008 54 16.93900 16.93900 +2008 55 18.07610 18.07610 +2008 56 16.54100 16.54100 +2008 57 16.02540 16.02540 +2008 58 16.79600 16.79600 +2008 59 17.38780 17.38780 +2008 60 17.70280 17.70280 +2008 61 17.65200 17.65200 +2008 62 15.90080 15.90080 +2008 63 14.19490 14.19490 +2008 64 15.56850 15.56850 +2008 65 14.35850 14.35850 +2008 66 14.77720 14.77720 +2008 67 15.70150 15.70150 +2008 68 15.13680 15.13680 +2008 69 15.34920 15.34920 +2008 70 15.86450 15.86450 +2008 71 16.00150 16.00150 +2008 72 15.87230 15.87230 +2008 73 15.75330 15.75330 +2008 74 15.42220 15.42220 +2008 75 16.01380 16.01380 +2008 76 15.42500 15.42500 +2008 77 16.59540 16.59540 +2008 78 16.41380 16.41380 +2008 79 17.13230 17.13230 +2008 80 17.29250 17.29250 +2008 81 17.30680 17.30680 +2008 82 16.83600 16.83600 +2008 83 16.71310 16.71310 +2008 84 16.10990 16.10990 +2008 85 16.00860 16.00860 +2008 86 16.13430 16.13430 +2008 87 16.15470 16.15470 +2008 88 15.88100 15.88100 +2008 89 16.45270 16.45270 +2008 90 16.96020 16.96020 +2008 91 16.93790 16.93790 +2008 92 14.78170 14.78170 +2008 93 13.47720 13.47720 +2008 94 13.77320 13.77320 +2008 95 14.41910 14.41910 +2008 96 14.74610 14.74610 +2008 97 14.24350 14.24350 +2008 98 12.81010 12.81010 +2008 99 11.81980 11.81980 +2008 100 12.04950 12.04950 +2008 101 13.21750 13.21750 +2008 102 13.00750 13.00750 +2008 103 13.10460 13.10460 +2008 104 12.91740 12.91740 +2008 105 15.52120 15.52120 +2008 106 16.40440 16.40440 +2008 107 15.84700 15.84700 +2008 108 14.06660 14.06660 +2008 109 10.68070 10.68070 +2008 110 8.60726 8.60726 +2008 111 9.35088 9.35088 +2008 112 11.09780 11.09780 +2008 113 12.11220 12.11220 +2008 114 12.02460 12.02460 +2008 115 11.17660 11.17660 +2008 116 12.48440 12.48440 +2008 117 14.03740 14.03740 +2008 118 15.55250 15.55250 +2008 119 15.52200 15.52200 +2008 120 14.62380 14.62380 +2008 121 12.12130 12.12130 +2008 122 9.82620 9.82620 +2008 123 8.33941 8.33941 +2008 124 7.29626 7.29626 +2008 125 9.40008 9.40008 +2008 126 9.12370 9.12370 +2008 127 8.79075 8.79075 +2008 128 10.19070 10.19070 +2008 129 11.45150 11.45150 +2008 130 11.65990 11.65990 +2008 131 11.73780 11.73780 +2008 132 9.29846 9.29846 +2008 133 7.65911 7.65911 +2008 134 9.40793 9.40793 +2008 135 9.31915 9.31915 +2008 136 7.60295 7.60295 +2008 137 7.97388 7.97388 +2008 138 7.81663 7.81663 +2008 139 8.42267 8.42267 +2008 140 9.67383 9.67383 +2008 141 9.44202 9.44202 +2008 142 9.20428 9.20428 +2008 143 8.77950 8.77950 +2008 144 9.94796 9.94796 +2008 145 9.38275 9.38275 +2008 146 8.41760 8.41760 +2008 147 8.10599 8.10599 +2008 148 7.96585 7.96585 +2008 149 6.84200 6.84200 +2008 150 6.93193 6.93193 +2008 151 7.88921 7.88921 +2008 152 9.30456 9.30456 +2008 153 9.40232 9.40232 +2008 154 8.10606 8.10606 +2008 155 8.26219 8.26219 +2008 156 5.77062 5.77062 +2008 157 7.97985 7.97985 +2008 158 9.51838 9.51838 +2008 159 6.52127 6.52127 +2008 160 8.55458 8.55458 +2008 161 8.24031 8.24031 +2008 162 6.86237 6.86237 +2008 163 7.70591 7.70591 +2008 164 9.10170 9.10170 +2008 165 8.44584 8.44584 +2008 166 10.41640 10.41640 +2008 167 11.98030 11.98030 +2008 168 11.64590 11.64590 +2008 169 7.53778 7.53778 +2008 170 6.02840 6.02840 +2008 171 6.36903 6.36903 +2008 172 8.40561 8.40561 +2008 173 11.34140 11.34140 +2008 174 9.26531 9.26531 +2008 175 6.11384 6.11384 +2008 176 6.82272 6.82272 +2008 177 8.29815 8.29815 +2008 178 8.58502 8.58502 +2008 179 6.01475 6.01475 +2008 180 5.43004 5.43004 +2008 181 5.83383 5.83383 +2008 182 5.39499 5.39499 +2008 183 7.76350 7.76350 +2008 184 9.39269 9.39269 +2008 185 7.68077 7.68077 +2008 186 3.98759 3.98759 +2008 187 4.24523 4.24523 +2008 188 4.70512 4.70512 +2008 189 3.98816 3.98816 +2008 190 4.70552 4.70552 +2008 191 4.79787 4.79787 +2008 192 9.54072 9.54072 +2008 193 11.12970 11.12970 +2008 194 9.03567 9.03567 +2008 195 6.79557 6.79557 +2008 196 6.30124 6.30124 +2008 197 6.16732 6.16732 +2008 198 8.87235 8.87235 +2008 199 10.25770 10.25770 +2008 200 11.25250 11.25250 +2008 201 8.97520 8.97520 +2008 202 8.22337 8.22337 +2008 203 8.26512 8.26512 +2008 204 8.42178 8.42178 +2008 205 7.92279 7.92279 +2008 206 5.95696 5.95696 +2008 207 5.11262 5.11262 +2008 208 7.75079 7.75079 +2008 209 7.00758 7.00758 +2008 210 7.42203 7.42203 +2008 211 9.86561 9.86561 +2008 212 10.01980 10.01980 +2008 213 8.55300 8.55300 +2008 214 9.08215 9.08215 +2008 215 9.52169 9.52169 +2008 216 7.86051 7.86051 +2008 217 6.11921 6.11921 +2008 218 7.78841 7.78841 +2008 219 8.20940 8.20940 +2008 220 8.78667 8.78667 +2008 221 5.38146 5.38146 +2008 222 3.76138 3.76138 +2008 223 5.03772 5.03772 +2008 224 8.56496 8.56496 +2008 225 7.32826 7.32826 +2008 226 6.37557 6.37557 +2008 227 7.60646 7.60646 +2008 228 6.32863 6.32863 +2008 229 6.16837 6.16837 +2008 230 4.53968 4.53968 +2008 231 5.74001 5.74001 +2008 232 4.17967 4.17967 +2008 233 7.73552 7.73552 +2008 234 9.00318 9.00318 +2008 235 9.79528 9.79528 +2008 236 9.55130 9.55130 +2008 237 9.32339 9.32339 +2008 238 8.79740 8.79740 +2008 239 9.50930 9.50930 +2008 240 8.92422 8.92422 +2008 241 8.66848 8.66848 +2008 242 7.74476 7.74476 +2008 243 7.27291 7.27291 +2008 244 8.75742 8.75742 +2008 245 9.47322 9.47322 +2008 246 9.42227 9.42227 +2008 247 10.02050 10.02050 +2008 248 9.55203 9.55203 +2008 249 8.96773 8.96773 +2008 250 7.68833 7.68833 +2008 251 10.42830 10.42830 +2008 252 11.83150 11.83150 +2008 253 9.12619 9.12619 +2008 254 9.55797 9.55797 +2008 255 9.29629 9.29629 +2008 256 8.83831 8.83831 +2008 257 8.98250 8.98250 +2008 258 9.73583 9.73583 +2008 259 10.56350 10.56350 +2008 260 9.42638 9.42638 +2008 261 8.31565 8.31565 +2008 262 9.35668 9.35668 +2008 263 9.64266 9.64266 +2008 264 9.36140 9.36140 +2008 265 11.58590 11.58590 +2008 266 11.06750 11.06750 +2008 267 12.04770 12.04770 +2008 268 12.16480 12.16480 +2008 269 9.69357 9.69357 +2008 270 9.25979 9.25979 +2008 271 9.78628 9.78628 +2008 272 9.51249 9.51249 +2008 273 10.69820 10.69820 +2008 274 8.27850 8.27850 +2008 275 8.84317 8.84317 +2008 276 10.41770 10.41770 +2008 277 12.48060 12.48060 +2008 278 12.95230 12.95230 +2008 279 12.70850 12.70850 +2008 280 12.67230 12.67230 +2008 281 10.06390 10.06390 +2008 282 9.12610 9.12610 +2008 283 8.58222 8.58222 +2008 284 10.39980 10.39980 +2008 285 11.82280 11.82280 +2008 286 10.90500 10.90500 +2008 287 11.12250 11.12250 +2008 288 11.04120 11.04120 +2008 289 11.61920 11.61920 +2008 290 10.61580 10.61580 +2008 291 10.97930 10.97930 +2008 292 9.12506 9.12506 +2008 293 9.96150 9.96150 +2008 294 10.55700 10.55700 +2008 295 12.43220 12.43220 +2008 296 12.81560 12.81560 +2008 297 12.94430 12.94430 +2008 298 12.80530 12.80530 +2008 299 9.73885 9.73885 +2008 300 9.55731 9.55731 +2008 301 12.74590 12.74590 +2008 302 11.75980 11.75980 +2008 303 10.26090 10.26090 +2008 304 10.18420 10.18420 +2008 305 10.10180 10.10180 +2008 306 12.66710 12.66710 +2008 307 11.55760 11.55760 +2008 308 11.69990 11.69990 +2008 309 10.59950 10.59950 +2008 310 9.06121 9.06121 +2008 311 9.37564 9.37564 +2008 312 9.49588 9.49588 +2008 313 10.77930 10.77930 +2008 314 11.40270 11.40270 +2008 315 13.51920 13.51920 +2008 316 14.17490 14.17490 +2008 317 15.42560 15.42560 +2008 318 15.71050 15.71050 +2008 319 14.86250 14.86250 +2008 320 12.95710 12.95710 +2008 321 12.17410 12.17410 +2008 322 10.99350 10.99350 +2008 323 11.28600 11.28600 +2008 324 12.66310 12.66310 +2008 325 13.12440 13.12440 +2008 326 13.59000 13.59000 +2008 327 14.94280 14.94280 +2008 328 15.06820 15.06820 +2008 329 16.74030 16.74030 +2008 330 14.68950 14.68950 +2008 331 14.79940 14.79940 +2008 332 15.26690 15.26690 +2008 333 16.07170 16.07170 +2008 334 16.65420 16.65420 +2008 335 14.83290 14.83290 +2008 336 14.74090 14.74090 +2008 337 17.05930 17.05930 +2008 338 16.97240 16.97240 +2008 339 16.25090 16.25090 +2008 340 15.71000 15.71000 +2008 341 15.03950 15.03950 +2008 342 15.02310 15.02310 +2008 343 14.52340 14.52340 +2008 344 17.13930 17.13930 +2008 345 15.47690 15.47690 +2008 346 14.22900 14.22900 +2008 347 14.77170 14.77170 +2008 348 14.89650 14.89650 +2008 349 15.22560 15.22560 +2008 350 17.54290 17.54290 +2008 351 14.34140 14.34140 +2008 352 14.14340 14.14340 +2008 353 15.27730 15.27730 +2008 354 15.68100 15.68100 +2008 355 15.26230 15.26230 +2008 356 15.22010 15.22010 +2008 357 13.94050 13.94050 +2008 358 14.39310 14.39310 +2008 359 15.13130 15.13130 +2008 360 14.68930 14.68930 +2008 361 15.42090 15.42090 +2008 362 16.56490 16.56490 +2008 363 15.64090 15.64090 +2008 364 17.90800 17.90800 +2008 365 17.40390 17.40390 +2008 366 18.49970 18.49970 +2009 1 19.12210 19.12210 +2009 2 17.77670 17.77670 +2009 3 15.54520 15.54520 +2009 4 15.77270 15.77270 +2009 5 16.70480 16.70480 +2009 6 17.89190 17.89190 +2009 7 18.82120 18.82120 +2009 8 18.37290 18.37290 +2009 9 18.70810 18.70810 +2009 10 17.46500 17.46500 +2009 11 17.80830 17.80830 +2009 12 17.37170 17.37170 +2009 13 16.91120 16.91120 +2009 14 17.83690 17.83690 +2009 15 18.95210 18.95210 +2009 16 17.88600 17.88600 +2009 17 15.06590 15.06590 +2009 18 14.60230 14.60230 +2009 19 14.63310 14.63310 +2009 20 16.55240 16.55240 +2009 21 17.46690 17.46690 +2009 22 18.48860 18.48860 +2009 23 19.35950 19.35950 +2009 24 19.86320 19.86320 +2009 25 19.69040 19.69040 +2009 26 18.90030 18.90030 +2009 27 16.89520 16.89520 +2009 28 17.48000 17.48000 +2009 29 18.24220 18.24220 +2009 30 19.76280 19.76280 +2009 31 19.44960 19.44960 +2009 32 18.45490 18.45490 +2009 33 17.70670 17.70670 +2009 34 18.73750 18.73750 +2009 35 18.17090 18.17090 +2009 36 17.89310 17.89310 +2009 37 20.09660 20.09660 +2009 38 21.66090 21.66090 +2009 39 21.78690 21.78690 +2009 40 20.80880 20.80880 +2009 41 21.28410 21.28410 +2009 42 20.66230 20.66230 +2009 43 18.93840 18.93840 +2009 44 14.94020 14.94020 +2009 45 14.53860 14.53860 +2009 46 16.63080 16.63080 +2009 47 16.63670 16.63670 +2009 48 18.12410 18.12410 +2009 49 18.44040 18.44040 +2009 50 18.35120 18.35120 +2009 51 19.15930 19.15930 +2009 52 17.67380 17.67380 +2009 53 16.08630 16.08630 +2009 54 14.91890 14.91890 +2009 55 14.88560 14.88560 +2009 56 15.62000 15.62000 +2009 57 16.42050 16.42050 +2009 58 16.28240 16.28240 +2009 59 18.14100 18.14100 +2009 60 17.62650 17.62650 +2009 61 16.69920 16.69920 +2009 62 15.37100 15.37100 +2009 63 15.66520 15.66520 +2009 64 16.53360 16.53360 +2009 65 17.88570 17.88570 +2009 66 15.34700 15.34700 +2009 67 14.00450 14.00450 +2009 68 12.89360 12.89360 +2009 69 12.27030 12.27030 +2009 70 11.26960 11.26960 +2009 71 14.29320 14.29320 +2009 72 13.36110 13.36110 +2009 73 12.68290 12.68290 +2009 74 14.01000 14.01000 +2009 75 15.02430 15.02430 +2009 76 16.46460 16.46460 +2009 77 16.49900 16.49900 +2009 78 14.47960 14.47960 +2009 79 14.43230 14.43230 +2009 80 13.26840 13.26840 +2009 81 11.87060 11.87060 +2009 82 12.22960 12.22960 +2009 83 12.57910 12.57910 +2009 84 13.91900 13.91900 +2009 85 12.79090 12.79090 +2009 86 13.40850 13.40850 +2009 87 13.25360 13.25360 +2009 88 13.80520 13.80520 +2009 89 13.51380 13.51380 +2009 90 12.00160 12.00160 +2009 91 11.28450 11.28450 +2009 92 10.68920 10.68920 +2009 93 12.08720 12.08720 +2009 94 12.79440 12.79440 +2009 95 13.24080 13.24080 +2009 96 14.35250 14.35250 +2009 97 12.60780 12.60780 +2009 98 8.43157 8.43157 +2009 99 8.90731 8.90731 +2009 100 10.74660 10.74660 +2009 101 12.15920 12.15920 +2009 102 11.67370 11.67370 +2009 103 13.38710 13.38710 +2009 104 12.17650 12.17650 +2009 105 12.86360 12.86360 +2009 106 12.06100 12.06100 +2009 107 11.64440 11.64440 +2009 108 12.03540 12.03540 +2009 109 12.30370 12.30370 +2009 110 9.42403 9.42403 +2009 111 9.80168 9.80168 +2009 112 9.31492 9.31492 +2009 113 11.72730 11.72730 +2009 114 13.13580 13.13580 +2009 115 14.39580 14.39580 +2009 116 15.11920 15.11920 +2009 117 15.08090 15.08090 +2009 118 14.70770 14.70770 +2009 119 12.73720 12.73720 +2009 120 10.11650 10.11650 +2009 121 8.91034 8.91034 +2009 122 9.57388 9.57388 +2009 123 9.26840 9.26840 +2009 124 8.85936 8.85936 +2009 125 9.29904 9.29904 +2009 126 7.98555 7.98555 +2009 127 8.98528 8.98528 +2009 128 7.29853 7.29853 +2009 129 8.14054 8.14054 +2009 130 6.24658 6.24658 +2009 131 6.66253 6.66253 +2009 132 7.45153 7.45153 +2009 133 9.00612 9.00612 +2009 134 9.72472 9.72472 +2009 135 12.29190 12.29190 +2009 136 12.33450 12.33450 +2009 137 10.27330 10.27330 +2009 138 9.05859 9.05859 +2009 139 6.85610 6.85610 +2009 140 4.47675 4.47675 +2009 141 4.55986 4.55986 +2009 142 5.27558 5.27558 +2009 143 7.19204 7.19204 +2009 144 9.77177 9.77177 +2009 145 10.10750 10.10750 +2009 146 10.19290 10.19290 +2009 147 8.08236 8.08236 +2009 148 7.66039 7.66039 +2009 149 6.63789 6.63789 +2009 150 5.97250 5.97250 +2009 151 4.95444 4.95444 +2009 152 5.88018 5.88018 +2009 153 4.31110 4.31110 +2009 154 4.28924 4.28924 +2009 155 4.87260 4.87260 +2009 156 7.14786 7.14786 +2009 157 4.87011 4.87011 +2009 158 4.30254 4.30254 +2009 159 7.93272 7.93272 +2009 160 10.48820 10.48820 +2009 161 10.95180 10.95180 +2009 162 10.89780 10.89780 +2009 163 10.82540 10.82540 +2009 164 8.69224 8.69224 +2009 165 9.04361 9.04361 +2009 166 6.51840 6.51840 +2009 167 2.79482 2.79482 +2009 168 3.22646 3.22646 +2009 169 3.63960 3.63960 +2009 170 4.99504 4.99504 +2009 171 4.63717 4.63717 +2009 172 4.96475 4.96475 +2009 173 4.12031 4.12031 +2009 174 2.76354 2.76354 +2009 175 3.28227 3.28227 +2009 176 7.62462 7.62462 +2009 177 9.32549 9.32549 +2009 178 8.29508 8.29508 +2009 179 7.05498 7.05498 +2009 180 6.88900 6.88900 +2009 181 6.30754 6.30754 +2009 182 5.57938 5.57938 +2009 183 7.71065 7.71065 +2009 184 6.27016 6.27016 +2009 185 7.38397 7.38397 +2009 186 6.87806 6.87806 +2009 187 6.21179 6.21179 +2009 188 6.89688 6.89688 +2009 189 4.48712 4.48712 +2009 190 3.78997 3.78997 +2009 191 4.89594 4.89594 +2009 192 5.35180 5.35180 +2009 193 5.13189 5.13189 +2009 194 4.65456 4.65456 +2009 195 8.96986 8.96986 +2009 196 7.58540 7.58540 +2009 197 6.75340 6.75340 +2009 198 7.31462 7.31462 +2009 199 8.54772 8.54772 +2009 200 7.94992 7.94992 +2009 201 6.83229 6.83229 +2009 202 9.70219 9.70219 +2009 203 8.38136 8.38136 +2009 204 8.60222 8.60222 +2009 205 4.69504 4.69504 +2009 206 4.12107 4.12107 +2009 207 3.93427 3.93427 +2009 208 4.81824 4.81824 +2009 209 8.10069 8.10069 +2009 210 7.15626 7.15626 +2009 211 7.86180 7.86180 +2009 212 8.78997 8.78997 +2009 213 7.71169 7.71169 +2009 214 7.43709 7.43709 +2009 215 7.15158 7.15158 +2009 216 7.45715 7.45715 +2009 217 7.96678 7.96678 +2009 218 6.70392 6.70392 +2009 219 6.01824 6.01824 +2009 220 5.41371 5.41371 +2009 221 7.64378 7.64378 +2009 222 7.88681 7.88681 +2009 223 8.35023 8.35023 +2009 224 9.03693 9.03693 +2009 225 9.59357 9.59357 +2009 226 10.86680 10.86680 +2009 227 9.80570 9.80570 +2009 228 9.53259 9.53259 +2009 229 8.97505 8.97505 +2009 230 7.87900 7.87900 +2009 231 8.09816 8.09816 +2009 232 8.94441 8.94441 +2009 233 8.11967 8.11967 +2009 234 8.09017 8.09017 +2009 235 9.31490 9.31490 +2009 236 9.23628 9.23628 +2009 237 10.95190 10.95190 +2009 238 10.10580 10.10580 +2009 239 10.39400 10.39400 +2009 240 10.82850 10.82850 +2009 241 10.72250 10.72250 +2009 242 9.81842 9.81842 +2009 243 9.07642 9.07642 +2009 244 9.38377 9.38377 +2009 245 7.73786 7.73786 +2009 246 5.36469 5.36469 +2009 247 5.99685 5.99685 +2009 248 7.46793 7.46793 +2009 249 7.72257 7.72257 +2009 250 8.75786 8.75786 +2009 251 9.21566 9.21566 +2009 252 8.49598 8.49598 +2009 253 10.54700 10.54700 +2009 254 10.99020 10.99020 +2009 255 11.76170 11.76170 +2009 256 11.51060 11.51060 +2009 257 10.10940 10.10940 +2009 258 10.86130 10.86130 +2009 259 10.82630 10.82630 +2009 260 10.64930 10.64930 +2009 261 8.88922 8.88922 +2009 262 7.41648 7.41648 +2009 263 7.80143 7.80143 +2009 264 9.26833 9.26833 +2009 265 10.53220 10.53220 +2009 266 9.62693 9.62693 +2009 267 10.79220 10.79220 +2009 268 10.49640 10.49640 +2009 269 9.65158 9.65158 +2009 270 10.21070 10.21070 +2009 271 10.42860 10.42860 +2009 272 10.75410 10.75410 +2009 273 10.54730 10.54730 +2009 274 10.83730 10.83730 +2009 275 12.38190 12.38190 +2009 276 10.11610 10.11610 +2009 277 5.39075 5.39075 +2009 278 6.07481 6.07481 +2009 279 7.62873 7.62873 +2009 280 8.22860 8.22860 +2009 281 9.25998 9.25998 +2009 282 7.22369 7.22369 +2009 283 8.25848 8.25848 +2009 284 9.69746 9.69746 +2009 285 9.79455 9.79455 +2009 286 10.69530 10.69530 +2009 287 12.71640 12.71640 +2009 288 12.80550 12.80550 +2009 289 12.18740 12.18740 +2009 290 10.04910 10.04910 +2009 291 9.48638 9.48638 +2009 292 9.36832 9.36832 +2009 293 8.61532 8.61532 +2009 294 10.74230 10.74230 +2009 295 9.58522 9.58522 +2009 296 8.85855 8.85855 +2009 297 9.52048 9.52048 +2009 298 10.74800 10.74800 +2009 299 11.87190 11.87190 +2009 300 11.81340 11.81340 +2009 301 9.17832 9.17832 +2009 302 8.59180 8.59180 +2009 303 9.69115 9.69115 +2009 304 11.18440 11.18440 +2009 305 11.33120 11.33120 +2009 306 12.65060 12.65060 +2009 307 11.25940 11.25940 +2009 308 13.27140 13.27140 +2009 309 12.95630 12.95630 +2009 310 12.02760 12.02760 +2009 311 12.32070 12.32070 +2009 312 10.78620 10.78620 +2009 313 10.92330 10.92330 +2009 314 10.97730 10.97730 +2009 315 10.83470 10.83470 +2009 316 10.14100 10.14100 +2009 317 10.59500 10.59500 +2009 318 12.55510 12.55510 +2009 319 12.02730 12.02730 +2009 320 12.17820 12.17820 +2009 321 13.66820 13.66820 +2009 322 13.17010 13.17010 +2009 323 12.37510 12.37510 +2009 324 13.80530 13.80530 +2009 325 16.53230 16.53230 +2009 326 15.20290 15.20290 +2009 327 18.15040 18.15040 +2009 328 15.23360 15.23360 +2009 329 14.16890 14.16890 +2009 330 14.02800 14.02800 +2009 331 14.45230 14.45230 +2009 332 16.36300 16.36300 +2009 333 14.06720 14.06720 +2009 334 16.23820 16.23820 +2009 335 15.84770 15.84770 +2009 336 14.03730 14.03730 +2009 337 11.55660 11.55660 +2009 338 12.15820 12.15820 +2009 339 14.25240 14.25240 +2009 340 14.36130 14.36130 +2009 341 15.10040 15.10040 +2009 342 16.53890 16.53890 +2009 343 17.35780 17.35780 +2009 344 17.70960 17.70960 +2009 345 16.17800 16.17800 +2009 346 14.67820 14.67820 +2009 347 15.16960 15.16960 +2009 348 12.39620 12.39620 +2009 349 11.82200 11.82200 +2009 350 13.99730 13.99730 +2009 351 15.01010 15.01010 +2009 352 15.91890 15.91890 +2009 353 15.82280 15.82280 +2009 354 13.54030 13.54030 +2009 355 13.38460 13.38460 +2009 356 14.87800 14.87800 +2009 357 16.07680 16.07680 +2009 358 16.92940 16.92940 +2009 359 17.11400 17.11400 +2009 360 17.09080 17.09080 +2009 361 18.13160 18.13160 +2009 362 17.85990 17.85990 +2009 363 16.05560 16.05560 +2009 364 13.58670 13.58670 +2009 365 15.66230 15.66230 +2010 1 16.26740 16.26740 +2010 2 17.72580 17.72580 +2010 3 16.62140 16.62140 +2010 4 15.62960 15.62960 +2010 5 16.11620 16.11620 +2010 6 16.44060 16.44060 +2010 7 15.15010 15.15010 +2010 8 14.59180 14.59180 +2010 9 15.27830 15.27830 +2010 10 13.81170 13.81170 +2010 11 13.38760 13.38760 +2010 12 14.65410 14.65410 +2010 13 15.83280 15.83280 +2010 14 16.65080 16.65080 +2010 15 16.72330 16.72330 +2010 16 15.97850 15.97850 +2010 17 16.14870 16.14870 +2010 18 17.63310 17.63310 +2010 19 17.46280 17.46280 +2010 20 16.74270 16.74270 +2010 21 15.78240 15.78240 +2010 22 15.90230 15.90230 +2010 23 16.37960 16.37960 +2010 24 17.09740 17.09740 +2010 25 17.24330 17.24330 +2010 26 17.19090 17.19090 +2010 27 17.50410 17.50410 +2010 28 17.71840 17.71840 +2010 29 16.94550 16.94550 +2010 30 17.46020 17.46020 +2010 31 18.55480 18.55480 +2010 32 18.49380 18.49380 +2010 33 17.74880 17.74880 +2010 34 17.70570 17.70570 +2010 35 17.35050 17.35050 +2010 36 17.63720 17.63720 +2010 37 18.80940 18.80940 +2010 38 17.83810 17.83810 +2010 39 18.35250 18.35250 +2010 40 16.89170 16.89170 +2010 41 17.15150 17.15150 +2010 42 17.85920 17.85920 +2010 43 19.02580 19.02580 +2010 44 19.16290 19.16290 +2010 45 18.08570 18.08570 +2010 46 16.59710 16.59710 +2010 47 18.42250 18.42250 +2010 48 19.12660 19.12660 +2010 49 18.53500 18.53500 +2010 50 17.04090 17.04090 +2010 51 16.49360 16.49360 +2010 52 17.80170 17.80170 +2010 53 16.81330 16.81330 +2010 54 17.62780 17.62780 +2010 55 18.08380 18.08380 +2010 56 16.77880 16.77880 +2010 57 16.25890 16.25890 +2010 58 16.48890 16.48890 +2010 59 17.29910 17.29910 +2010 60 17.88780 17.88780 +2010 61 17.16880 17.16880 +2010 62 17.44720 17.44720 +2010 63 18.17840 18.17840 +2010 64 16.36010 16.36010 +2010 65 14.37240 14.37240 +2010 66 14.80590 14.80590 +2010 67 16.41220 16.41220 +2010 68 17.08370 17.08370 +2010 69 16.97590 16.97590 +2010 70 14.64950 14.64950 +2010 71 12.55250 12.55250 +2010 72 15.90910 15.90910 +2010 73 16.25970 16.25970 +2010 74 14.87040 14.87040 +2010 75 13.26660 13.26660 +2010 76 11.80540 11.80540 +2010 77 14.66190 14.66190 +2010 78 16.43420 16.43420 +2010 79 17.57160 17.57160 +2010 80 16.21790 16.21790 +2010 81 15.70780 15.70780 +2010 82 14.49740 14.49740 +2010 83 13.15820 13.15820 +2010 84 15.61380 15.61380 +2010 85 15.75820 15.75820 +2010 86 15.54750 15.54750 +2010 87 13.66920 13.66920 +2010 88 13.12070 13.12070 +2010 89 13.79940 13.79940 +2010 90 14.00630 14.00630 +2010 91 14.14050 14.14050 +2010 92 14.23590 14.23590 +2010 93 15.43350 15.43350 +2010 94 15.99580 15.99580 +2010 95 13.48180 13.48180 +2010 96 11.23250 11.23250 +2010 97 10.36100 10.36100 +2010 98 11.28170 11.28170 +2010 99 11.40950 11.40950 +2010 100 12.52470 12.52470 +2010 101 13.09620 13.09620 +2010 102 13.64880 13.64880 +2010 103 14.90820 14.90820 +2010 104 13.95970 13.95970 +2010 105 13.35650 13.35650 +2010 106 11.28500 11.28500 +2010 107 12.56590 12.56590 +2010 108 12.63990 12.63990 +2010 109 13.60350 13.60350 +2010 110 12.27920 12.27920 +2010 111 12.35230 12.35230 +2010 112 12.02010 12.02010 +2010 113 14.52910 14.52910 +2010 114 13.98160 13.98160 +2010 115 14.60850 14.60850 +2010 116 15.43770 15.43770 +2010 117 14.13340 14.13340 +2010 118 13.37200 13.37200 +2010 119 12.59610 12.59610 +2010 120 12.28960 12.28960 +2010 121 9.65889 9.65889 +2010 122 9.77580 9.77580 +2010 123 11.37490 11.37490 +2010 124 9.36438 9.36438 +2010 125 8.29077 8.29077 +2010 126 10.21840 10.21840 +2010 127 9.79651 9.79651 +2010 128 11.15500 11.15500 +2010 129 12.48780 12.48780 +2010 130 12.28410 12.28410 +2010 131 13.41120 13.41120 +2010 132 14.60430 14.60430 +2010 133 13.23120 13.23120 +2010 134 12.36240 12.36240 +2010 135 12.14080 12.14080 +2010 136 10.91420 10.91420 +2010 137 10.17310 10.17310 +2010 138 9.44342 9.44342 +2010 139 9.62538 9.62538 +2010 140 10.30610 10.30610 +2010 141 10.83950 10.83950 +2010 142 10.44560 10.44560 +2010 143 12.70650 12.70650 +2010 144 10.18130 10.18130 +2010 145 10.53240 10.53240 +2010 146 10.24800 10.24800 +2010 147 10.48120 10.48120 +2010 148 9.28180 9.28180 +2010 149 7.82951 7.82951 +2010 150 7.23759 7.23759 +2010 151 8.52351 8.52351 +2010 152 10.92190 10.92190 +2010 153 10.38770 10.38770 +2010 154 8.09461 8.09461 +2010 155 7.92782 7.92782 +2010 156 12.53910 12.53910 +2010 157 11.79220 11.79220 +2010 158 6.95439 6.95439 +2010 159 4.68864 4.68864 +2010 160 7.38880 7.38880 +2010 161 10.23230 10.23230 +2010 162 9.65201 9.65201 +2010 163 7.67020 7.67020 +2010 164 6.89777 6.89777 +2010 165 6.18249 6.18249 +2010 166 5.65887 5.65887 +2010 167 6.26467 6.26467 +2010 168 7.74331 7.74331 +2010 169 10.66630 10.66630 +2010 170 11.69420 11.69420 +2010 171 9.65720 9.65720 +2010 172 7.30915 7.30915 +2010 173 7.08295 7.08295 +2010 174 6.72992 6.72992 +2010 175 8.84293 8.84293 +2010 176 7.91469 7.91469 +2010 177 7.14428 7.14428 +2010 178 7.96199 7.96199 +2010 179 8.38726 8.38726 +2010 180 7.61887 7.61887 +2010 181 5.72300 5.72300 +2010 182 7.81732 7.81732 +2010 183 6.65306 6.65306 +2010 184 6.56044 6.56044 +2010 185 7.91207 7.91207 +2010 186 9.96278 9.96278 +2010 187 9.76917 9.76917 +2010 188 7.24485 7.24485 +2010 189 5.60803 5.60803 +2010 190 4.67917 4.67917 +2010 191 3.92003 3.92003 +2010 192 5.47726 5.47726 +2010 193 6.10504 6.10504 +2010 194 6.65819 6.65819 +2010 195 7.67772 7.67772 +2010 196 7.50400 7.50400 +2010 197 8.36312 8.36312 +2010 198 7.68352 7.68352 +2010 199 6.31093 6.31093 +2010 200 7.42000 7.42000 +2010 201 7.50507 7.50507 +2010 202 9.87269 9.87269 +2010 203 7.82366 7.82366 +2010 204 8.21856 8.21856 +2010 205 6.56729 6.56729 +2010 206 5.87814 5.87814 +2010 207 7.23342 7.23342 +2010 208 6.44955 6.44955 +2010 209 5.70552 5.70552 +2010 210 5.14025 5.14025 +2010 211 6.60892 6.60892 +2010 212 9.02509 9.02509 +2010 213 10.49650 10.49650 +2010 214 8.70820 8.70820 +2010 215 11.90930 11.90930 +2010 216 10.11250 10.11250 +2010 217 7.89640 7.89640 +2010 218 9.77767 9.77767 +2010 219 8.71944 8.71944 +2010 220 6.46178 6.46178 +2010 221 5.21315 5.21315 +2010 222 4.79977 4.79977 +2010 223 6.59614 6.59614 +2010 224 10.82480 10.82480 +2010 225 12.39260 12.39260 +2010 226 10.64570 10.64570 +2010 227 10.29710 10.29710 +2010 228 10.73920 10.73920 +2010 229 7.80381 7.80381 +2010 230 7.50542 7.50542 +2010 231 7.57985 7.57985 +2010 232 9.15422 9.15422 +2010 233 8.51993 8.51993 +2010 234 7.33374 7.33374 +2010 235 7.20238 7.20238 +2010 236 6.22531 6.22531 +2010 237 10.12860 10.12860 +2010 238 9.30296 9.30296 +2010 239 8.82010 8.82010 +2010 240 8.25878 8.25878 +2010 241 7.59740 7.59740 +2010 242 7.66639 7.66639 +2010 243 8.10580 8.10580 +2010 244 7.66094 7.66094 +2010 245 7.51747 7.51747 +2010 246 6.71351 6.71351 +2010 247 8.28192 8.28192 +2010 248 11.09400 11.09400 +2010 249 11.66300 11.66300 +2010 250 10.67160 10.67160 +2010 251 10.94150 10.94150 +2010 252 10.66840 10.66840 +2010 253 8.86154 8.86154 +2010 254 12.97140 12.97140 +2010 255 10.98810 10.98810 +2010 256 9.53223 9.53223 +2010 257 8.57879 8.57879 +2010 258 8.19308 8.19308 +2010 259 8.73192 8.73192 +2010 260 8.35071 8.35071 +2010 261 9.14741 9.14741 +2010 262 8.90937 8.90937 +2010 263 9.01349 9.01349 +2010 264 7.46051 7.46051 +2010 265 8.06468 8.06468 +2010 266 8.88397 8.88397 +2010 267 10.17980 10.17980 +2010 268 10.99970 10.99970 +2010 269 12.93280 12.93280 +2010 270 11.99290 11.99290 +2010 271 12.15760 12.15760 +2010 272 12.87850 12.87850 +2010 273 10.78630 10.78630 +2010 274 9.93868 9.93868 +2010 275 10.41640 10.41640 +2010 276 10.21660 10.21660 +2010 277 10.18350 10.18350 +2010 278 10.87880 10.87880 +2010 279 10.81490 10.81490 +2010 280 10.87470 10.87470 +2010 281 10.48480 10.48480 +2010 282 9.17156 9.17156 +2010 283 6.45249 6.45249 +2010 284 7.63318 7.63318 +2010 285 10.96410 10.96410 +2010 286 11.99630 11.99630 +2010 287 12.71250 12.71250 +2010 288 12.02740 12.02740 +2010 289 11.37400 11.37400 +2010 290 9.74678 9.74678 +2010 291 8.88397 8.88397 +2010 292 9.87114 9.87114 +2010 293 9.49225 9.49225 +2010 294 10.25470 10.25470 +2010 295 11.94350 11.94350 +2010 296 12.74450 12.74450 +2010 297 13.52420 13.52420 +2010 298 12.68660 12.68660 +2010 299 12.56880 12.56880 +2010 300 11.99520 11.99520 +2010 301 12.91690 12.91690 +2010 302 11.25150 11.25150 +2010 303 9.51588 9.51588 +2010 304 10.19870 10.19870 +2010 305 10.43510 10.43510 +2010 306 11.04990 11.04990 +2010 307 11.62710 11.62710 +2010 308 11.86150 11.86150 +2010 309 10.70150 10.70150 +2010 310 10.73820 10.73820 +2010 311 12.15040 12.15040 +2010 312 12.08210 12.08210 +2010 313 13.14380 13.14380 +2010 314 12.87560 12.87560 +2010 315 14.50140 14.50140 +2010 316 14.90840 14.90840 +2010 317 15.90210 15.90210 +2010 318 13.77170 13.77170 +2010 319 14.50640 14.50640 +2010 320 16.33350 16.33350 +2010 321 16.53860 16.53860 +2010 322 16.55460 16.55460 +2010 323 16.49290 16.49290 +2010 324 15.13770 15.13770 +2010 325 13.13000 13.13000 +2010 326 11.71830 11.71830 +2010 327 11.65810 11.65810 +2010 328 14.72410 14.72410 +2010 329 15.61820 15.61820 +2010 330 15.50160 15.50160 +2010 331 17.19390 17.19390 +2010 332 17.39310 17.39310 +2010 333 17.71060 17.71060 +2010 334 17.05710 17.05710 +2010 335 15.84180 15.84180 +2010 336 16.11310 16.11310 +2010 337 16.09030 16.09030 +2010 338 16.46270 16.46270 +2010 339 15.94210 15.94210 +2010 340 17.24760 17.24760 +2010 341 13.24280 13.24280 +2010 342 13.35870 13.35870 +2010 343 14.85750 14.85750 +2010 344 15.29140 15.29140 +2010 345 19.51120 19.51120 +2010 346 17.37660 17.37660 +2010 347 17.85800 17.85800 +2010 348 18.68740 18.68740 +2010 349 15.35420 15.35420 +2010 350 16.13520 16.13520 +2010 351 17.28370 17.28370 +2010 352 17.50910 17.50910 +2010 353 18.31890 18.31890 +2010 354 19.79640 19.79640 +2010 355 19.97190 19.97190 +2010 356 17.71110 17.71110 +2010 357 15.46140 15.46140 +2010 358 14.94770 14.94770 +2010 359 15.58220 15.58220 +2010 360 16.75690 16.75690 +2010 361 17.07820 17.07820 +2010 362 15.54130 15.54130 +2010 363 16.44320 16.44320 +2010 364 18.40220 18.40220 +2010 365 17.45040 17.45040 +2011 1 18.44190 18.44190 +2011 2 19.37930 19.37930 +2011 3 19.07990 19.07990 +2011 4 18.13710 18.13710 +2011 5 18.41660 18.41660 +2011 6 20.38810 20.38810 +2011 7 18.21570 18.21570 +2011 8 15.88240 15.88240 +2011 9 16.19000 16.19000 +2011 10 16.11810 16.11810 +2011 11 17.02110 17.02110 +2011 12 16.08040 16.08040 +2011 13 16.71060 16.71060 +2011 14 17.97200 17.97200 +2011 15 18.76290 18.76290 +2011 16 18.73920 18.73920 +2011 17 19.33250 19.33250 +2011 18 19.53800 19.53800 +2011 19 17.32480 17.32480 +2011 20 15.67780 15.67780 +2011 21 15.08910 15.08910 +2011 22 16.54660 16.54660 +2011 23 17.52890 17.52890 +2011 24 16.42220 16.42220 +2011 25 18.64670 18.64670 +2011 26 19.50600 19.50600 +2011 27 17.97060 17.97060 +2011 28 17.00140 17.00140 +2011 29 15.04700 15.04700 +2011 30 16.44390 16.44390 +2011 31 17.39750 17.39750 +2011 32 17.90250 17.90250 +2011 33 20.50960 20.50960 +2011 34 20.73270 20.73270 +2011 35 21.40820 21.40820 +2011 36 20.48210 20.48210 +2011 37 19.84240 19.84240 +2011 38 20.18960 20.18960 +2011 39 17.86040 17.86040 +2011 40 17.64290 17.64290 +2011 41 17.79960 17.79960 +2011 42 18.20940 18.20940 +2011 43 19.36710 19.36710 +2011 44 20.31470 20.31470 +2011 45 19.63620 19.63620 +2011 46 17.48690 17.48690 +2011 47 16.11130 16.11130 +2011 48 16.24200 16.24200 +2011 49 17.64760 17.64760 +2011 50 17.66630 17.66630 +2011 51 18.46590 18.46590 +2011 52 18.22720 18.22720 +2011 53 19.09070 19.09070 +2011 54 18.27560 18.27560 +2011 55 18.02720 18.02720 +2011 56 16.86240 16.86240 +2011 57 16.20290 16.20290 +2011 58 15.66460 15.66460 +2011 59 16.84280 16.84280 +2011 60 17.66810 17.66810 +2011 61 17.96600 17.96600 +2011 62 18.45410 18.45410 +2011 63 17.65140 17.65140 +2011 64 14.26900 14.26900 +2011 65 11.89170 11.89170 +2011 66 12.52940 12.52940 +2011 67 13.44380 13.44380 +2011 68 13.83300 13.83300 +2011 69 14.68010 14.68010 +2011 70 15.45090 15.45090 +2011 71 16.12200 16.12200 +2011 72 17.14310 17.14310 +2011 73 16.36170 16.36170 +2011 74 16.53860 16.53860 +2011 75 16.85930 16.85930 +2011 76 16.24460 16.24460 +2011 77 15.25820 15.25820 +2011 78 15.11900 15.11900 +2011 79 14.65000 14.65000 +2011 80 16.53680 16.53680 +2011 81 15.45800 15.45800 +2011 82 14.02730 14.02730 +2011 83 14.21520 14.21520 +2011 84 16.69140 16.69140 +2011 85 18.05030 18.05030 +2011 86 14.51950 14.51950 +2011 87 13.60850 13.60850 +2011 88 13.81980 13.81980 +2011 89 13.67650 13.67650 +2011 90 14.33170 14.33170 +2011 91 12.71670 12.71670 +2011 92 14.19730 14.19730 +2011 93 14.52390 14.52390 +2011 94 11.36230 11.36230 +2011 95 10.50590 10.50590 +2011 96 11.86610 11.86610 +2011 97 10.85260 10.85260 +2011 98 12.97960 12.97960 +2011 99 13.80880 13.80880 +2011 100 13.69380 13.69380 +2011 101 13.13020 13.13020 +2011 102 13.29850 13.29850 +2011 103 12.43580 12.43580 +2011 104 13.40500 13.40500 +2011 105 14.14820 14.14820 +2011 106 14.01550 14.01550 +2011 107 9.29166 9.29166 +2011 108 9.49416 9.49416 +2011 109 12.13510 12.13510 +2011 110 11.64020 11.64020 +2011 111 12.39600 12.39600 +2011 112 12.87910 12.87910 +2011 113 13.63650 13.63650 +2011 114 13.68380 13.68380 +2011 115 12.63110 12.63110 +2011 116 13.33410 13.33410 +2011 117 12.16220 12.16220 +2011 118 9.88882 9.88882 +2011 119 10.95290 10.95290 +2011 120 13.33650 13.33650 +2011 121 13.07670 13.07670 +2011 122 15.69940 15.69940 +2011 123 15.31950 15.31950 +2011 124 14.00900 14.00900 +2011 125 14.19850 14.19850 +2011 126 13.96580 13.96580 +2011 127 13.33070 13.33070 +2011 128 11.87520 11.87520 +2011 129 11.89500 11.89500 +2011 130 14.69260 14.69260 +2011 131 15.87110 15.87110 +2011 132 13.86680 13.86680 +2011 133 12.71680 12.71680 +2011 134 11.55750 11.55750 +2011 135 10.58740 10.58740 +2011 136 11.72960 11.72960 +2011 137 8.27923 8.27923 +2011 138 8.21650 8.21650 +2011 139 9.20846 9.20846 +2011 140 10.45140 10.45140 +2011 141 9.74684 9.74684 +2011 142 10.24070 10.24070 +2011 143 9.50683 9.50683 +2011 144 12.34110 12.34110 +2011 145 14.60290 14.60290 +2011 146 12.35820 12.35820 +2011 147 10.42770 10.42770 +2011 148 8.22264 8.22264 +2011 149 8.45913 8.45913 +2011 150 8.62713 8.62713 +2011 151 9.75166 9.75166 +2011 152 8.58467 8.58467 +2011 153 10.14900 10.14900 +2011 154 11.56110 11.56110 +2011 155 13.81220 13.81220 +2011 156 12.40260 12.40260 +2011 157 11.83220 11.83220 +2011 158 10.11390 10.11390 +2011 159 8.68921 8.68921 +2011 160 11.28020 11.28020 +2011 161 10.82210 10.82210 +2011 162 10.18620 10.18620 +2011 163 9.41435 9.41435 +2011 164 8.00558 8.00558 +2011 165 9.11404 9.11404 +2011 166 8.34357 8.34357 +2011 167 6.96570 6.96570 +2011 168 11.28390 11.28390 +2011 169 11.04740 11.04740 +2011 170 10.02470 10.02470 +2011 171 9.60811 9.60811 +2011 172 8.18954 8.18954 +2011 173 9.21598 9.21598 +2011 174 8.79887 8.79887 +2011 175 8.21379 8.21379 +2011 176 6.71712 6.71712 +2011 177 6.54675 6.54675 +2011 178 7.91970 7.91970 +2011 179 7.24744 7.24744 +2011 180 7.17573 7.17573 +2011 181 6.60719 6.60719 +2011 182 6.63442 6.63442 +2011 183 6.31820 6.31820 +2011 184 7.66890 7.66890 +2011 185 9.24820 9.24820 +2011 186 8.57822 8.57822 +2011 187 8.70057 8.70057 +2011 188 7.82662 7.82662 +2011 189 9.26430 9.26430 +2011 190 9.43686 9.43686 +2011 191 9.43994 9.43994 +2011 192 7.65658 7.65658 +2011 193 9.39214 9.39214 +2011 194 8.46364 8.46364 +2011 195 4.90320 4.90320 +2011 196 4.55274 4.55274 +2011 197 6.19445 6.19445 +2011 198 5.73359 5.73359 +2011 199 5.47674 5.47674 +2011 200 6.58106 6.58106 +2011 201 7.79375 7.79375 +2011 202 9.73934 9.73934 +2011 203 10.34190 10.34190 +2011 204 8.46984 8.46984 +2011 205 3.64550 3.64550 +2011 206 3.68788 3.68788 +2011 207 6.42793 6.42793 +2011 208 8.51375 8.51375 +2011 209 8.10405 8.10405 +2011 210 8.19272 8.19272 +2011 211 5.95909 5.95909 +2011 212 5.72410 5.72410 +2011 213 6.47927 6.47927 +2011 214 5.77095 5.77095 +2011 215 6.75981 6.75981 +2011 216 5.48728 5.48728 +2011 217 6.46921 6.46921 +2011 218 8.77519 8.77519 +2011 219 6.35665 6.35665 +2011 220 7.78763 7.78763 +2011 221 7.25586 7.25586 +2011 222 8.13707 8.13707 +2011 223 8.43195 8.43195 +2011 224 7.91873 7.91873 +2011 225 6.63296 6.63296 +2011 226 2.40330 2.40330 +2011 227 1.94747 1.94747 +2011 228 3.53740 3.53740 +2011 229 4.33616 4.33616 +2011 230 5.01839 5.01839 +2011 231 5.53679 5.53679 +2011 232 5.30432 5.30432 +2011 233 6.16911 6.16911 +2011 234 7.85455 7.85455 +2011 235 7.72722 7.72722 +2011 236 8.73718 8.73718 +2011 237 7.68899 7.68899 +2011 238 7.81542 7.81542 +2011 239 8.44820 8.44820 +2011 240 8.21565 8.21565 +2011 241 11.81760 11.81760 +2011 242 10.77580 10.77580 +2011 243 8.39134 8.39134 +2011 244 6.76109 6.76109 +2011 245 6.26426 6.26426 +2011 246 8.75759 8.75759 +2011 247 8.52659 8.52659 +2011 248 8.46129 8.46129 +2011 249 7.92600 7.92600 +2011 250 8.09413 8.09413 +2011 251 8.46705 8.46705 +2011 252 8.77461 8.77461 +2011 253 9.24468 9.24468 +2011 254 8.78586 8.78586 +2011 255 8.09351 8.09351 +2011 256 8.61297 8.61297 +2011 257 9.19501 9.19501 +2011 258 7.91697 7.91697 +2011 259 8.27476 8.27476 +2011 260 7.18254 7.18254 +2011 261 7.76389 7.76389 +2011 262 7.75616 7.75616 +2011 263 7.20872 7.20872 +2011 264 8.04252 8.04252 +2011 265 8.85537 8.85537 +2011 266 9.98198 9.98198 +2011 267 7.96751 7.96751 +2011 268 6.81658 6.81658 +2011 269 7.26569 7.26569 +2011 270 8.11448 8.11448 +2011 271 9.18146 9.18146 +2011 272 9.37247 9.37247 +2011 273 8.88433 8.88433 +2011 274 11.37910 11.37910 +2011 275 12.59220 12.59220 +2011 276 13.41250 13.41250 +2011 277 10.70800 10.70800 +2011 278 10.63890 10.63890 +2011 279 11.15340 11.15340 +2011 280 9.57866 9.57866 +2011 281 9.15359 9.15359 +2011 282 9.84155 9.84155 +2011 283 13.80590 13.80590 +2011 284 12.61850 12.61850 +2011 285 12.33680 12.33680 +2011 286 9.39496 9.39496 +2011 287 9.50668 9.50668 +2011 288 9.63179 9.63179 +2011 289 10.08650 10.08650 +2011 290 10.70160 10.70160 +2011 291 8.62133 8.62133 +2011 292 10.28580 10.28580 +2011 293 13.10290 13.10290 +2011 294 12.86260 12.86260 +2011 295 12.22620 12.22620 +2011 296 12.61070 12.61070 +2011 297 11.87610 11.87610 +2011 298 12.21150 12.21150 +2011 299 12.59480 12.59480 +2011 300 13.17230 13.17230 +2011 301 12.58620 12.58620 +2011 302 13.41190 13.41190 +2011 303 13.05510 13.05510 +2011 304 13.13020 13.13020 +2011 305 14.87270 14.87270 +2011 306 12.94310 12.94310 +2011 307 11.95190 11.95190 +2011 308 10.04720 10.04720 +2011 309 9.09945 9.09945 +2011 310 12.53470 12.53470 +2011 311 12.90500 12.90500 +2011 312 15.13290 15.13290 +2011 313 13.28170 13.28170 +2011 314 12.05820 12.05820 +2011 315 13.02210 13.02210 +2011 316 12.94460 12.94460 +2011 317 11.63390 11.63390 +2011 318 12.20670 12.20670 +2011 319 13.62310 13.62310 +2011 320 11.92990 11.92990 +2011 321 11.38020 11.38020 +2011 322 11.47840 11.47840 +2011 323 11.83100 11.83100 +2011 324 13.80850 13.80850 +2011 325 13.06870 13.06870 +2011 326 14.09520 14.09520 +2011 327 13.64110 13.64110 +2011 328 12.70670 12.70670 +2011 329 13.40110 13.40110 +2011 330 14.11130 14.11130 +2011 331 15.00010 15.00010 +2011 332 15.28230 15.28230 +2011 333 13.22030 13.22030 +2011 334 12.53550 12.53550 +2011 335 13.65880 13.65880 +2011 336 14.44060 14.44060 +2011 337 14.60640 14.60640 +2011 338 16.98750 16.98750 +2011 339 16.34670 16.34670 +2011 340 14.82220 14.82220 +2011 341 15.36680 15.36680 +2011 342 15.57150 15.57150 +2011 343 14.59590 14.59590 +2011 344 13.44460 13.44460 +2011 345 13.17560 13.17560 +2011 346 14.75810 14.75810 +2011 347 14.87020 14.87020 +2011 348 14.40650 14.40650 +2011 349 15.02670 15.02670 +2011 350 13.95360 13.95360 +2011 351 11.28860 11.28860 +2011 352 12.11860 12.11860 +2011 353 12.87530 12.87530 +2011 354 14.03750 14.03750 +2011 355 13.63520 13.63520 +2011 356 13.67050 13.67050 +2011 357 13.74030 13.74030 +2011 358 14.80730 14.80730 +2011 359 14.82150 14.82150 +2011 360 14.53010 14.53010 +2011 361 14.70600 14.70600 +2011 362 15.52090 15.52090 +2011 363 16.21490 16.21490 +2011 364 17.23110 17.23110 +2011 365 17.34970 17.34970 +2012 1 17.59650 17.59650 +2012 2 14.58260 14.58260 +2012 3 15.96820 15.96820 +2012 4 16.01030 16.01030 +2012 5 15.52350 15.52350 +2012 6 14.94650 14.94650 +2012 7 15.82600 15.82600 +2012 8 16.83840 16.83840 +2012 9 16.55520 16.55520 +2012 10 17.62980 17.62980 +2012 11 17.99430 17.99430 +2012 12 16.31410 16.31410 +2012 13 15.29640 15.29640 +2012 14 15.31190 15.31190 +2012 15 14.87440 14.87440 +2012 16 15.03240 15.03240 +2012 17 16.28480 16.28480 +2012 18 15.39990 15.39990 +2012 19 16.76870 16.76870 +2012 20 16.83270 16.83270 +2012 21 13.74320 13.74320 +2012 22 12.86450 12.86450 +2012 23 14.95190 14.95190 +2012 24 17.04980 17.04980 +2012 25 15.88060 15.88060 +2012 26 13.72610 13.72610 +2012 27 13.40020 13.40020 +2012 28 15.89490 15.89490 +2012 29 16.04080 16.04080 +2012 30 16.66380 16.66380 +2012 31 16.84020 16.84020 +2012 32 17.48060 17.48060 +2012 33 14.85910 14.85910 +2012 34 15.83890 15.83890 +2012 35 15.88230 15.88230 +2012 36 15.41380 15.41380 +2012 37 15.52920 15.52920 +2012 38 16.08200 16.08200 +2012 39 16.90290 16.90290 +2012 40 16.75780 16.75780 +2012 41 16.30840 16.30840 +2012 42 14.88940 14.88940 +2012 43 15.66150 15.66150 +2012 44 16.62600 16.62600 +2012 45 15.82330 15.82330 +2012 46 15.49810 15.49810 +2012 47 15.85260 15.85260 +2012 48 16.65520 16.65520 +2012 49 16.37860 16.37860 +2012 50 16.24470 16.24470 +2012 51 16.29520 16.29520 +2012 52 16.57440 16.57440 +2012 53 17.97230 17.97230 +2012 54 16.02000 16.02000 +2012 55 14.41570 14.41570 +2012 56 13.93440 13.93440 +2012 57 13.46080 13.46080 +2012 58 11.84320 11.84320 +2012 59 14.18220 14.18220 +2012 60 14.10050 14.10050 +2012 61 12.73500 12.73500 +2012 62 12.39510 12.39510 +2012 63 12.05580 12.05580 +2012 64 12.28650 12.28650 +2012 65 13.38580 13.38580 +2012 66 14.45320 14.45320 +2012 67 14.57310 14.57310 +2012 68 13.69340 13.69340 +2012 69 14.86690 14.86690 +2012 70 15.68310 15.68310 +2012 71 16.69790 16.69790 +2012 72 14.44070 14.44070 +2012 73 12.46450 12.46450 +2012 74 13.58330 13.58330 +2012 75 13.50330 13.50330 +2012 76 13.66990 13.66990 +2012 77 14.93870 14.93870 +2012 78 13.48660 13.48660 +2012 79 16.09550 16.09550 +2012 80 16.79250 16.79250 +2012 81 16.44510 16.44510 +2012 82 16.84110 16.84110 +2012 83 15.91590 15.91590 +2012 84 15.44160 15.44160 +2012 85 12.47770 12.47770 +2012 86 13.17750 13.17750 +2012 87 13.49550 13.49550 +2012 88 13.10360 13.10360 +2012 89 12.76680 12.76680 +2012 90 13.75040 13.75040 +2012 91 14.02750 14.02750 +2012 92 14.86370 14.86370 +2012 93 15.97950 15.97950 +2012 94 16.57670 16.57670 +2012 95 15.81920 15.81920 +2012 96 13.62140 13.62140 +2012 97 13.09630 13.09630 +2012 98 13.81150 13.81150 +2012 99 14.73860 14.73860 +2012 100 13.63620 13.63620 +2012 101 13.64700 13.64700 +2012 102 14.53600 14.53600 +2012 103 13.06310 13.06310 +2012 104 14.03310 14.03310 +2012 105 12.55700 12.55700 +2012 106 13.28810 13.28810 +2012 107 13.06720 13.06720 +2012 108 11.44350 11.44350 +2012 109 11.39920 11.39920 +2012 110 10.73510 10.73510 +2012 111 10.92990 10.92990 +2012 112 10.67730 10.67730 +2012 113 11.25680 11.25680 +2012 114 11.94820 11.94820 +2012 115 11.75540 11.75540 +2012 116 12.37320 12.37320 +2012 117 14.53610 14.53610 +2012 118 12.40540 12.40540 +2012 119 11.21860 11.21860 +2012 120 11.72460 11.72460 +2012 121 10.41760 10.41760 +2012 122 7.55821 7.55821 +2012 123 7.94518 7.94518 +2012 124 8.32443 8.32443 +2012 125 8.96392 8.96392 +2012 126 9.57537 9.57537 +2012 127 8.92048 8.92048 +2012 128 12.15180 12.15180 +2012 129 14.21890 14.21890 +2012 130 13.49250 13.49250 +2012 131 10.70600 10.70600 +2012 132 9.88504 9.88504 +2012 133 11.51940 11.51940 +2012 134 12.25520 12.25520 +2012 135 10.05560 10.05560 +2012 136 8.30735 8.30735 +2012 137 7.60066 7.60066 +2012 138 10.16390 10.16390 +2012 139 8.42201 8.42201 +2012 140 7.20690 7.20690 +2012 141 6.19511 6.19511 +2012 142 5.99394 5.99394 +2012 143 6.32330 6.32330 +2012 144 7.54205 7.54205 +2012 145 10.73380 10.73380 +2012 146 9.31642 9.31642 +2012 147 11.95970 11.95970 +2012 148 12.36570 12.36570 +2012 149 8.31575 8.31575 +2012 150 5.62424 5.62424 +2012 151 9.33776 9.33776 +2012 152 7.91349 7.91349 +2012 153 7.17940 7.17940 +2012 154 8.11567 8.11567 +2012 155 8.83928 8.83928 +2012 156 10.40570 10.40570 +2012 157 12.89970 12.89970 +2012 158 9.46419 9.46419 +2012 159 7.20755 7.20755 +2012 160 8.91870 8.91870 +2012 161 8.62853 8.62853 +2012 162 9.45367 9.45367 +2012 163 7.00716 7.00716 +2012 164 4.85778 4.85778 +2012 165 5.35510 5.35510 +2012 166 5.34952 5.34952 +2012 167 4.25611 4.25611 +2012 168 4.12562 4.12562 +2012 169 7.10677 7.10677 +2012 170 9.67743 9.67743 +2012 171 9.85141 9.85141 +2012 172 8.89082 8.89082 +2012 173 7.01885 7.01885 +2012 174 8.75475 8.75475 +2012 175 9.41379 9.41379 +2012 176 6.95567 6.95567 +2012 177 7.01013 7.01013 +2012 178 6.14749 6.14749 +2012 179 8.05162 8.05162 +2012 180 6.51646 6.51646 +2012 181 4.21398 4.21398 +2012 182 4.91820 4.91820 +2012 183 4.76353 4.76353 +2012 184 5.37238 5.37238 +2012 185 6.78648 6.78648 +2012 186 6.12375 6.12375 +2012 187 7.34918 7.34918 +2012 188 6.22335 6.22335 +2012 189 5.35342 5.35342 +2012 190 6.02151 6.02151 +2012 191 5.25752 5.25752 +2012 192 4.68393 4.68393 +2012 193 5.20734 5.20734 +2012 194 6.83701 6.83701 +2012 195 8.43473 8.43473 +2012 196 10.64820 10.64820 +2012 197 11.48150 11.48150 +2012 198 8.80159 8.80159 +2012 199 6.26416 6.26416 +2012 200 5.56078 5.56078 +2012 201 6.53254 6.53254 +2012 202 8.86454 8.86454 +2012 203 9.80832 9.80832 +2012 204 10.31260 10.31260 +2012 205 11.60050 11.60050 +2012 206 9.62706 9.62706 +2012 207 7.73475 7.73475 +2012 208 5.43557 5.43557 +2012 209 5.21417 5.21417 +2012 210 7.98460 7.98460 +2012 211 9.26950 9.26950 +2012 212 7.78682 7.78682 +2012 213 7.65027 7.65027 +2012 214 8.64109 8.64109 +2012 215 8.95758 8.95758 +2012 216 8.86118 8.86118 +2012 217 8.05159 8.05159 +2012 218 7.76216 7.76216 +2012 219 8.51166 8.51166 +2012 220 7.39323 7.39323 +2012 221 5.94285 5.94285 +2012 222 7.52495 7.52495 +2012 223 8.13931 8.13931 +2012 224 10.52140 10.52140 +2012 225 8.62421 8.62421 +2012 226 8.07997 8.07997 +2012 227 7.75923 7.75923 +2012 228 7.51872 7.51872 +2012 229 8.12192 8.12192 +2012 230 8.42146 8.42146 +2012 231 8.49724 8.49724 +2012 232 9.48441 9.48441 +2012 233 9.05441 9.05441 +2012 234 8.36332 8.36332 +2012 235 7.09747 7.09747 +2012 236 6.68933 6.68933 +2012 237 7.92716 7.92716 +2012 238 8.59140 8.59140 +2012 239 9.39789 9.39789 +2012 240 7.52599 7.52599 +2012 241 6.67206 6.67206 +2012 242 7.99137 7.99137 +2012 243 8.76635 8.76635 +2012 244 6.17513 6.17513 +2012 245 8.76118 8.76118 +2012 246 10.06810 10.06810 +2012 247 8.08873 8.08873 +2012 248 9.10802 9.10802 +2012 249 10.39160 10.39160 +2012 250 10.76650 10.76650 +2012 251 10.83740 10.83740 +2012 252 9.28471 9.28471 +2012 253 8.62929 8.62929 +2012 254 7.82758 7.82758 +2012 255 4.85945 4.85945 +2012 256 5.65471 5.65471 +2012 257 7.35265 7.35265 +2012 258 8.61843 8.61843 +2012 259 10.59810 10.59810 +2012 260 10.07950 10.07950 +2012 261 9.35710 9.35710 +2012 262 8.02099 8.02099 +2012 263 8.57246 8.57246 +2012 264 7.66551 7.66551 +2012 265 7.56819 7.56819 +2012 266 7.55126 7.55126 +2012 267 7.87706 7.87706 +2012 268 8.78641 8.78641 +2012 269 9.96503 9.96503 +2012 270 10.29270 10.29270 +2012 271 11.73990 11.73990 +2012 272 12.73620 12.73620 +2012 273 12.04760 12.04760 +2012 274 10.18960 10.18960 +2012 275 8.84724 8.84724 +2012 276 9.81438 9.81438 +2012 277 9.46713 9.46713 +2012 278 9.59518 9.59518 +2012 279 10.41510 10.41510 +2012 280 8.74342 8.74342 +2012 281 10.32530 10.32530 +2012 282 11.73750 11.73750 +2012 283 10.38990 10.38990 +2012 284 10.37000 10.37000 +2012 285 10.81520 10.81520 +2012 286 11.54440 11.54440 +2012 287 9.42227 9.42227 +2012 288 9.05310 9.05310 +2012 289 9.57777 9.57777 +2012 290 11.27950 11.27950 +2012 291 10.18900 10.18900 +2012 292 9.15777 9.15777 +2012 293 8.45202 8.45202 +2012 294 11.21270 11.21270 +2012 295 12.07740 12.07740 +2012 296 8.42243 8.42243 +2012 297 8.59996 8.59996 +2012 298 9.37495 9.37495 +2012 299 11.01080 11.01080 +2012 300 12.47160 12.47160 +2012 301 11.94300 11.94300 +2012 302 13.51280 13.51280 +2012 303 14.22030 14.22030 +2012 304 14.11620 14.11620 +2012 305 13.71180 13.71180 +2012 306 14.02600 14.02600 +2012 307 12.13600 12.13600 +2012 308 9.72012 9.72012 +2012 309 9.94610 9.94610 +2012 310 10.03780 10.03780 +2012 311 9.61546 9.61546 +2012 312 9.82123 9.82123 +2012 313 11.28860 11.28860 +2012 314 13.46250 13.46250 +2012 315 12.66660 12.66660 +2012 316 11.55620 11.55620 +2012 317 10.23940 10.23940 +2012 318 10.44630 10.44630 +2012 319 10.85010 10.85010 +2012 320 11.95630 11.95630 +2012 321 11.25020 11.25020 +2012 322 10.83800 10.83800 +2012 323 11.79030 11.79030 +2012 324 12.03160 12.03160 +2012 325 12.67760 12.67760 +2012 326 13.40350 13.40350 +2012 327 13.53680 13.53680 +2012 328 12.86280 12.86280 +2012 329 14.49350 14.49350 +2012 330 14.59700 14.59700 +2012 331 15.80220 15.80220 +2012 332 13.70690 13.70690 +2012 333 13.69970 13.69970 +2012 334 12.54970 12.54970 +2012 335 13.13610 13.13610 +2012 336 14.35370 14.35370 +2012 337 17.06010 17.06010 +2012 338 14.68050 14.68050 +2012 339 15.53880 15.53880 +2012 340 16.64940 16.64940 +2012 341 12.03290 12.03290 +2012 342 13.04040 13.04040 +2012 343 14.85240 14.85240 +2012 344 15.42200 15.42200 +2012 345 15.74790 15.74790 +2012 346 15.29940 15.29940 +2012 347 14.43440 14.43440 +2012 348 15.55710 15.55710 +2012 349 16.44040 16.44040 +2012 350 16.54250 16.54250 +2012 351 16.72380 16.72380 +2012 352 17.39370 17.39370 +2012 353 19.20780 19.20780 +2012 354 17.96620 17.96620 +2012 355 17.23410 17.23410 +2012 356 18.03380 18.03380 +2012 357 18.61730 18.61730 +2012 358 18.83050 18.83050 +2012 359 18.65960 18.65960 +2012 360 17.82460 17.82460 +2012 361 18.27030 18.27030 +2012 362 16.67010 16.67010 +2012 363 18.13280 18.13280 +2012 364 16.85560 16.85560 +2012 365 15.44430 15.44430 +2012 366 15.68830 15.68830 +2013 1 16.09570 16.09570 +2013 2 14.66740 14.66740 +2013 3 13.86580 13.86580 +2013 4 16.02210 16.02210 +2013 5 16.64670 16.64670 +2013 6 19.20480 19.20480 +2013 7 15.39510 15.39510 +2013 8 17.56710 17.56710 +2013 9 18.81500 18.81500 +2013 10 19.76840 19.76840 +2013 11 19.91720 19.91720 +2013 12 19.44970 19.44970 +2013 13 18.45390 18.45390 +2013 14 16.88410 16.88410 +2013 15 15.09170 15.09170 +2013 16 13.69870 13.69870 +2013 17 13.36110 13.36110 +2013 18 15.21250 15.21250 +2013 19 18.75080 18.75080 +2013 20 17.65300 17.65300 +2013 21 17.69780 17.69780 +2013 22 17.85090 17.85090 +2013 23 18.64830 18.64830 +2013 24 17.97980 17.97980 +2013 25 15.69130 15.69130 +2013 26 16.98250 16.98250 +2013 27 17.52120 17.52120 +2013 28 17.43700 17.43700 +2013 29 17.23230 17.23230 +2013 30 17.67790 17.67790 +2013 31 16.93610 16.93610 +2013 32 17.45270 17.45270 +2013 33 18.26390 18.26390 +2013 34 18.54210 18.54210 +2013 35 15.85410 15.85410 +2013 36 14.24040 14.24040 +2013 37 15.77910 15.77910 +2013 38 16.79610 16.79610 +2013 39 18.04380 18.04380 +2013 40 17.49920 17.49920 +2013 41 17.34830 17.34830 +2013 42 17.26010 17.26010 +2013 43 16.14080 16.14080 +2013 44 16.34720 16.34720 +2013 45 17.00490 17.00490 +2013 46 17.62820 17.62820 +2013 47 17.66650 17.66650 +2013 48 17.75970 17.75970 +2013 49 18.03910 18.03910 +2013 50 17.46760 17.46760 +2013 51 18.18870 18.18870 +2013 52 18.12220 18.12220 +2013 53 17.32350 17.32350 +2013 54 17.07610 17.07610 +2013 55 17.05430 17.05430 +2013 56 16.53250 16.53250 +2013 57 17.26400 17.26400 +2013 58 17.44320 17.44320 +2013 59 19.23450 19.23450 +2013 60 19.75940 19.75940 +2013 61 19.53590 19.53590 +2013 62 18.23820 18.23820 +2013 63 15.25560 15.25560 +2013 64 16.24790 16.24790 +2013 65 17.29670 17.29670 +2013 66 18.00350 18.00350 +2013 67 16.97070 16.97070 +2013 68 17.89520 17.89520 +2013 69 18.20790 18.20790 +2013 70 17.65750 17.65750 +2013 71 16.60720 16.60720 +2013 72 16.52370 16.52370 +2013 73 17.04500 17.04500 +2013 74 16.95650 16.95650 +2013 75 17.43800 17.43800 +2013 76 18.94850 18.94850 +2013 77 16.75900 16.75900 +2013 78 13.78330 13.78330 +2013 79 13.72780 13.72780 +2013 80 14.03840 14.03840 +2013 81 14.21860 14.21860 +2013 82 14.24550 14.24550 +2013 83 14.69010 14.69010 +2013 84 16.29360 16.29360 +2013 85 16.74120 16.74120 +2013 86 16.85300 16.85300 +2013 87 15.66520 15.66520 +2013 88 15.68620 15.68620 +2013 89 15.84510 15.84510 +2013 90 17.37260 17.37260 +2013 91 16.55730 16.55730 +2013 92 17.08710 17.08710 +2013 93 15.18370 15.18370 +2013 94 13.54220 13.54220 +2013 95 11.82380 11.82380 +2013 96 11.18360 11.18360 +2013 97 11.08500 11.08500 +2013 98 11.61280 11.61280 +2013 99 11.71420 11.71420 +2013 100 13.31300 13.31300 +2013 101 13.41270 13.41270 +2013 102 14.49850 14.49850 +2013 103 14.18510 14.18510 +2013 104 14.11720 14.11720 +2013 105 15.01010 15.01010 +2013 106 16.60120 16.60120 +2013 107 14.65290 14.65290 +2013 108 12.95560 12.95560 +2013 109 12.71540 12.71540 +2013 110 14.38900 14.38900 +2013 111 14.24000 14.24000 +2013 112 12.60520 12.60520 +2013 113 13.28500 13.28500 +2013 114 13.94320 13.94320 +2013 115 13.18900 13.18900 +2013 116 14.16980 14.16980 +2013 117 14.16730 14.16730 +2013 118 14.80210 14.80210 +2013 119 15.08540 15.08540 +2013 120 12.69410 12.69410 +2013 121 12.14830 12.14830 +2013 122 13.66130 13.66130 +2013 123 13.56910 13.56910 +2013 124 12.42660 12.42660 +2013 125 10.45680 10.45680 +2013 126 11.00930 11.00930 +2013 127 9.98455 9.98455 +2013 128 10.55240 10.55240 +2013 129 10.81560 10.81560 +2013 130 9.37974 9.37974 +2013 131 11.00550 11.00550 +2013 132 12.28980 12.28980 +2013 133 11.96520 11.96520 +2013 134 13.00650 13.00650 +2013 135 11.10190 11.10190 +2013 136 12.21280 12.21280 +2013 137 13.00500 13.00500 +2013 138 11.68120 11.68120 +2013 139 11.05150 11.05150 +2013 140 9.43600 9.43600 +2013 141 10.05910 10.05910 +2013 142 10.12820 10.12820 +2013 143 8.92021 8.92021 +2013 144 10.09140 10.09140 +2013 145 12.55200 12.55200 +2013 146 10.89490 10.89490 +2013 147 5.79016 5.79016 +2013 148 4.85397 4.85397 +2013 149 6.22239 6.22239 +2013 150 7.86115 7.86115 +2013 151 9.81770 9.81770 +2013 152 8.94224 8.94224 +2013 153 8.05959 8.05959 +2013 154 9.96696 9.96696 +2013 155 10.28650 10.28650 +2013 156 8.99300 8.99300 +2013 157 8.55429 8.55429 +2013 158 7.89402 7.89402 +2013 159 9.14900 9.14900 +2013 160 9.57171 9.57171 +2013 161 10.35190 10.35190 +2013 162 11.17640 11.17640 +2013 163 9.18570 9.18570 +2013 164 8.91430 8.91430 +2013 165 7.43056 7.43056 +2013 166 11.45440 11.45440 +2013 167 11.58250 11.58250 +2013 168 11.39520 11.39520 +2013 169 10.35250 10.35250 +2013 170 6.36368 6.36368 +2013 171 5.42987 5.42987 +2013 172 6.12904 6.12904 +2013 173 4.80756 4.80756 +2013 174 5.58380 5.58380 +2013 175 7.38364 7.38364 +2013 176 6.15654 6.15654 +2013 177 6.00767 6.00767 +2013 178 6.93853 6.93853 +2013 179 5.59268 5.59268 +2013 180 6.60760 6.60760 +2013 181 7.90765 7.90765 +2013 182 7.89855 7.89855 +2013 183 8.04789 8.04789 +2013 184 10.39360 10.39360 +2013 185 10.12260 10.12260 +2013 186 11.14230 11.14230 +2013 187 9.19874 9.19874 +2013 188 7.58307 7.58307 +2013 189 5.72473 5.72473 +2013 190 5.95492 5.95492 +2013 191 6.22807 6.22807 +2013 192 6.79230 6.79230 +2013 193 6.22200 6.22200 +2013 194 6.73642 6.73642 +2013 195 3.69401 3.69401 +2013 196 4.45945 4.45945 +2013 197 6.07683 6.07683 +2013 198 7.90414 7.90414 +2013 199 7.81679 7.81679 +2013 200 8.46476 8.46476 +2013 201 8.78138 8.78138 +2013 202 7.74920 7.74920 +2013 203 7.66932 7.66932 +2013 204 8.01670 8.01670 +2013 205 8.76840 8.76840 +2013 206 8.46182 8.46182 +2013 207 7.62775 7.62775 +2013 208 7.27880 7.27880 +2013 209 7.37182 7.37182 +2013 210 6.56221 6.56221 +2013 211 6.81083 6.81083 +2013 212 9.29877 9.29877 +2013 213 10.07620 10.07620 +2013 214 10.91070 10.91070 +2013 215 10.39860 10.39860 +2013 216 9.64784 9.64784 +2013 217 9.57083 9.57083 +2013 218 9.32892 9.32892 +2013 219 9.94031 9.94031 +2013 220 9.31742 9.31742 +2013 221 10.15090 10.15090 +2013 222 9.11347 9.11347 +2013 223 7.77819 7.77819 +2013 224 8.92937 8.92937 +2013 225 8.88885 8.88885 +2013 226 8.63289 8.63289 +2013 227 8.46123 8.46123 +2013 228 8.96865 8.96865 +2013 229 9.57490 9.57490 +2013 230 8.88853 8.88853 +2013 231 7.56563 7.56563 +2013 232 8.41452 8.41452 +2013 233 9.96493 9.96493 +2013 234 8.20996 8.20996 +2013 235 7.87304 7.87304 +2013 236 9.59026 9.59026 +2013 237 9.36186 9.36186 +2013 238 8.68711 8.68711 +2013 239 8.71159 8.71159 +2013 240 8.22708 8.22708 +2013 241 7.43182 7.43182 +2013 242 7.43712 7.43712 +2013 243 7.87854 7.87854 +2013 244 7.68808 7.68808 +2013 245 7.92948 7.92948 +2013 246 6.71727 6.71727 +2013 247 6.27858 6.27858 +2013 248 7.31231 7.31231 +2013 249 9.28285 9.28285 +2013 250 10.51930 10.51930 +2013 251 9.22569 9.22569 +2013 252 9.24448 9.24448 +2013 253 11.42220 11.42220 +2013 254 12.45930 12.45930 +2013 255 11.25340 11.25340 +2013 256 8.68682 8.68682 +2013 257 8.40658 8.40658 +2013 258 8.35083 8.35083 +2013 259 8.20723 8.20723 +2013 260 6.82372 6.82372 +2013 261 8.50209 8.50209 +2013 262 11.68650 11.68650 +2013 263 12.65680 12.65680 +2013 264 13.19370 13.19370 +2013 265 12.19050 12.19050 +2013 266 11.33460 11.33460 +2013 267 12.79760 12.79760 +2013 268 11.90490 11.90490 +2013 269 12.69700 12.69700 +2013 270 10.81220 10.81220 +2013 271 10.60160 10.60160 +2013 272 10.27260 10.27260 +2013 273 11.42930 11.42930 +2013 274 11.16920 11.16920 +2013 275 11.34250 11.34250 +2013 276 12.27980 12.27980 +2013 277 13.25230 13.25230 +2013 278 12.95780 12.95780 +2013 279 12.16270 12.16270 +2013 280 11.86660 11.86660 +2013 281 9.50138 9.50138 +2013 282 8.66820 8.66820 +2013 283 12.83880 12.83880 +2013 284 9.19156 9.19156 +2013 285 11.34270 11.34270 +2013 286 12.53580 12.53580 +2013 287 11.30210 11.30210 +2013 288 9.46315 9.46315 +2013 289 11.79570 11.79570 +2013 290 11.73130 11.73130 +2013 291 13.66960 13.66960 +2013 292 12.52940 12.52940 +2013 293 11.67580 11.67580 +2013 294 11.95710 11.95710 +2013 295 13.72370 13.72370 +2013 296 13.64930 13.64930 +2013 297 12.65370 12.65370 +2013 298 11.37420 11.37420 +2013 299 10.87810 10.87810 +2013 300 10.79560 10.79560 +2013 301 10.00550 10.00550 +2013 302 10.42000 10.42000 +2013 303 13.02980 13.02980 +2013 304 12.17050 12.17050 +2013 305 10.44770 10.44770 +2013 306 11.84740 11.84740 +2013 307 12.34300 12.34300 +2013 308 12.57160 12.57160 +2013 309 12.41050 12.41050 +2013 310 11.63410 11.63410 +2013 311 12.66510 12.66510 +2013 312 14.11680 14.11680 +2013 313 15.58090 15.58090 +2013 314 16.40880 16.40880 +2013 315 13.20700 13.20700 +2013 316 11.54620 11.54620 +2013 317 12.59250 12.59250 +2013 318 13.35690 13.35690 +2013 319 14.07610 14.07610 +2013 320 16.17910 16.17910 +2013 321 16.20500 16.20500 +2013 322 14.23450 14.23450 +2013 323 14.13760 14.13760 +2013 324 14.97220 14.97220 +2013 325 15.66690 15.66690 +2013 326 16.49580 16.49580 +2013 327 17.14400 17.14400 +2013 328 16.59980 16.59980 +2013 329 15.94780 15.94780 +2013 330 14.95800 14.95800 +2013 331 14.56740 14.56740 +2013 332 15.06760 15.06760 +2013 333 15.53800 15.53800 +2013 334 13.16350 13.16350 +2013 335 14.05880 14.05880 +2013 336 14.52020 14.52020 +2013 337 15.17500 15.17500 +2013 338 15.87480 15.87480 +2013 339 17.30570 17.30570 +2013 340 15.93630 15.93630 +2013 341 14.76560 14.76560 +2013 342 14.68500 14.68500 +2013 343 14.16440 14.16440 +2013 344 15.26550 15.26550 +2013 345 16.75480 16.75480 +2013 346 16.83950 16.83950 +2013 347 17.48130 17.48130 +2013 348 17.92970 17.92970 +2013 349 18.26710 18.26710 +2013 350 16.88320 16.88320 +2013 351 15.04460 15.04460 +2013 352 15.35200 15.35200 +2013 353 15.28290 15.28290 +2013 354 15.46190 15.46190 +2013 355 16.67520 16.67520 +2013 356 13.52170 13.52170 +2013 357 15.29860 15.29860 +2013 358 15.62870 15.62870 +2013 359 14.50230 14.50230 +2013 360 15.85110 15.85110 +2013 361 15.84810 15.84810 +2013 362 15.38720 15.38720 +2013 363 16.44170 16.44170 +2013 364 14.89660 14.89660 +2013 365 14.62540 14.62540 +2014 1 15.41890 15.41890 +2014 2 16.91270 16.91270 +2014 3 18.74500 18.74500 +2014 4 17.79030 17.79030 +2014 5 16.47240 16.47240 +2014 6 16.19060 16.19060 +2014 7 16.34190 16.34190 +2014 8 13.62220 13.62220 +2014 9 14.11190 14.11190 +2014 10 15.46230 15.46230 +2014 11 14.49550 14.49550 +2014 12 15.42010 15.42010 +2014 13 14.76470 14.76470 +2014 14 14.82240 14.82240 +2014 15 15.14950 15.14950 +2014 16 16.07260 16.07260 +2014 17 14.77960 14.77960 +2014 18 16.15590 16.15590 +2014 19 14.57890 14.57890 +2014 20 16.58720 16.58720 +2014 21 16.40960 16.40960 +2014 22 15.00510 15.00510 +2014 23 15.63620 15.63620 +2014 24 15.90410 15.90410 +2014 25 17.73590 17.73590 +2014 26 15.36800 15.36800 +2014 27 14.29690 14.29690 +2014 28 16.05000 16.05000 +2014 29 17.25930 17.25930 +2014 30 16.58340 16.58340 +2014 31 16.18860 16.18860 +2014 32 16.54690 16.54690 +2014 33 15.99700 15.99700 +2014 34 17.36750 17.36750 +2014 35 17.40450 17.40450 +2014 36 16.87380 16.87380 +2014 37 15.76520 15.76520 +2014 38 18.52760 18.52760 +2014 39 18.43890 18.43890 +2014 40 16.59310 16.59310 +2014 41 16.88330 16.88330 +2014 42 15.57540 15.57540 +2014 43 14.67530 14.67530 +2014 44 15.07250 15.07250 +2014 45 16.20010 16.20010 +2014 46 16.70260 16.70260 +2014 47 16.95250 16.95250 +2014 48 18.49390 18.49390 +2014 49 18.15910 18.15910 +2014 50 19.02290 19.02290 +2014 51 18.62420 18.62420 +2014 52 18.87930 18.87930 +2014 53 17.61330 17.61330 +2014 54 14.87880 14.87880 +2014 55 15.93830 15.93830 +2014 56 17.00150 17.00150 +2014 57 16.92170 16.92170 +2014 58 16.64300 16.64300 +2014 59 14.45020 14.45020 +2014 60 14.24810 14.24810 +2014 61 13.65120 13.65120 +2014 62 12.15680 12.15680 +2014 63 13.67140 13.67140 +2014 64 15.34510 15.34510 +2014 65 15.02410 15.02410 +2014 66 14.81570 14.81570 +2014 67 15.12420 15.12420 +2014 68 16.33510 16.33510 +2014 69 16.39160 16.39160 +2014 70 16.44970 16.44970 +2014 71 16.19350 16.19350 +2014 72 15.65460 15.65460 +2014 73 16.05420 16.05420 +2014 74 17.20040 17.20040 +2014 75 16.34310 16.34310 +2014 76 16.95150 16.95150 +2014 77 16.93300 16.93300 +2014 78 15.20150 15.20150 +2014 79 15.43470 15.43470 +2014 80 14.47570 14.47570 +2014 81 15.31660 15.31660 +2014 82 15.60810 15.60810 +2014 83 14.96180 14.96180 +2014 84 14.06090 14.06090 +2014 85 13.73960 13.73960 +2014 86 15.20540 15.20540 +2014 87 14.12950 14.12950 +2014 88 14.89380 14.89380 +2014 89 15.89760 15.89760 +2014 90 15.56750 15.56750 +2014 91 16.12900 16.12900 +2014 92 15.19530 15.19530 +2014 93 14.50020 14.50020 +2014 94 15.07740 15.07740 +2014 95 17.45400 17.45400 +2014 96 18.47730 18.47730 +2014 97 17.90380 17.90380 +2014 98 17.02440 17.02440 +2014 99 15.59380 15.59380 +2014 100 14.60630 14.60630 +2014 101 15.05030 15.05030 +2014 102 13.97800 13.97800 +2014 103 13.48850 13.48850 +2014 104 14.56580 14.56580 +2014 105 14.76630 14.76630 +2014 106 14.54630 14.54630 +2014 107 15.44480 15.44480 +2014 108 14.72370 14.72370 +2014 109 13.46900 13.46900 +2014 110 12.46280 12.46280 +2014 111 12.43750 12.43750 +2014 112 11.27680 11.27680 +2014 113 11.67820 11.67820 +2014 114 14.24750 14.24750 +2014 115 12.58870 12.58870 +2014 116 10.58620 10.58620 +2014 117 11.46350 11.46350 +2014 118 10.56970 10.56970 +2014 119 9.93152 9.93152 +2014 120 9.99638 9.99638 +2014 121 9.48349 9.48349 +2014 122 10.80100 10.80100 +2014 123 12.17600 12.17600 +2014 124 13.76630 13.76630 +2014 125 14.29890 14.29890 +2014 126 12.56420 12.56420 +2014 127 12.48720 12.48720 +2014 128 11.20730 11.20730 +2014 129 9.81864 9.81864 +2014 130 10.29590 10.29590 +2014 131 11.05200 11.05200 +2014 132 10.36990 10.36990 +2014 133 9.13963 9.13963 +2014 134 8.83363 8.83363 +2014 135 9.63987 9.63987 +2014 136 8.96916 8.96916 +2014 137 8.79526 8.79526 +2014 138 11.05910 11.05910 +2014 139 10.36630 10.36630 +2014 140 11.69550 11.69550 +2014 141 10.79640 10.79640 +2014 142 11.11020 11.11020 +2014 143 13.27460 13.27460 +2014 144 12.22500 12.22500 +2014 145 8.77278 8.77278 +2014 146 6.02621 6.02621 +2014 147 6.27551 6.27551 +2014 148 8.48264 8.48264 +2014 149 9.81802 9.81802 +2014 150 8.44502 8.44502 +2014 151 8.80479 8.80479 +2014 152 9.89284 9.89284 +2014 153 10.28040 10.28040 +2014 154 9.16756 9.16756 +2014 155 7.93862 7.93862 +2014 156 9.57005 9.57005 +2014 157 9.24084 9.24084 +2014 158 9.55197 9.55197 +2014 159 11.50220 11.50220 +2014 160 10.44320 10.44320 +2014 161 10.64880 10.64880 +2014 162 9.41354 9.41354 +2014 163 9.82404 9.82404 +2014 164 8.61100 8.61100 +2014 165 8.05170 8.05170 +2014 166 9.31144 9.31144 +2014 167 11.99430 11.99430 +2014 168 9.77872 9.77872 +2014 169 8.83776 8.83776 +2014 170 8.26623 8.26623 +2014 171 8.47200 8.47200 +2014 172 10.44130 10.44130 +2014 173 7.90753 7.90753 +2014 174 9.75495 9.75495 +2014 175 11.80110 11.80110 +2014 176 13.05980 13.05980 +2014 177 9.88294 9.88294 +2014 178 8.89111 8.89111 +2014 179 7.68932 7.68932 +2014 180 10.17320 10.17320 +2014 181 9.71824 9.71824 +2014 182 5.86149 5.86149 +2014 183 4.91199 4.91199 +2014 184 5.17987 5.17987 +2014 185 9.51101 9.51101 +2014 186 7.33623 7.33623 +2014 187 7.36133 7.36133 +2014 188 7.27312 7.27312 +2014 189 9.05016 9.05016 +2014 190 10.14780 10.14780 +2014 191 10.37230 10.37230 +2014 192 10.09500 10.09500 +2014 193 8.89828 8.89828 +2014 194 8.74489 8.74489 +2014 195 7.43046 7.43046 +2014 196 5.96582 5.96582 +2014 197 5.11931 5.11931 +2014 198 5.39519 5.39519 +2014 199 5.32503 5.32503 +2014 200 9.34928 9.34928 +2014 201 6.42376 6.42376 +2014 202 3.39682 3.39682 +2014 203 6.02600 6.02600 +2014 204 5.88033 5.88033 +2014 205 6.98572 6.98572 +2014 206 5.54645 5.54645 +2014 207 5.99308 5.99308 +2014 208 5.25750 5.25750 +2014 209 7.87154 7.87154 +2014 210 9.11679 9.11679 +2014 211 10.36030 10.36030 +2014 212 10.21630 10.21630 +2014 213 12.95220 12.95220 +2014 214 10.69080 10.69080 +2014 215 6.55719 6.55719 +2014 216 6.61745 6.61745 +2014 217 7.66422 7.66422 +2014 218 7.09975 7.09975 +2014 219 7.85721 7.85721 +2014 220 4.36046 4.36046 +2014 221 4.86859 4.86859 +2014 222 7.27898 7.27898 +2014 223 7.69643 7.69643 +2014 224 5.71711 5.71711 +2014 225 5.92610 5.92610 +2014 226 5.55784 5.55784 +2014 227 7.75769 7.75769 +2014 228 6.73722 6.73722 +2014 229 6.85104 6.85104 +2014 230 7.19898 7.19898 +2014 231 10.55360 10.55360 +2014 232 8.35645 8.35645 +2014 233 5.29963 5.29963 +2014 234 7.31780 7.31780 +2014 235 7.91255 7.91255 +2014 236 7.14132 7.14132 +2014 237 6.85191 6.85191 +2014 238 6.91908 6.91908 +2014 239 7.45494 7.45494 +2014 240 7.92423 7.92423 +2014 241 7.81761 7.81761 +2014 242 8.22914 8.22914 +2014 243 8.38353 8.38353 +2014 244 11.01640 11.01640 +2014 245 10.91190 10.91190 +2014 246 9.94522 9.94522 +2014 247 10.91240 10.91240 +2014 248 10.56160 10.56160 +2014 249 10.61120 10.61120 +2014 250 9.53458 9.53458 +2014 251 9.11063 9.11063 +2014 252 9.23619 9.23619 +2014 253 9.09367 9.09367 +2014 254 10.77780 10.77780 +2014 255 12.23560 12.23560 +2014 256 9.69727 9.69727 +2014 257 8.64731 8.64731 +2014 258 9.22282 9.22282 +2014 259 9.37657 9.37657 +2014 260 8.73572 8.73572 +2014 261 10.61870 10.61870 +2014 262 7.68615 7.68615 +2014 263 6.96798 6.96798 +2014 264 7.32470 7.32470 +2014 265 7.81000 7.81000 +2014 266 11.58920 11.58920 +2014 267 10.12070 10.12070 +2014 268 10.51080 10.51080 +2014 269 10.19020 10.19020 +2014 270 11.71380 11.71380 +2014 271 9.55405 9.55405 +2014 272 10.64580 10.64580 +2014 273 10.94840 10.94840 +2014 274 9.45110 9.45110 +2014 275 8.16440 8.16440 +2014 276 6.22958 6.22958 +2014 277 8.64459 8.64459 +2014 278 10.10740 10.10740 +2014 279 9.25149 9.25149 +2014 280 10.60030 10.60030 +2014 281 11.91620 11.91620 +2014 282 11.09380 11.09380 +2014 283 10.18670 10.18670 +2014 284 10.63260 10.63260 +2014 285 11.32780 11.32780 +2014 286 11.50860 11.50860 +2014 287 13.15020 13.15020 +2014 288 12.36310 12.36310 +2014 289 12.50720 12.50720 +2014 290 13.04630 13.04630 +2014 291 12.89600 12.89600 +2014 292 10.94460 10.94460 +2014 293 11.99230 11.99230 +2014 294 11.16900 11.16900 +2014 295 12.14900 12.14900 +2014 296 11.42720 11.42720 +2014 297 9.05163 9.05163 +2014 298 9.54620 9.54620 +2014 299 10.97880 10.97880 +2014 300 12.09570 12.09570 +2014 301 12.90220 12.90220 +2014 302 10.27010 10.27010 +2014 303 11.53270 11.53270 +2014 304 12.38290 12.38290 +2014 305 13.48790 13.48790 +2014 306 12.37030 12.37030 +2014 307 10.75430 10.75430 +2014 308 9.85521 9.85521 +2014 309 8.39478 8.39478 +2014 310 9.45190 9.45190 +2014 311 11.75580 11.75580 +2014 312 12.56840 12.56840 +2014 313 12.30970 12.30970 +2014 314 12.51650 12.51650 +2014 315 8.89822 8.89822 +2014 316 8.88120 8.88120 +2014 317 10.82980 10.82980 +2014 318 11.64020 11.64020 +2014 319 11.61130 11.61130 +2014 320 11.19410 11.19410 +2014 321 12.36830 12.36830 +2014 322 11.35340 11.35340 +2014 323 10.77410 10.77410 +2014 324 12.60320 12.60320 +2014 325 14.82910 14.82910 +2014 326 15.03300 15.03300 +2014 327 14.85730 14.85730 +2014 328 17.20830 17.20830 +2014 329 15.62310 15.62310 +2014 330 13.73400 13.73400 +2014 331 11.85480 11.85480 +2014 332 10.64350 10.64350 +2014 333 11.63090 11.63090 +2014 334 10.12710 10.12710 +2014 335 11.21160 11.21160 +2014 336 13.01520 13.01520 +2014 337 12.38060 12.38060 +2014 338 14.39870 14.39870 +2014 339 15.53090 15.53090 +2014 340 16.20140 16.20140 +2014 341 16.78260 16.78260 +2014 342 15.02360 15.02360 +2014 343 15.95780 15.95780 +2014 344 16.81890 16.81890 +2014 345 13.61980 13.61980 +2014 346 13.83250 13.83250 +2014 347 11.56530 11.56530 +2014 348 13.95030 13.95030 +2014 349 13.27710 13.27710 +2014 350 13.66970 13.66970 +2014 351 17.17020 17.17020 +2014 352 17.55980 17.55980 +2014 353 16.95640 16.95640 +2014 354 17.93220 17.93220 +2014 355 16.62090 16.62090 +2014 356 15.88020 15.88020 +2014 357 15.92190 15.92190 +2014 358 15.27160 15.27160 +2014 359 15.65350 15.65350 +2014 360 14.89870 14.89870 +2014 361 15.88120 15.88120 +2014 362 16.50760 16.50760 +2014 363 15.49420 15.49420 +2014 364 15.52140 15.52140 +2014 365 17.63570 17.63570 +2015 1 16.52410 16.52410 +2015 2 17.22270 17.22270 +2015 3 17.36950 17.36950 +2015 4 18.49150 18.49150 +2015 5 17.45930 17.45930 +2015 6 18.17670 18.17670 +2015 7 18.02290 18.02290 +2015 8 16.15890 16.15890 +2015 9 18.58710 18.58710 +2015 10 18.07730 18.07730 +2015 11 19.31280 19.31280 +2015 12 19.04160 19.04160 +2015 13 18.85380 18.85380 +2015 14 18.90440 18.90440 +2015 15 18.68060 18.68060 +2015 16 19.18250 19.18250 +2015 17 19.28780 19.28780 +2015 18 19.18170 19.18170 +2015 19 18.30310 18.30310 +2015 20 18.50920 18.50920 +2015 21 17.28850 17.28850 +2015 22 18.28170 18.28170 +2015 23 19.58360 19.58360 +2015 24 18.93080 18.93080 +2015 25 18.63460 18.63460 +2015 26 17.88150 17.88150 +2015 27 19.03380 19.03380 +2015 28 18.89280 18.89280 +2015 29 19.23170 19.23170 +2015 30 18.74190 18.74190 +2015 31 18.04960 18.04960 +2015 32 19.19890 19.19890 +2015 33 19.08790 19.08790 +2015 34 16.45810 16.45810 +2015 35 16.06200 16.06200 +2015 36 14.79400 14.79400 +2015 37 15.24800 15.24800 +2015 38 17.61940 17.61940 +2015 39 17.44850 17.44850 +2015 40 15.90570 15.90570 +2015 41 15.75120 15.75120 +2015 42 15.77200 15.77200 +2015 43 17.11780 17.11780 +2015 44 16.68140 16.68140 +2015 45 15.71710 15.71710 +2015 46 15.54410 15.54410 +2015 47 16.47180 16.47180 +2015 48 17.95950 17.95950 +2015 49 18.69620 18.69620 +2015 50 17.47690 17.47690 +2015 51 17.29890 17.29890 +2015 52 17.25750 17.25750 +2015 53 16.62320 16.62320 +2015 54 16.79340 16.79340 +2015 55 17.25220 17.25220 +2015 56 16.64290 16.64290 +2015 57 16.86030 16.86030 +2015 58 17.27210 17.27210 +2015 59 18.10240 18.10240 +2015 60 18.18010 18.18010 +2015 61 17.45290 17.45290 +2015 62 16.50950 16.50950 +2015 63 17.43060 17.43060 +2015 64 17.23180 17.23180 +2015 65 16.62930 16.62930 +2015 66 15.77290 15.77290 +2015 67 16.24020 16.24020 +2015 68 17.46840 17.46840 +2015 69 17.25320 17.25320 +2015 70 16.00600 16.00600 +2015 71 16.24110 16.24110 +2015 72 17.36740 17.36740 +2015 73 16.31120 16.31120 +2015 74 15.55920 15.55920 +2015 75 14.58270 14.58270 +2015 76 12.82130 12.82130 +2015 77 12.69530 12.69530 +2015 78 12.16920 12.16920 +2015 79 13.29290 13.29290 +2015 80 14.24160 14.24160 +2015 81 13.80170 13.80170 +2015 82 14.14250 14.14250 +2015 83 14.94400 14.94400 +2015 84 15.93730 15.93730 +2015 85 16.25970 16.25970 +2015 86 15.81250 15.81250 +2015 87 15.77550 15.77550 +2015 88 15.07020 15.07020 +2015 89 14.23150 14.23150 +2015 90 14.29570 14.29570 +2015 91 15.04080 15.04080 +2015 92 14.17000 14.17000 +2015 93 14.25310 14.25310 +2015 94 15.97300 15.97300 +2015 95 15.09670 15.09670 +2015 96 16.36040 16.36040 +2015 97 16.83560 16.83560 +2015 98 16.91330 16.91330 +2015 99 16.69840 16.69840 +2015 100 14.73170 14.73170 +2015 101 13.13670 13.13670 +2015 102 11.09940 11.09940 +2015 103 7.69203 7.69203 +2015 104 8.51847 8.51847 +2015 105 9.86863 9.86863 +2015 106 10.46330 10.46330 +2015 107 11.20290 11.20290 +2015 108 12.20270 12.20270 +2015 109 13.77990 13.77990 +2015 110 13.71730 13.71730 +2015 111 14.10610 14.10610 +2015 112 13.71780 13.71780 +2015 113 12.81110 12.81110 +2015 114 11.81510 11.81510 +2015 115 13.50630 13.50630 +2015 116 14.27700 14.27700 +2015 117 12.42340 12.42340 +2015 118 10.23510 10.23510 +2015 119 10.87170 10.87170 +2015 120 9.57529 9.57529 +2015 121 10.28390 10.28390 +2015 122 9.75223 9.75223 +2015 123 9.84129 9.84129 +2015 124 12.49950 12.49950 +2015 125 13.08260 13.08260 +2015 126 14.75280 14.75280 +2015 127 14.37750 14.37750 +2015 128 11.81760 11.81760 +2015 129 11.80050 11.80050 +2015 130 11.12910 11.12910 +2015 131 11.32860 11.32860 +2015 132 10.74420 10.74420 +2015 133 11.26370 11.26370 +2015 134 11.23260 11.23260 +2015 135 8.73518 8.73518 +2015 136 9.39496 9.39496 +2015 137 9.19512 9.19512 +2015 138 10.34510 10.34510 +2015 139 9.26085 9.26085 +2015 140 10.26680 10.26680 +2015 141 10.97580 10.97580 +2015 142 9.93710 9.93710 +2015 143 8.98046 8.98046 +2015 144 7.09137 7.09137 +2015 145 7.53777 7.53777 +2015 146 7.24619 7.24619 +2015 147 6.00084 6.00084 +2015 148 5.65254 5.65254 +2015 149 7.64454 7.64454 +2015 150 9.68785 9.68785 +2015 151 10.84140 10.84140 +2015 152 12.25510 12.25510 +2015 153 10.49100 10.49100 +2015 154 9.89777 9.89777 +2015 155 8.60518 8.60518 +2015 156 7.09465 7.09465 +2015 157 7.21832 7.21832 +2015 158 7.41036 7.41036 +2015 159 9.76622 9.76622 +2015 160 10.90360 10.90360 +2015 161 9.76947 9.76947 +2015 162 8.95282 8.95282 +2015 163 9.14386 9.14386 +2015 164 10.19240 10.19240 +2015 165 8.79120 8.79120 +2015 166 5.47895 5.47895 +2015 167 4.91784 4.91784 +2015 168 7.50025 7.50025 +2015 169 11.18920 11.18920 +2015 170 13.01430 13.01430 +2015 171 9.31047 9.31047 +2015 172 6.50573 6.50573 +2015 173 4.09582 4.09582 +2015 174 4.85203 4.85203 +2015 175 4.22697 4.22697 +2015 176 6.35809 6.35809 +2015 177 8.50547 8.50547 +2015 178 8.44847 8.44847 +2015 179 8.96533 8.96533 +2015 180 9.69590 9.69590 +2015 181 9.14376 9.14376 +2015 182 7.43865 7.43865 +2015 183 9.08975 9.08975 +2015 184 9.89673 9.89673 +2015 185 8.75629 8.75629 +2015 186 9.58104 9.58104 +2015 187 9.37564 9.37564 +2015 188 4.66158 4.66158 +2015 189 2.50574 2.50574 +2015 190 3.15706 3.15706 +2015 191 3.60435 3.60435 +2015 192 4.14010 4.14010 +2015 193 4.12821 4.12821 +2015 194 5.88937 5.88937 +2015 195 9.16503 9.16503 +2015 196 9.57522 9.57522 +2015 197 8.11365 8.11365 +2015 198 7.83088 7.83088 +2015 199 5.85758 5.85758 +2015 200 5.58549 5.58549 +2015 201 5.52765 5.52765 +2015 202 6.34551 6.34551 +2015 203 5.89212 5.89212 +2015 204 5.61371 5.61371 +2015 205 6.00170 6.00170 +2015 206 8.13756 8.13756 +2015 207 10.40630 10.40630 +2015 208 9.00909 9.00909 +2015 209 7.30588 7.30588 +2015 210 4.86060 4.86060 +2015 211 5.34719 5.34719 +2015 212 7.41560 7.41560 +2015 213 8.53471 8.53471 +2015 214 9.84276 9.84276 +2015 215 11.12970 11.12970 +2015 216 9.44332 9.44332 +2015 217 11.11500 11.11500 +2015 218 7.70449 7.70449 +2015 219 5.41298 5.41298 +2015 220 4.14040 4.14040 +2015 221 3.46043 3.46043 +2015 222 3.90660 3.90660 +2015 223 4.26089 4.26089 +2015 224 4.87097 4.87097 +2015 225 7.68562 7.68562 +2015 226 7.55673 7.55673 +2015 227 7.67774 7.67774 +2015 228 7.45481 7.45481 +2015 229 7.72850 7.72850 +2015 230 8.67380 8.67380 +2015 231 7.41478 7.41478 +2015 232 6.36404 6.36404 +2015 233 6.15202 6.15202 +2015 234 8.05409 8.05409 +2015 235 8.68706 8.68706 +2015 236 8.85448 8.85448 +2015 237 7.97193 7.97193 +2015 238 6.96861 6.96861 +2015 239 7.34790 7.34790 +2015 240 7.34069 7.34069 +2015 241 9.97412 9.97412 +2015 242 8.44279 8.44279 +2015 243 9.23794 9.23794 +2015 244 9.69072 9.69072 +2015 245 9.03858 9.03858 +2015 246 7.24216 7.24216 +2015 247 8.07012 8.07012 +2015 248 7.27990 7.27990 +2015 249 6.88583 6.88583 +2015 250 6.33296 6.33296 +2015 251 7.30661 7.30661 +2015 252 8.20076 8.20076 +2015 253 7.15373 7.15373 +2015 254 6.07317 6.07317 +2015 255 8.75707 8.75707 +2015 256 8.00235 8.00235 +2015 257 8.46988 8.46988 +2015 258 9.78388 9.78388 +2015 259 10.15540 10.15540 +2015 260 10.60600 10.60600 +2015 261 9.17899 9.17899 +2015 262 8.11132 8.11132 +2015 263 6.38956 6.38956 +2015 264 7.89991 7.89991 +2015 265 8.22020 8.22020 +2015 266 10.29490 10.29490 +2015 267 9.48193 9.48193 +2015 268 8.40414 8.40414 +2015 269 8.31443 8.31443 +2015 270 8.11476 8.11476 +2015 271 7.91189 7.91189 +2015 272 9.26988 9.26988 +2015 273 10.80560 10.80560 +2015 274 10.70640 10.70640 +2015 275 11.04050 11.04050 +2015 276 10.12190 10.12190 +2015 277 12.44820 12.44820 +2015 278 10.96110 10.96110 +2015 279 11.81000 11.81000 +2015 280 10.74150 10.74150 +2015 281 8.54344 8.54344 +2015 282 8.98797 8.98797 +2015 283 10.21230 10.21230 +2015 284 11.92560 11.92560 +2015 285 11.78220 11.78220 +2015 286 12.03550 12.03550 +2015 287 11.75130 11.75130 +2015 288 10.77430 10.77430 +2015 289 11.53090 11.53090 +2015 290 12.16990 12.16990 +2015 291 10.34580 10.34580 +2015 292 9.92130 9.92130 +2015 293 10.60180 10.60180 +2015 294 12.81130 12.81130 +2015 295 14.09570 14.09570 +2015 296 12.75770 12.75770 +2015 297 13.59700 13.59700 +2015 298 12.04120 12.04120 +2015 299 12.70030 12.70030 +2015 300 12.18480 12.18480 +2015 301 11.89090 11.89090 +2015 302 10.41010 10.41010 +2015 303 10.01170 10.01170 +2015 304 11.75820 11.75820 +2015 305 11.13630 11.13630 +2015 306 11.44570 11.44570 +2015 307 9.95386 9.95386 +2015 308 9.15477 9.15477 +2015 309 11.55370 11.55370 +2015 310 14.02380 14.02380 +2015 311 14.25970 14.25970 +2015 312 15.36170 15.36170 +2015 313 15.43810 15.43810 +2015 314 14.47680 14.47680 +2015 315 10.36830 10.36830 +2015 316 9.40967 9.40967 +2015 317 10.17650 10.17650 +2015 318 12.23550 12.23550 +2015 319 12.53250 12.53250 +2015 320 12.33060 12.33060 +2015 321 12.97690 12.97690 +2015 322 11.07520 11.07520 +2015 323 11.99550 11.99550 +2015 324 12.94880 12.94880 +2015 325 13.83010 13.83010 +2015 326 12.97130 12.97130 +2015 327 12.99670 12.99670 +2015 328 14.63510 14.63510 +2015 329 16.54030 16.54030 +2015 330 17.18510 17.18510 +2015 331 16.05990 16.05990 +2015 332 14.90830 14.90830 +2015 333 14.83320 14.83320 +2015 334 14.02470 14.02470 +2015 335 13.86280 13.86280 +2015 336 14.86580 14.86580 +2015 337 15.70770 15.70770 +2015 338 13.37670 13.37670 +2015 339 13.87410 13.87410 +2015 340 13.47230 13.47230 +2015 341 12.27590 12.27590 +2015 342 13.79150 13.79150 +2015 343 13.57900 13.57900 +2015 344 17.33980 17.33980 +2015 345 16.93750 16.93750 +2015 346 14.80880 14.80880 +2015 347 12.81930 12.81930 +2015 348 13.82890 13.82890 +2015 349 13.62630 13.62630 +2015 350 12.25160 12.25160 +2015 351 12.23250 12.23250 +2015 352 15.46430 15.46430 +2015 353 16.11330 16.11330 +2015 354 17.06090 17.06090 +2015 355 17.55530 17.55530 +2015 356 15.45400 15.45400 +2015 357 13.57660 13.57660 +2015 358 16.63710 16.63710 +2015 359 18.38420 18.38420 +2015 360 17.93260 17.93260 +2015 361 19.12660 19.12660 +2015 362 18.38990 18.38990 +2015 363 17.91260 17.91260 +2015 364 18.15270 18.15270 +2015 365 16.03200 16.03200 +2016 1 15.34860 15.34860 +2016 2 18.35220 18.35220 +2016 3 15.18090 15.18090 +2016 4 13.21730 13.21730 +2016 5 14.65220 14.65220 +2016 6 14.79480 14.79480 +2016 7 16.91340 16.91340 +2016 8 18.75530 18.75530 +2016 9 16.10900 16.10900 +2016 10 15.31010 15.31010 +2016 11 16.82570 16.82570 +2016 12 17.58870 17.58870 +2016 13 16.90440 16.90440 +2016 14 17.11810 17.11810 +2016 15 18.40650 18.40650 +2016 16 18.15180 18.15180 +2016 17 17.62020 17.62020 +2016 18 18.44540 18.44540 +2016 19 18.46090 18.46090 +2016 20 18.68940 18.68940 +2016 21 18.64170 18.64170 +2016 22 19.18730 19.18730 +2016 23 19.97910 19.97910 +2016 24 19.58150 19.58150 +2016 25 19.91480 19.91480 +2016 26 19.94640 19.94640 +2016 27 19.98750 19.98750 +2016 28 19.32020 19.32020 +2016 29 19.75760 19.75760 +2016 30 18.20060 18.20060 +2016 31 17.05420 17.05420 +2016 32 20.19850 20.19850 +2016 33 18.90090 18.90090 +2016 34 17.69290 17.69290 +2016 35 17.33030 17.33030 +2016 36 18.57500 18.57500 +2016 37 19.43340 19.43340 +2016 38 17.90280 17.90280 +2016 39 17.53050 17.53050 +2016 40 18.73480 18.73480 +2016 41 18.78400 18.78400 +2016 42 20.20730 20.20730 +2016 43 19.24000 19.24000 +2016 44 17.96100 17.96100 +2016 45 17.63770 17.63770 +2016 46 17.28390 17.28390 +2016 47 16.55620 16.55620 +2016 48 18.05340 18.05340 +2016 49 18.67830 18.67830 +2016 50 17.06510 17.06510 +2016 51 18.67600 18.67600 +2016 52 18.27660 18.27660 +2016 53 17.59720 17.59720 +2016 54 17.26470 17.26470 +2016 55 17.36680 17.36680 +2016 56 18.39900 18.39900 +2016 57 18.74720 18.74720 +2016 58 21.22850 21.22850 +2016 59 18.79170 18.79170 +2016 60 16.11170 16.11170 +2016 61 15.79990 15.79990 +2016 62 14.66900 14.66900 +2016 63 17.03740 17.03740 +2016 64 17.44500 17.44500 +2016 65 17.14830 17.14830 +2016 66 18.62260 18.62260 +2016 67 18.27680 18.27680 +2016 68 18.02780 18.02780 +2016 69 17.33490 17.33490 +2016 70 16.74720 16.74720 +2016 71 13.05470 13.05470 +2016 72 15.36410 15.36410 +2016 73 15.66480 15.66480 +2016 74 16.42340 16.42340 +2016 75 17.11700 17.11700 +2016 76 15.56730 15.56730 +2016 77 16.19530 16.19530 +2016 78 15.84680 15.84680 +2016 79 16.16220 16.16220 +2016 80 16.61470 16.61470 +2016 81 17.06320 17.06320 +2016 82 17.26850 17.26850 +2016 83 18.21720 18.21720 +2016 84 17.98930 17.98930 +2016 85 16.55280 16.55280 +2016 86 16.79510 16.79510 +2016 87 16.48390 16.48390 +2016 88 15.47640 15.47640 +2016 89 14.64070 14.64070 +2016 90 13.62510 13.62510 +2016 91 14.83370 14.83370 +2016 92 16.22540 16.22540 +2016 93 17.33980 17.33980 +2016 94 16.01090 16.01090 +2016 95 12.60480 12.60480 +2016 96 12.18520 12.18520 +2016 97 13.60640 13.60640 +2016 98 14.41090 14.41090 +2016 99 14.07030 14.07030 +2016 100 14.79670 14.79670 +2016 101 15.04390 15.04390 +2016 102 14.98580 14.98580 +2016 103 15.31420 15.31420 +2016 104 12.21350 12.21350 +2016 105 12.00930 12.00930 +2016 106 11.89630 11.89630 +2016 107 13.05370 13.05370 +2016 108 14.79120 14.79120 +2016 109 12.92410 12.92410 +2016 110 13.57740 13.57740 +2016 111 12.25500 12.25500 +2016 112 12.89100 12.89100 +2016 113 13.60190 13.60190 +2016 114 13.11050 13.11050 +2016 115 12.55520 12.55520 +2016 116 12.45080 12.45080 +2016 117 12.05190 12.05190 +2016 118 11.79010 11.79010 +2016 119 11.45750 11.45750 +2016 120 12.25350 12.25350 +2016 121 11.99710 11.99710 +2016 122 13.66910 13.66910 +2016 123 14.23450 14.23450 +2016 124 13.51790 13.51790 +2016 125 15.31600 15.31600 +2016 126 15.74350 15.74350 +2016 127 13.74590 13.74590 +2016 128 12.94830 12.94830 +2016 129 13.23030 13.23030 +2016 130 13.09470 13.09470 +2016 131 15.27980 15.27980 +2016 132 15.14700 15.14700 +2016 133 14.56050 14.56050 +2016 134 14.06080 14.06080 +2016 135 13.06300 13.06300 +2016 136 13.28740 13.28740 +2016 137 11.05060 11.05060 +2016 138 10.27750 10.27750 +2016 139 11.92360 11.92360 +2016 140 12.28170 12.28170 +2016 141 10.78920 10.78920 +2016 142 9.53187 9.53187 +2016 143 7.85906 7.85906 +2016 144 10.84830 10.84830 +2016 145 10.89480 10.89480 +2016 146 10.27780 10.27780 +2016 147 11.02270 11.02270 +2016 148 13.18000 13.18000 +2016 149 12.01860 12.01860 +2016 150 9.39575 9.39575 +2016 151 7.95641 7.95641 +2016 152 6.84365 6.84365 +2016 153 6.96416 6.96416 +2016 154 6.63171 6.63171 +2016 155 6.01054 6.01054 +2016 156 5.60689 5.60689 +2016 157 5.91158 5.91158 +2016 158 7.46436 7.46436 +2016 159 10.30240 10.30240 +2016 160 13.22140 13.22140 +2016 161 14.32790 14.32790 +2016 162 12.00290 12.00290 +2016 163 10.20490 10.20490 +2016 164 7.21020 7.21020 +2016 165 7.92846 7.92846 +2016 166 9.96781 9.96781 +2016 167 9.93781 9.93781 +2016 168 7.59853 7.59853 +2016 169 7.94987 7.94987 +2016 170 9.44403 9.44403 +2016 171 9.83388 9.83388 +2016 172 11.19970 11.19970 +2016 173 13.29100 13.29100 +2016 174 12.56290 12.56290 +2016 175 10.20970 10.20970 +2016 176 9.36642 9.36642 +2016 177 10.57270 10.57270 +2016 178 9.38548 9.38548 +2016 179 10.02400 10.02400 +2016 180 8.42111 8.42111 +2016 181 8.78892 8.78892 +2016 182 6.32625 6.32625 +2016 183 3.76843 3.76843 +2016 184 4.61095 4.61095 +2016 185 5.22231 5.22231 +2016 186 7.62450 7.62450 +2016 187 7.31903 7.31903 +2016 188 8.01637 8.01637 +2016 189 10.00220 10.00220 +2016 190 8.06876 8.06876 +2016 191 7.78428 7.78428 +2016 192 7.17389 7.17389 +2016 193 7.13987 7.13987 +2016 194 6.68346 6.68346 +2016 195 8.90559 8.90559 +2016 196 8.70237 8.70237 +2016 197 7.40014 7.40014 +2016 198 8.43076 8.43076 +2016 199 6.44467 6.44467 +2016 200 7.40070 7.40070 +2016 201 8.60559 8.60559 +2016 202 8.71461 8.71461 +2016 203 8.04905 8.04905 +2016 204 11.52300 11.52300 +2016 205 10.85190 10.85190 +2016 206 8.18682 8.18682 +2016 207 6.72988 6.72988 +2016 208 7.52785 7.52785 +2016 209 8.90358 8.90358 +2016 210 7.41831 7.41831 +2016 211 7.83818 7.83818 +2016 212 5.85325 5.85325 +2016 213 7.37028 7.37028 +2016 214 8.01364 8.01364 +2016 215 8.88116 8.88116 +2016 216 8.62096 8.62096 +2016 217 6.77977 6.77977 +2016 218 4.90662 4.90662 +2016 219 4.90388 4.90388 +2016 220 3.46148 3.46148 +2016 221 4.64722 4.64722 +2016 222 6.36244 6.36244 +2016 223 7.44342 7.44342 +2016 224 7.67426 7.67426 +2016 225 9.13145 9.13145 +2016 226 8.03269 8.03269 +2016 227 7.19214 7.19214 +2016 228 7.39822 7.39822 +2016 229 7.18604 7.18604 +2016 230 6.75467 6.75467 +2016 231 7.28417 7.28417 +2016 232 7.71388 7.71388 +2016 233 6.94579 6.94579 +2016 234 8.19711 8.19711 +2016 235 9.29338 9.29338 +2016 236 7.81112 7.81112 +2016 237 9.65147 9.65147 +2016 238 12.88410 12.88410 +2016 239 8.96652 8.96652 +2016 240 8.56872 8.56872 +2016 241 6.34952 6.34952 +2016 242 9.74129 9.74129 +2016 243 9.19208 9.19208 +2016 244 8.08063 8.08063 +2016 245 9.94581 9.94581 +2016 246 11.35600 11.35600 +2016 247 11.48200 11.48200 +2016 248 10.93680 10.93680 +2016 249 10.29770 10.29770 +2016 250 7.91615 7.91615 +2016 251 5.93495 5.93495 +2016 252 6.22701 6.22701 +2016 253 7.69647 7.69647 +2016 254 8.47959 8.47959 +2016 255 7.82275 7.82275 +2016 256 9.71357 9.71357 +2016 257 10.74480 10.74480 +2016 258 10.84290 10.84290 +2016 259 11.91530 11.91530 +2016 260 12.07340 12.07340 +2016 261 11.79910 11.79910 +2016 262 11.26460 11.26460 +2016 263 9.51314 9.51314 +2016 264 7.77932 7.77932 +2016 265 9.44307 9.44307 +2016 266 11.21520 11.21520 +2016 267 11.67400 11.67400 +2016 268 10.09550 10.09550 +2016 269 10.12120 10.12120 +2016 270 11.30530 11.30530 +2016 271 11.21140 11.21140 +2016 272 10.34220 10.34220 +2016 273 10.99790 10.99790 +2016 274 11.61660 11.61660 +2016 275 11.92090 11.92090 +2016 276 11.18340 11.18340 +2016 277 11.49560 11.49560 +2016 278 11.81600 11.81600 +2016 279 10.53110 10.53110 +2016 280 9.16390 9.16390 +2016 281 10.54360 10.54360 +2016 282 12.21380 12.21380 +2016 283 10.44230 10.44230 +2016 284 12.85850 12.85850 +2016 285 13.37210 13.37210 +2016 286 10.51940 10.51940 +2016 287 9.65571 9.65571 +2016 288 9.20829 9.20829 +2016 289 10.35870 10.35870 +2016 290 12.86800 12.86800 +2016 291 12.25950 12.25950 +2016 292 13.06460 13.06460 +2016 293 14.18710 14.18710 +2016 294 11.67110 11.67110 +2016 295 10.78480 10.78480 +2016 296 11.91800 11.91800 +2016 297 12.58700 12.58700 +2016 298 13.42050 13.42050 +2016 299 12.50710 12.50710 +2016 300 12.48500 12.48500 +2016 301 12.19760 12.19760 +2016 302 11.82300 11.82300 +2016 303 9.14995 9.14995 +2016 304 8.90930 8.90930 +2016 305 10.23400 10.23400 +2016 306 11.31500 11.31500 +2016 307 11.49780 11.49780 +2016 308 10.51680 10.51680 +2016 309 11.29060 11.29060 +2016 310 13.24150 13.24150 +2016 311 12.19140 12.19140 +2016 312 12.69930 12.69930 +2016 313 14.81940 14.81940 +2016 314 15.04800 15.04800 +2016 315 14.70070 14.70070 +2016 316 13.05440 13.05440 +2016 317 12.04830 12.04830 +2016 318 12.78810 12.78810 +2016 319 14.32420 14.32420 +2016 320 13.55900 13.55900 +2016 321 10.79260 10.79260 +2016 322 11.08190 11.08190 +2016 323 13.61550 13.61550 +2016 324 13.14980 13.14980 +2016 325 13.37410 13.37410 +2016 326 15.60070 15.60070 +2016 327 15.64430 15.64430 +2016 328 15.86000 15.86000 +2016 329 14.83550 14.83550 +2016 330 13.94830 13.94830 +2016 331 12.18180 12.18180 +2016 332 11.05990 11.05990 +2016 333 12.80300 12.80300 +2016 334 14.01170 14.01170 +2016 335 14.38870 14.38870 +2016 336 15.06220 15.06220 +2016 337 14.31610 14.31610 +2016 338 15.17220 15.17220 +2016 339 14.87160 14.87160 +2016 340 15.65620 15.65620 +2016 341 15.77050 15.77050 +2016 342 14.71990 14.71990 +2016 343 16.60300 16.60300 +2016 344 16.34310 16.34310 +2016 345 12.85640 12.85640 +2016 346 12.57510 12.57510 +2016 347 12.26180 12.26180 +2016 348 13.32100 13.32100 +2016 349 15.44670 15.44670 +2016 350 13.94330 13.94330 +2016 351 15.15900 15.15900 +2016 352 15.95470 15.95470 +2016 353 14.92990 14.92990 +2016 354 14.66060 14.66060 +2016 355 15.65380 15.65380 +2016 356 16.08590 16.08590 +2016 357 14.09700 14.09700 +2016 358 13.51230 13.51230 +2016 359 14.98040 14.98040 +2016 360 15.42470 15.42470 +2016 361 16.00640 16.00640 +2016 362 17.05990 17.05990 +2016 363 12.92300 12.92300 +2016 364 14.54190 14.54190 +2016 365 15.95430 15.95430 +2016 366 16.07860 16.07860 +2017 1 17.06230 17.06230 +2017 2 17.51520 17.51520 +2017 3 15.35370 15.35370 +2017 4 13.88970 13.88970 +2017 5 13.24860 13.24860 +2017 6 14.72890 14.72890 +2017 7 14.13520 14.13520 +2017 8 15.65390 15.65390 +2017 9 17.55690 17.55690 +2017 10 18.33720 18.33720 +2017 11 17.97530 17.97530 +2017 12 17.96950 17.96950 +2017 13 16.82960 16.82960 +2017 14 18.07020 18.07020 +2017 15 16.62660 16.62660 +2017 16 17.35490 17.35490 +2017 17 17.53370 17.53370 +2017 18 15.35070 15.35070 +2017 19 13.56950 13.56950 +2017 20 14.04210 14.04210 +2017 21 15.26970 15.26970 +2017 22 13.94490 13.94490 +2017 23 15.45560 15.45560 +2017 24 14.58970 14.58970 +2017 25 14.58140 14.58140 +2017 26 15.51670 15.51670 +2017 27 17.14870 17.14870 +2017 28 17.34040 17.34040 +2017 29 17.04110 17.04110 +2017 30 19.10070 19.10070 +2017 31 17.45680 17.45680 +2017 32 18.85590 18.85590 +2017 33 19.13350 19.13350 +2017 34 17.26170 17.26170 +2017 35 18.23050 18.23050 +2017 36 19.52340 19.52340 +2017 37 21.02380 21.02380 +2017 38 17.56900 17.56900 +2017 39 14.67360 14.67360 +2017 40 15.06880 15.06880 +2017 41 16.52480 16.52480 +2017 42 16.86070 16.86070 +2017 43 19.67640 19.67640 +2017 44 18.06250 18.06250 +2017 45 18.64800 18.64800 +2017 46 16.48800 16.48800 +2017 47 17.36980 17.36980 +2017 48 17.95270 17.95270 +2017 49 18.79510 18.79510 +2017 50 17.91050 17.91050 +2017 51 17.16370 17.16370 +2017 52 17.48780 17.48780 +2017 53 18.69350 18.69350 +2017 54 17.61230 17.61230 +2017 55 17.61510 17.61510 +2017 56 17.69520 17.69520 +2017 57 17.94060 17.94060 +2017 58 17.78020 17.78020 +2017 59 17.37640 17.37640 +2017 60 18.05840 18.05840 +2017 61 16.41620 16.41620 +2017 62 17.04680 17.04680 +2017 63 15.79560 15.79560 +2017 64 15.67540 15.67540 +2017 65 15.87550 15.87550 +2017 66 12.19640 12.19640 +2017 67 14.50610 14.50610 +2017 68 17.55090 17.55090 +2017 69 18.07690 18.07690 +2017 70 17.60650 17.60650 +2017 71 17.18090 17.18090 +2017 72 15.04010 15.04010 +2017 73 13.65820 13.65820 +2017 74 14.88930 14.88930 +2017 75 14.98410 14.98410 +2017 76 16.25690 16.25690 +2017 77 15.10630 15.10630 +2017 78 14.46310 14.46310 +2017 79 16.25030 16.25030 +2017 80 16.62930 16.62930 +2017 81 18.04080 18.04080 +2017 82 16.88890 16.88890 +2017 83 16.56690 16.56690 +2017 84 16.31070 16.31070 +2017 85 17.03280 17.03280 +2017 86 17.87600 17.87600 +2017 87 16.07510 16.07510 +2017 88 16.97320 16.97320 +2017 89 15.97860 15.97860 +2017 90 15.76420 15.76420 +2017 91 17.31950 17.31950 +2017 92 18.66470 18.66470 +2017 93 15.25820 15.25820 +2017 94 16.52520 16.52520 +2017 95 14.40170 14.40170 +2017 96 13.64910 13.64910 +2017 97 12.79010 12.79010 +2017 98 12.86990 12.86990 +2017 99 14.27600 14.27600 +2017 100 15.78730 15.78730 +2017 101 16.53700 16.53700 +2017 102 15.46840 15.46840 +2017 103 15.19980 15.19980 +2017 104 13.96570 13.96570 +2017 105 13.05840 13.05840 +2017 106 12.69570 12.69570 +2017 107 12.65690 12.65690 +2017 108 12.10340 12.10340 +2017 109 12.03730 12.03730 +2017 110 11.26900 11.26900 +2017 111 12.15050 12.15050 +2017 112 12.03550 12.03550 +2017 113 13.55200 13.55200 +2017 114 12.92730 12.92730 +2017 115 12.23110 12.23110 +2017 116 12.35390 12.35390 +2017 117 13.62740 13.62740 +2017 118 14.07820 14.07820 +2017 119 14.13930 14.13930 +2017 120 9.35549 9.35549 +2017 121 8.73281 8.73281 +2017 122 10.16690 10.16690 +2017 123 10.74640 10.74640 +2017 124 10.38530 10.38530 +2017 125 9.80448 9.80448 +2017 126 9.64814 9.64814 +2017 127 9.36390 9.36390 +2017 128 11.60580 11.60580 +2017 129 11.95700 11.95700 +2017 130 13.77620 13.77620 +2017 131 12.99300 12.99300 +2017 132 9.54538 9.54538 +2017 133 8.46151 8.46151 +2017 134 8.58461 8.58461 +2017 135 9.42013 9.42013 +2017 136 12.45470 12.45470 +2017 137 12.65200 12.65200 +2017 138 10.28300 10.28300 +2017 139 7.91970 7.91970 +2017 140 5.50643 5.50643 +2017 141 5.76751 5.76751 +2017 142 7.36712 7.36712 +2017 143 10.11880 10.11880 +2017 144 9.08774 9.08774 +2017 145 9.37158 9.37158 +2017 146 12.65760 12.65760 +2017 147 11.52940 11.52940 +2017 148 10.68180 10.68180 +2017 149 9.53661 9.53661 +2017 150 9.71211 9.71211 +2017 151 8.51556 8.51556 +2017 152 8.99405 8.99405 +2017 153 9.84712 9.84712 +2017 154 7.81532 7.81532 +2017 155 7.58079 7.58079 +2017 156 8.03312 8.03312 +2017 157 6.67709 6.67709 +2017 158 6.86131 6.86131 +2017 159 6.99296 6.99296 +2017 160 9.20240 9.20240 +2017 161 7.81613 7.81613 +2017 162 8.28507 8.28507 +2017 163 10.19160 10.19160 +2017 164 8.44704 8.44704 +2017 165 6.59973 6.59973 +2017 166 9.79721 9.79721 +2017 167 8.59922 8.59922 +2017 168 9.40677 9.40677 +2017 169 9.21036 9.21036 +2017 170 7.68110 7.68110 +2017 171 9.01337 9.01337 +2017 172 10.92180 10.92180 +2017 173 12.28380 12.28380 +2017 174 11.00960 11.00960 +2017 175 8.93356 8.93356 +2017 176 6.91665 6.91665 +2017 177 6.48519 6.48519 +2017 178 6.78601 6.78601 +2017 179 5.76406 5.76406 +2017 180 5.86746 5.86746 +2017 181 9.79430 9.79430 +2017 182 10.27630 10.27630 +2017 183 8.03011 8.03011 +2017 184 7.24002 7.24002 +2017 185 7.54693 7.54693 +2017 186 6.44956 6.44956 +2017 187 7.45945 7.45945 +2017 188 6.91538 6.91538 +2017 189 7.89710 7.89710 +2017 190 7.98520 7.98520 +2017 191 6.90440 6.90440 +2017 192 5.05412 5.05412 +2017 193 2.98891 2.98891 +2017 194 4.58185 4.58185 +2017 195 5.93296 5.93296 +2017 196 5.86680 5.86680 +2017 197 8.08758 8.08758 +2017 198 9.40928 9.40928 +2017 199 8.68273 8.68273 +2017 200 11.15580 11.15580 +2017 201 9.04909 9.04909 +2017 202 8.89957 8.89957 +2017 203 7.23681 7.23681 +2017 204 7.90935 7.90935 +2017 205 8.03218 8.03218 +2017 206 7.52127 7.52127 +2017 207 7.77290 7.77290 +2017 208 6.93989 6.93989 +2017 209 4.02353 4.02353 +2017 210 3.63594 3.63594 +2017 211 3.64982 3.64982 +2017 212 7.50456 7.50456 +2017 213 8.65136 8.65136 +2017 214 7.03330 7.03330 +2017 215 5.69763 5.69763 +2017 216 6.38367 6.38367 +2017 217 7.47464 7.47464 +2017 218 10.73290 10.73290 +2017 219 10.31560 10.31560 +2017 220 11.28490 11.28490 +2017 221 9.47802 9.47802 +2017 222 8.84447 8.84447 +2017 223 10.60150 10.60150 +2017 224 10.50720 10.50720 +2017 225 9.44501 9.44501 +2017 226 7.63313 7.63313 +2017 227 8.51943 8.51943 +2017 228 9.59218 9.59218 +2017 229 9.94023 9.94023 +2017 230 9.26084 9.26084 +2017 231 8.67853 8.67853 +2017 232 8.40222 8.40222 +2017 233 7.11686 7.11686 +2017 234 6.45469 6.45469 +2017 235 7.24665 7.24665 +2017 236 8.00742 8.00742 +2017 237 8.71083 8.71083 +2017 238 9.96022 9.96022 +2017 239 10.92150 10.92150 +2017 240 11.70750 11.70750 +2017 241 9.14761 9.14761 +2017 242 9.32139 9.32139 +2017 243 8.60469 8.60469 +2017 244 8.38473 8.38473 +2017 245 8.40498 8.40498 +2017 246 8.88370 8.88370 +2017 247 8.69620 8.69620 +2017 248 11.09710 11.09710 +2017 249 9.81878 9.81878 +2017 250 8.65695 8.65695 +2017 251 7.77688 7.77688 +2017 252 5.25134 5.25134 +2017 253 6.30573 6.30573 +2017 254 7.24123 7.24123 +2017 255 9.60787 9.60787 +2017 256 12.80350 12.80350 +2017 257 13.15160 13.15160 +2017 258 10.49700 10.49700 +2017 259 9.61586 9.61586 +2017 260 7.38134 7.38134 +2017 261 7.98982 7.98982 +2017 262 8.86374 8.86374 +2017 263 8.88923 8.88923 +2017 264 8.47569 8.47569 +2017 265 10.14070 10.14070 +2017 266 10.94760 10.94760 +2017 267 12.52070 12.52070 +2017 268 12.51040 12.51040 +2017 269 11.92670 11.92670 +2017 270 9.88023 9.88023 +2017 271 9.49965 9.49965 +2017 272 9.94292 9.94292 +2017 273 8.43684 8.43684 +2017 274 10.32140 10.32140 +2017 275 11.44860 11.44860 +2017 276 10.97610 10.97610 +2017 277 12.33500 12.33500 +2017 278 10.71450 10.71450 +2017 279 11.19390 11.19390 +2017 280 10.75110 10.75110 +2017 281 12.21550 12.21550 +2017 282 12.11190 12.11190 +2017 283 11.11210 11.11210 +2017 284 10.88210 10.88210 +2017 285 10.61450 10.61450 +2017 286 12.58260 12.58260 +2017 287 10.32960 10.32960 +2017 288 11.48300 11.48300 +2017 289 11.04820 11.04820 +2017 290 10.64750 10.64750 +2017 291 10.26200 10.26200 +2017 292 11.81490 11.81490 +2017 293 12.24190 12.24190 +2017 294 11.89430 11.89430 +2017 295 9.98372 9.98372 +2017 296 11.76200 11.76200 +2017 297 11.47860 11.47860 +2017 298 13.02220 13.02220 +2017 299 10.98060 10.98060 +2017 300 11.22450 11.22450 +2017 301 12.47400 12.47400 +2017 302 12.46180 12.46180 +2017 303 12.21900 12.21900 +2017 304 12.25870 12.25870 +2017 305 12.50190 12.50190 +2017 306 13.35220 13.35220 +2017 307 15.16090 15.16090 +2017 308 13.83280 13.83280 +2017 309 11.41350 11.41350 +2017 310 11.01370 11.01370 +2017 311 12.71140 12.71140 +2017 312 11.80920 11.80920 +2017 313 12.43670 12.43670 +2017 314 10.80920 10.80920 +2017 315 11.12700 11.12700 +2017 316 11.33470 11.33470 +2017 317 10.45770 10.45770 +2017 318 11.51630 11.51630 +2017 319 12.27160 12.27160 +2017 320 13.55750 13.55750 +2017 321 12.97340 12.97340 +2017 322 12.12720 12.12720 +2017 323 14.56270 14.56270 +2017 324 14.05420 14.05420 +2017 325 14.46110 14.46110 +2017 326 16.39810 16.39810 +2017 327 16.98980 16.98980 +2017 328 15.92220 15.92220 +2017 329 15.94130 15.94130 +2017 330 15.50960 15.50960 +2017 331 15.70370 15.70370 +2017 332 15.49410 15.49410 +2017 333 15.32190 15.32190 +2017 334 15.36100 15.36100 +2017 335 15.29570 15.29570 +2017 336 16.80900 16.80900 +2017 337 17.67680 17.67680 +2017 338 17.44990 17.44990 +2017 339 18.65510 18.65510 +2017 340 18.22470 18.22470 +2017 341 17.09090 17.09090 +2017 342 17.01000 17.01000 +2017 343 17.43990 17.43990 +2017 344 17.98220 17.98220 +2017 345 17.83480 17.83480 +2017 346 17.07130 17.07130 +2017 347 15.76150 15.76150 +2017 348 15.99270 15.99270 +2017 349 17.96740 17.96740 +2017 350 17.68510 17.68510 +2017 351 17.39080 17.39080 +2017 352 16.56240 16.56240 +2017 353 16.96800 16.96800 +2017 354 16.95280 16.95280 +2017 355 18.07140 18.07140 +2017 356 15.61000 15.61000 +2017 357 16.68100 16.68100 +2017 358 16.64910 16.64910 +2017 359 15.79820 15.79820 +2017 360 13.95930 13.95930 +2017 361 12.80430 12.80430 +2017 362 16.07000 16.07000 +2017 363 16.79390 16.79390 +2017 364 17.10260 17.10260 +2017 365 16.68990 16.68990 +2018 1 17.39970 17.39970 +2018 2 17.54150 17.54150 +2018 3 17.01140 17.01140 +2018 4 17.32130 17.32130 +2018 5 18.31950 18.31950 +2018 6 14.71240 14.71240 +2018 7 17.61910 17.61910 +2018 8 18.77230 18.77230 +2018 9 19.26220 19.26220 +2018 10 19.91450 19.91450 +2018 11 19.21020 19.21020 +2018 12 18.30190 18.30190 +2018 13 18.58340 18.58340 +2018 14 18.33550 18.33550 +2018 15 16.96730 16.96730 +2018 16 17.27680 17.27680 +2018 17 17.08560 17.08560 +2018 18 18.05480 18.05480 +2018 19 19.63630 19.63630 +2018 20 19.84240 19.84240 +2018 21 18.50100 18.50100 +2018 22 20.20910 20.20910 +2018 23 20.59780 20.59780 +2018 24 20.62900 20.62900 +2018 25 20.71670 20.71670 +2018 26 20.17700 20.17700 +2018 27 20.48490 20.48490 +2018 28 20.24620 20.24620 +2018 29 19.42150 19.42150 +2018 30 18.47050 18.47050 +2018 31 18.31290 18.31290 +2018 32 18.14210 18.14210 +2018 33 15.63450 15.63450 +2018 34 15.20720 15.20720 +2018 35 16.28710 16.28710 +2018 36 16.58530 16.58530 +2018 37 16.61470 16.61470 +2018 38 15.38750 15.38750 +2018 39 15.18560 15.18560 +2018 40 18.75130 18.75130 +2018 41 19.97460 19.97460 +2018 42 20.42260 20.42260 +2018 43 19.78410 19.78410 +2018 44 19.44650 19.44650 +2018 45 19.66230 19.66230 +2018 46 19.61760 19.61760 +2018 47 19.64530 19.64530 +2018 48 20.25090 20.25090 +2018 49 20.02340 20.02340 +2018 50 19.90370 19.90370 +2018 51 17.61420 17.61420 +2018 52 15.87570 15.87570 +2018 53 15.97820 15.97820 +2018 54 16.73150 16.73150 +2018 55 16.75510 16.75510 +2018 56 16.22530 16.22530 +2018 57 14.99160 14.99160 +2018 58 16.97520 16.97520 +2018 59 17.18020 17.18020 +2018 60 17.02640 17.02640 +2018 61 17.15260 17.15260 +2018 62 17.75650 17.75650 +2018 63 19.38970 19.38970 +2018 64 19.45800 19.45800 +2018 65 18.35000 18.35000 +2018 66 17.58890 17.58890 +2018 67 15.88760 15.88760 +2018 68 14.96460 14.96460 +2018 69 14.37970 14.37970 +2018 70 14.53090 14.53090 +2018 71 15.54690 15.54690 +2018 72 15.36830 15.36830 +2018 73 14.73460 14.73460 +2018 74 15.83700 15.83700 +2018 75 15.75870 15.75870 +2018 76 14.47530 14.47530 +2018 77 15.55440 15.55440 +2018 78 16.12010 16.12010 +2018 79 15.36500 15.36500 +2018 80 15.60740 15.60740 +2018 81 15.13640 15.13640 +2018 82 15.33400 15.33400 +2018 83 15.62060 15.62060 +2018 84 16.01160 16.01160 +2018 85 17.18800 17.18800 +2018 86 16.67800 16.67800 +2018 87 16.59150 16.59150 +2018 88 16.73670 16.73670 +2018 89 15.05330 15.05330 +2018 90 15.75760 15.75760 +2018 91 14.63490 14.63490 +2018 92 14.88800 14.88800 +2018 93 16.56500 16.56500 +2018 94 15.70450 15.70450 +2018 95 15.68930 15.68930 +2018 96 15.00010 15.00010 +2018 97 13.19960 13.19960 +2018 98 13.85030 13.85030 +2018 99 13.91640 13.91640 +2018 100 7.18791 7.18791 +2018 101 9.08102 9.08102 +2018 102 11.52640 11.52640 +2018 103 11.65310 11.65310 +2018 104 13.08520 13.08520 +2018 105 14.80640 14.80640 +2018 106 15.45660 15.45660 +2018 107 12.06390 12.06390 +2018 108 11.08080 11.08080 +2018 109 12.69580 12.69580 +2018 110 13.49200 13.49200 +2018 111 12.50020 12.50020 +2018 112 10.84170 10.84170 +2018 113 10.89460 10.89460 +2018 114 11.48890 11.48890 +2018 115 11.46220 11.46220 +2018 116 12.48050 12.48050 +2018 117 13.69330 13.69330 +2018 118 14.61920 14.61920 +2018 119 14.65670 14.65670 +2018 120 14.49990 14.49990 +2018 121 11.80010 11.80010 +2018 122 10.33070 10.33070 +2018 123 10.56530 10.56530 +2018 124 11.31020 11.31020 +2018 125 12.81070 12.81070 +2018 126 11.89560 11.89560 +2018 127 11.97870 11.97870 +2018 128 13.25140 13.25140 +2018 129 12.15300 12.15300 +2018 130 13.59380 13.59380 +2018 131 14.62470 14.62470 +2018 132 13.97110 13.97110 +2018 133 13.72740 13.72740 +2018 134 13.11490 13.11490 +2018 135 13.66700 13.66700 +2018 136 10.84760 10.84760 +2018 137 10.38030 10.38030 +2018 138 10.91340 10.91340 +2018 139 11.25490 11.25490 +2018 140 11.56280 11.56280 +2018 141 11.02590 11.02590 +2018 142 9.03680 9.03680 +2018 143 8.49149 8.49149 +2018 144 8.72366 8.72366 +2018 145 7.16317 7.16317 +2018 146 9.05016 9.05016 +2018 147 6.26789 6.26789 +2018 148 6.55219 6.55219 +2018 149 6.66803 6.66803 +2018 150 6.12557 6.12557 +2018 151 6.88773 6.88773 +2018 152 9.27094 9.27094 +2018 153 9.36667 9.36667 +2018 154 11.58860 11.58860 +2018 155 11.01960 11.01960 +2018 156 7.34218 7.34218 +2018 157 5.52517 5.52517 +2018 158 8.08805 8.08805 +2018 159 6.65860 6.65860 +2018 160 7.29671 7.29671 +2018 161 8.04552 8.04552 +2018 162 11.64980 11.64980 +2018 163 10.75600 10.75600 +2018 164 10.19960 10.19960 +2018 165 9.69013 9.69013 +2018 166 10.80750 10.80750 +2018 167 10.32490 10.32490 +2018 168 9.64118 9.64118 +2018 169 9.76302 9.76302 +2018 170 8.51388 8.51388 +2018 171 7.86322 7.86322 +2018 172 5.81236 5.81236 +2018 173 5.33083 5.33083 +2018 174 8.21375 8.21375 +2018 175 7.81562 7.81562 +2018 176 5.41212 5.41212 +2018 177 4.84428 4.84428 +2018 178 5.36060 5.36060 +2018 179 5.87431 5.87431 +2018 180 4.59944 4.59944 +2018 181 7.16329 7.16329 +2018 182 8.96784 8.96784 +2018 183 6.57035 6.57035 +2018 184 5.43734 5.43734 +2018 185 5.38193 5.38193 +2018 186 5.73767 5.73767 +2018 187 7.66100 7.66100 +2018 188 10.41540 10.41540 +2018 189 9.22940 9.22940 +2018 190 6.49435 6.49435 +2018 191 6.39211 6.39211 +2018 192 7.69328 7.69328 +2018 193 6.91812 6.91812 +2018 194 9.12475 9.12475 +2018 195 10.01820 10.01820 +2018 196 9.30764 9.30764 +2018 197 8.89895 8.89895 +2018 198 8.04869 8.04869 +2018 199 7.62847 7.62847 +2018 200 8.05391 8.05391 +2018 201 7.77306 7.77306 +2018 202 9.42408 9.42408 +2018 203 7.18107 7.18107 +2018 204 5.44044 5.44044 +2018 205 5.35704 5.35704 +2018 206 8.40871 8.40871 +2018 207 7.68268 7.68268 +2018 208 8.60285 8.60285 +2018 209 8.58708 8.58708 +2018 210 7.31940 7.31940 +2018 211 7.20027 7.20027 +2018 212 8.82933 8.82933 +2018 213 8.21644 8.21644 +2018 214 7.66196 7.66196 +2018 215 7.03188 7.03188 +2018 216 9.02336 9.02336 +2018 217 9.50898 9.50898 +2018 218 8.92267 8.92267 +2018 219 10.71810 10.71810 +2018 220 9.64771 9.64771 +2018 221 9.36096 9.36096 +2018 222 8.48873 8.48873 +2018 223 6.57719 6.57719 +2018 224 7.73364 7.73364 +2018 225 8.68298 8.68298 +2018 226 8.96899 8.96899 +2018 227 9.10890 9.10890 +2018 228 9.50034 9.50034 +2018 229 7.66925 7.66925 +2018 230 6.37081 6.37081 +2018 231 8.69315 8.69315 +2018 232 8.35232 8.35232 +2018 233 7.81850 7.81850 +2018 234 8.28760 8.28760 +2018 235 6.75710 6.75710 +2018 236 7.93091 7.93091 +2018 237 7.96304 7.96304 +2018 238 7.58154 7.58154 +2018 239 8.48693 8.48693 +2018 240 10.13890 10.13890 +2018 241 9.87031 9.87031 +2018 242 9.55038 9.55038 +2018 243 8.54037 8.54037 +2018 244 10.23670 10.23670 +2018 245 8.19167 8.19167 +2018 246 7.20139 7.20139 +2018 247 8.27623 8.27623 +2018 248 7.80184 7.80184 +2018 249 9.42464 9.42464 +2018 250 9.29416 9.29416 +2018 251 6.90640 6.90640 +2018 252 7.93651 7.93651 +2018 253 8.99604 8.99604 +2018 254 9.32273 9.32273 +2018 255 9.44754 9.44754 +2018 256 10.75150 10.75150 +2018 257 11.05800 11.05800 +2018 258 10.48360 10.48360 +2018 259 11.49620 11.49620 +2018 260 12.63360 12.63360 +2018 261 12.29440 12.29440 +2018 262 13.78100 13.78100 +2018 263 11.92830 11.92830 +2018 264 10.79860 10.79860 +2018 265 10.79660 10.79660 +2018 266 9.86725 9.86725 +2018 267 7.27440 7.27440 +2018 268 8.90320 8.90320 +2018 269 8.72815 8.72815 +2018 270 8.42900 8.42900 +2018 271 8.59300 8.59300 +2018 272 9.36776 9.36776 +2018 273 11.11090 11.11090 +2018 274 11.02330 11.02330 +2018 275 10.89340 10.89340 +2018 276 10.56440 10.56440 +2018 277 10.94520 10.94520 +2018 278 12.06680 12.06680 +2018 279 11.67090 11.67090 +2018 280 11.41300 11.41300 +2018 281 11.06770 11.06770 +2018 282 9.59802 9.59802 +2018 283 11.45760 11.45760 +2018 284 10.75610 10.75610 +2018 285 7.44854 7.44854 +2018 286 8.90372 8.90372 +2018 287 10.06310 10.06310 +2018 288 10.11890 10.11890 +2018 289 10.38210 10.38210 +2018 290 12.83400 12.83400 +2018 291 12.06040 12.06040 +2018 292 13.74080 13.74080 +2018 293 13.64060 13.64060 +2018 294 14.05510 14.05510 +2018 295 14.48700 14.48700 +2018 296 14.14360 14.14360 +2018 297 12.37220 12.37220 +2018 298 13.73750 13.73750 +2018 299 11.96860 11.96860 +2018 300 13.93940 13.93940 +2018 301 11.59420 11.59420 +2018 302 11.17010 11.17010 +2018 303 11.38100 11.38100 +2018 304 9.91603 9.91603 +2018 305 11.19960 11.19960 +2018 306 11.67310 11.67310 +2018 307 12.92590 12.92590 +2018 308 12.39140 12.39140 +2018 309 13.51490 13.51490 +2018 310 14.33880 14.33880 +2018 311 15.62720 15.62720 +2018 312 15.89130 15.89130 +2018 313 14.74030 14.74030 +2018 314 13.58220 13.58220 +2018 315 12.94070 12.94070 +2018 316 14.41930 14.41930 +2018 317 14.18040 14.18040 +2018 318 14.25790 14.25790 +2018 319 14.74070 14.74070 +2018 320 14.40140 14.40140 +2018 321 13.65550 13.65550 +2018 322 12.10960 12.10960 +2018 323 9.46762 9.46762 +2018 324 9.11444 9.11444 +2018 325 11.47430 11.47430 +2018 326 13.76420 13.76420 +2018 327 13.08620 13.08620 +2018 328 14.39230 14.39230 +2018 329 14.71470 14.71470 +2018 330 14.23180 14.23180 +2018 331 15.75390 15.75390 +2018 332 15.89990 15.89990 +2018 333 14.95230 14.95230 +2018 334 13.43410 13.43410 +2018 335 15.55910 15.55910 +2018 336 15.54010 15.54010 +2018 337 15.48990 15.48990 +2018 338 13.97040 13.97040 +2018 339 12.14740 12.14740 +2018 340 13.21600 13.21600 +2018 341 15.43130 15.43130 +2018 342 17.51160 17.51160 +2018 343 17.95940 17.95940 +2018 344 15.91180 15.91180 +2018 345 15.65540 15.65540 +2018 346 16.16200 16.16200 +2018 347 15.84980 15.84980 +2018 348 16.07460 16.07460 +2018 349 17.61480 17.61480 +2018 350 18.20690 18.20690 +2018 351 18.58120 18.58120 +2018 352 17.07360 17.07360 +2018 353 16.15380 16.15380 +2018 354 15.67050 15.67050 +2018 355 15.66300 15.66300 +2018 356 16.19780 16.19780 +2018 357 15.71990 15.71990 +2018 358 16.51360 16.51360 +2018 359 18.61630 18.61630 +2018 360 16.55140 16.55140 +2018 361 15.07850 15.07850 +2018 362 16.26220 16.26220 +2018 363 16.97380 16.97380 +2018 364 17.95010 17.95010 +2018 365 19.11550 19.11550 +2019 1 19.06440 19.06440 +2019 2 18.63080 18.63080 +2019 3 19.08110 19.08110 +2019 4 18.19130 18.19130 +2019 5 18.73570 18.73570 +2019 6 19.98500 19.98500 +2019 7 19.35520 19.35520 +2019 8 18.27450 18.27450 +2019 9 19.62360 19.62360 +2019 10 19.60590 19.60590 +2019 11 18.48300 18.48300 +2019 12 17.68150 17.68150 +2019 13 14.77800 14.77800 +2019 14 15.09990 15.09990 +2019 15 17.41330 17.41330 +2019 16 19.55920 19.55920 +2019 17 19.05080 19.05080 +2019 18 20.09580 20.09580 +2019 19 18.43460 18.43460 +2019 20 17.06070 17.06070 +2019 21 17.99370 17.99370 +2019 22 18.46020 18.46020 +2019 23 18.22080 18.22080 +2019 24 17.00370 17.00370 +2019 25 16.83450 16.83450 +2019 26 18.28600 18.28600 +2019 27 20.80610 20.80610 +2019 28 22.19600 22.19600 +2019 29 21.09490 21.09490 +2019 30 19.87130 19.87130 +2019 31 19.36730 19.36730 +2019 32 18.56310 18.56310 +2019 33 18.11590 18.11590 +2019 34 18.53980 18.53980 +2019 35 19.95880 19.95880 +2019 36 18.52210 18.52210 +2019 37 15.87580 15.87580 +2019 38 15.94070 15.94070 +2019 39 17.40050 17.40050 +2019 40 18.92540 18.92540 +2019 41 20.11290 20.11290 +2019 42 19.69400 19.69400 +2019 43 20.88720 20.88720 +2019 44 20.80300 20.80300 +2019 45 21.00310 21.00310 +2019 46 19.43590 19.43590 +2019 47 17.30690 17.30690 +2019 48 18.99050 18.99050 +2019 49 18.13580 18.13580 +2019 50 19.79840 19.79840 +2019 51 19.61970 19.61970 +2019 52 18.03670 18.03670 +2019 53 18.22200 18.22200 +2019 54 14.86870 14.86870 +2019 55 13.55170 13.55170 +2019 56 14.97750 14.97750 +2019 57 16.31200 16.31200 +2019 58 15.72090 15.72090 +2019 59 15.04840 15.04840 +2019 60 15.75590 15.75590 +2019 61 17.60570 17.60570 +2019 62 18.12020 18.12020 +2019 63 17.38250 17.38250 +2019 64 17.08090 17.08090 +2019 65 17.66000 17.66000 +2019 66 16.44760 16.44760 +2019 67 13.69100 13.69100 +2019 68 16.09020 16.09020 +2019 69 17.31780 17.31780 +2019 70 17.60760 17.60760 +2019 71 18.02210 18.02210 +2019 72 19.59580 19.59580 +2019 73 18.43720 18.43720 +2019 74 18.88420 18.88420 +2019 75 19.01260 19.01260 +2019 76 17.03510 17.03510 +2019 77 16.88030 16.88030 +2019 78 17.14600 17.14600 +2019 79 17.52640 17.52640 +2019 80 16.62230 16.62230 +2019 81 16.04750 16.04750 +2019 82 16.04160 16.04160 +2019 83 16.77070 16.77070 +2019 84 16.75120 16.75120 +2019 85 17.04660 17.04660 +2019 86 16.39530 16.39530 +2019 87 16.25390 16.25390 +2019 88 16.18840 16.18840 +2019 89 16.01680 16.01680 +2019 90 17.01450 17.01450 +2019 91 15.54630 15.54630 +2019 92 13.66750 13.66750 +2019 93 13.02610 13.02610 +2019 94 13.06440 13.06440 +2019 95 12.37820 12.37820 +2019 96 11.20170 11.20170 +2019 97 12.00570 12.00570 +2019 98 13.04640 13.04640 +2019 99 13.88880 13.88880 +2019 100 13.01270 13.01270 +2019 101 13.05950 13.05950 +2019 102 10.57800 10.57800 +2019 103 11.15100 11.15100 +2019 104 11.42330 11.42330 +2019 105 11.31640 11.31640 +2019 106 11.44820 11.44820 +2019 107 11.42600 11.42600 +2019 108 11.29180 11.29180 +2019 109 12.63200 12.63200 +2019 110 12.30840 12.30840 +2019 111 13.09980 13.09980 +2019 112 12.54280 12.54280 +2019 113 13.59220 13.59220 +2019 114 14.55450 14.55450 +2019 115 14.22990 14.22990 +2019 116 14.25500 14.25500 +2019 117 13.81220 13.81220 +2019 118 11.28670 11.28670 +2019 119 10.14850 10.14850 +2019 120 9.98593 9.98593 +2019 121 10.53140 10.53140 +2019 122 11.54480 11.54480 +2019 123 11.65290 11.65290 +2019 124 12.13110 12.13110 +2019 125 11.61340 11.61340 +2019 126 11.53620 11.53620 +2019 127 11.33720 11.33720 +2019 128 12.33450 12.33450 +2019 129 13.48050 13.48050 +2019 130 12.39090 12.39090 +2019 131 13.61130 13.61130 +2019 132 12.38380 12.38380 +2019 133 9.68630 9.68630 +2019 134 11.40600 11.40600 +2019 135 12.38400 12.38400 +2019 136 10.39920 10.39920 +2019 137 9.67607 9.67607 +2019 138 11.50500 11.50500 +2019 139 10.83060 10.83060 +2019 140 9.25164 9.25164 +2019 141 9.40295 9.40295 +2019 142 10.61720 10.61720 +2019 143 9.66771 9.66771 +2019 144 10.01280 10.01280 +2019 145 9.99063 9.99063 +2019 146 10.66860 10.66860 +2019 147 13.31660 13.31660 +2019 148 11.71410 11.71410 +2019 149 11.47540 11.47540 +2019 150 11.18020 11.18020 +2019 151 7.57051 7.57051 +2019 152 6.83578 6.83578 +2019 153 6.21853 6.21853 +2019 154 8.09110 8.09110 +2019 155 10.27160 10.27160 +2019 156 8.39018 8.39018 +2019 157 8.34328 8.34328 +2019 158 10.05740 10.05740 +2019 159 7.42156 7.42156 +2019 160 10.01980 10.01980 +2019 161 9.87106 9.87106 +2019 162 9.24549 9.24549 +2019 163 10.20590 10.20590 +2019 164 9.99243 9.99243 +2019 165 10.88850 10.88850 +2019 166 9.90680 9.90680 +2019 167 8.40994 8.40994 +2019 168 6.81856 6.81856 +2019 169 5.59818 5.59818 +2019 170 6.20639 6.20639 +2019 171 10.91730 10.91730 +2019 172 7.28546 7.28546 +2019 173 7.55960 7.55960 +2019 174 7.99742 7.99742 +2019 175 7.18034 7.18034 +2019 176 5.85231 5.85231 +2019 177 5.99919 5.99919 +2019 178 6.33771 6.33771 +2019 179 7.02413 7.02413 +2019 180 5.16060 5.16060 +2019 181 7.77541 7.77541 +2019 182 10.27040 10.27040 +2019 183 12.60140 12.60140 +2019 184 12.50160 12.50160 +2019 185 6.79492 6.79492 +2019 186 6.14417 6.14417 +2019 187 6.40164 6.40164 +2019 188 8.51369 8.51369 +2019 189 6.73369 6.73369 +2019 190 8.48091 8.48091 +2019 191 9.33638 9.33638 +2019 192 9.20254 9.20254 +2019 193 9.98365 9.98365 +2019 194 10.08540 10.08540 +2019 195 8.41956 8.41956 +2019 196 9.62398 9.62398 +2019 197 8.23252 8.23252 +2019 198 8.15014 8.15014 +2019 199 8.87454 8.87454 +2019 200 8.70884 8.70884 +2019 201 8.22291 8.22291 +2019 202 6.65426 6.65426 +2019 203 7.33121 7.33121 +2019 204 7.51118 7.51118 +2019 205 7.84483 7.84483 +2019 206 9.15850 9.15850 +2019 207 8.55751 8.55751 +2019 208 7.58418 7.58418 +2019 209 9.05268 9.05268 +2019 210 8.90703 8.90703 +2019 211 6.95238 6.95238 +2019 212 4.66568 4.66568 +2019 213 6.71403 6.71403 +2019 214 7.72015 7.72015 +2019 215 7.78346 7.78346 +2019 216 5.10880 5.10880 +2019 217 7.42442 7.42442 +2019 218 7.75670 7.75670 +2019 219 9.22367 9.22367 +2019 220 9.35661 9.35661 +2019 221 9.57867 9.57867 +2019 222 10.18840 10.18840 +2019 223 8.86394 8.86394 +2019 224 8.47017 8.47017 +2019 225 8.77704 8.77704 +2019 226 7.43566 7.43566 +2019 227 7.43476 7.43476 +2019 228 8.92788 8.92788 +2019 229 6.15924 6.15924 +2019 230 5.65828 5.65828 +2019 231 7.68360 7.68360 +2019 232 8.45216 8.45216 +2019 233 8.27819 8.27819 +2019 234 8.12610 8.12610 +2019 235 7.55588 7.55588 +2019 236 9.25841 9.25841 +2019 237 9.44681 9.44681 +2019 238 8.38825 8.38825 +2019 239 8.17489 8.17489 +2019 240 7.74634 7.74634 +2019 241 9.13453 9.13453 +2019 242 9.02364 9.02364 +2019 243 8.34869 8.34869 +2019 244 8.63699 8.63699 +2019 245 8.55956 8.55956 +2019 246 12.23710 12.23710 +2019 247 12.26450 12.26450 +2019 248 8.78608 8.78608 +2019 249 8.16308 8.16308 +2019 250 8.37490 8.37490 +2019 251 6.99834 6.99834 +2019 252 5.52127 5.52127 +2019 253 8.44219 8.44219 +2019 254 8.04365 8.04365 +2019 255 9.77994 9.77994 +2019 256 10.02010 10.02010 +2019 257 9.30760 9.30760 +2019 258 9.57755 9.57755 +2019 259 11.09640 11.09640 +2019 260 9.21262 9.21262 +2019 261 9.50534 9.50534 +2019 262 9.23325 9.23325 +2019 263 9.52677 9.52677 +2019 264 9.85693 9.85693 +2019 265 9.42732 9.42732 +2019 266 9.26959 9.26959 +2019 267 7.55116 7.55116 +2019 268 7.21972 7.21972 +2019 269 9.73058 9.73058 +2019 270 10.02170 10.02170 +2019 271 11.37610 11.37610 +2019 272 10.90410 10.90410 +2019 273 8.64534 8.64534 +2019 274 6.72343 6.72343 +2019 275 7.34223 7.34223 +2019 276 8.20889 8.20889 +2019 277 10.08040 10.08040 +2019 278 9.75975 9.75975 +2019 279 9.86806 9.86806 +2019 280 11.66290 11.66290 +2019 281 12.04750 12.04750 +2019 282 12.97310 12.97310 +2019 283 12.40020 12.40020 +2019 284 12.75950 12.75950 +2019 285 11.40940 11.40940 +2019 286 10.24360 10.24360 +2019 287 10.51520 10.51520 +2019 288 12.29240 12.29240 +2019 289 12.30160 12.30160 +2019 290 12.31290 12.31290 +2019 291 12.83710 12.83710 +2019 292 12.53410 12.53410 +2019 293 10.55170 10.55170 +2019 294 10.86080 10.86080 +2019 295 9.06915 9.06915 +2019 296 9.00271 9.00271 +2019 297 9.71366 9.71366 +2019 298 11.38430 11.38430 +2019 299 14.03840 14.03840 +2019 300 13.17610 13.17610 +2019 301 11.45970 11.45970 +2019 302 10.72770 10.72770 +2019 303 12.57710 12.57710 +2019 304 11.31520 11.31520 +2019 305 13.50370 13.50370 +2019 306 17.50980 17.50980 +2019 307 18.14760 18.14760 +2019 308 17.45390 17.45390 +2019 309 17.11750 17.11750 +2019 310 17.42020 17.42020 +2019 311 16.18920 16.18920 +2019 312 15.79300 15.79300 +2019 313 14.96900 14.96900 +2019 314 13.13040 13.13040 +2019 315 11.31940 11.31940 +2019 316 11.18060 11.18060 +2019 317 12.82070 12.82070 +2019 318 12.10920 12.10920 +2019 319 13.74510 13.74510 +2019 320 15.13860 15.13860 +2019 321 13.48200 13.48200 +2019 322 11.56190 11.56190 +2019 323 12.87420 12.87420 +2019 324 13.53480 13.53480 +2019 325 14.69260 14.69260 +2019 326 18.00160 18.00160 +2019 327 18.87070 18.87070 +2019 328 19.00270 19.00270 +2019 329 16.77650 16.77650 +2019 330 17.68310 17.68310 +2019 331 17.09440 17.09440 +2019 332 16.67420 16.67420 +2019 333 16.64070 16.64070 +2019 334 16.35080 16.35080 +2019 335 16.92330 16.92330 +2019 336 16.48810 16.48810 +2019 337 16.33120 16.33120 +2019 338 17.01050 17.01050 +2019 339 16.92400 16.92400 +2019 340 17.92810 17.92810 +2019 341 17.32370 17.32370 +2019 342 15.79590 15.79590 +2019 343 15.01830 15.01830 +2019 344 16.10440 16.10440 +2019 345 17.17640 17.17640 +2019 346 17.17840 17.17840 +2019 347 16.47360 16.47360 +2019 348 15.61000 15.61000 +2019 349 16.34950 16.34950 +2019 350 16.44310 16.44310 +2019 351 13.78530 13.78530 +2019 352 14.00190 14.00190 +2019 353 13.77130 13.77130 +2019 354 12.76720 12.76720 +2019 355 15.00720 15.00720 +2019 356 16.72230 16.72230 +2019 357 17.54180 17.54180 +2019 358 16.08800 16.08800 +2019 359 16.44910 16.44910 +2019 360 16.56800 16.56800 +2019 361 14.76130 14.76130 +2019 362 14.02030 14.02030 +2019 363 16.14340 16.14340 +2019 364 17.71730 17.71730 +2019 365 18.84780 18.84780 +2020 1 18.96420 18.96420 +2020 2 17.55600 17.55600 +2020 3 14.39710 14.39710 +2020 4 14.60370 14.60370 +2020 5 14.80930 14.80930 +2020 6 13.84120 13.84120 +2020 7 13.14520 13.14520 +2020 8 14.66680 14.66680 +2020 9 15.75790 15.75790 +2020 10 17.16230 17.16230 +2020 11 17.44990 17.44990 +2020 12 17.58630 17.58630 +2020 13 13.87550 13.87550 +2020 14 15.38690 15.38690 +2020 15 15.54560 15.54560 +2020 16 15.82320 15.82320 +2020 17 15.62420 15.62420 +2020 18 18.40460 18.40460 +2020 19 19.72980 19.72980 +2020 20 18.93900 18.93900 +2020 21 19.08210 19.08210 +2020 22 19.34900 19.34900 +2020 23 20.21340 20.21340 +2020 24 20.88040 20.88040 +2020 25 21.43850 21.43850 +2020 26 20.81680 20.81680 +2020 27 20.13450 20.13450 +2020 28 20.34200 20.34200 +2020 29 19.98940 19.98940 +2020 30 19.99080 19.99080 +2020 31 22.01850 22.01850 +2020 32 20.40050 20.40050 +2020 33 22.17640 22.17640 +2020 34 21.38490 21.38490 +2020 35 19.33670 19.33670 +2020 36 18.02620 18.02620 +2020 37 19.16390 19.16390 +2020 38 17.26910 17.26910 +2020 39 16.28770 16.28770 +2020 40 18.00280 18.00280 +2020 41 19.19400 19.19400 +2020 42 18.80900 18.80900 +2020 43 19.83040 19.83040 +2020 44 18.81950 18.81950 +2020 45 18.40850 18.40850 +2020 46 17.66670 17.66670 +2020 47 19.17400 19.17400 +2020 48 19.18480 19.18480 +2020 49 20.00240 20.00240 +2020 50 20.19430 20.19430 +2020 51 19.94960 19.94960 +2020 52 17.96220 17.96220 +2020 53 15.31760 15.31760 +2020 54 16.05530 16.05530 +2020 55 17.13240 17.13240 +2020 56 18.58410 18.58410 +2020 57 19.60980 19.60980 +2020 58 20.12610 20.12610 +2020 59 19.13220 19.13220 +2020 60 18.56750 18.56750 +2020 61 17.82120 17.82120 +2020 62 18.45860 18.45860 +2020 63 18.32850 18.32850 +2020 64 15.52790 15.52790 +2020 65 15.02020 15.02020 +2020 66 15.72150 15.72150 +2020 67 17.04990 17.04990 +2020 68 16.55640 16.55640 +2020 69 16.98210 16.98210 +2020 70 15.22730 15.22730 +2020 71 15.18990 15.18990 +2020 72 15.09510 15.09510 +2020 73 15.44210 15.44210 +2020 74 16.21280 16.21280 +2020 75 16.82430 16.82430 +2020 76 14.32490 14.32490 +2020 77 13.68440 13.68440 +2020 78 13.21990 13.21990 +2020 79 15.17280 15.17280 +2020 80 15.87710 15.87710 +2020 81 15.53250 15.53250 +2020 82 16.25260 16.25260 +2020 83 12.58090 12.58090 +2020 84 13.09100 13.09100 +2020 85 13.38400 13.38400 +2020 86 12.87860 12.87860 +2020 87 12.35670 12.35670 +2020 88 13.45240 13.45240 +2020 89 14.11840 14.11840 +2020 90 14.73370 14.73370 +2020 91 15.12620 15.12620 +2020 92 14.91740 14.91740 +2020 93 13.92290 13.92290 +2020 94 14.17060 14.17060 +2020 95 13.21040 13.21040 +2020 96 13.05930 13.05930 +2020 97 14.15750 14.15750 +2020 98 13.65120 13.65120 +2020 99 12.46630 12.46630 +2020 100 12.12820 12.12820 +2020 101 12.60070 12.60070 +2020 102 14.20770 14.20770 +2020 103 14.35000 14.35000 +2020 104 10.64660 10.64660 +2020 105 11.18490 11.18490 +2020 106 12.26460 12.26460 +2020 107 14.20540 14.20540 +2020 108 14.96720 14.96720 +2020 109 14.04370 14.04370 +2020 110 13.86230 13.86230 +2020 111 12.19600 12.19600 +2020 112 11.35900 11.35900 +2020 113 12.84920 12.84920 +2020 114 13.63390 13.63390 +2020 115 12.16140 12.16140 +2020 116 13.45730 13.45730 +2020 117 12.50620 12.50620 +2020 118 14.35330 14.35330 +2020 119 12.12690 12.12690 +2020 120 12.53680 12.53680 +2020 121 12.34670 12.34670 +2020 122 13.01840 13.01840 +2020 123 14.93530 14.93530 +2020 124 13.85360 13.85360 +2020 125 9.79687 9.79687 +2020 126 8.53212 8.53212 +2020 127 9.71063 9.71063 +2020 128 12.44630 12.44630 +2020 129 11.78250 11.78250 +2020 130 11.27780 11.27780 +2020 131 11.30040 11.30040 +2020 132 10.91270 10.91270 +2020 133 11.59690 11.59690 +2020 134 11.32310 11.32310 +2020 135 10.65380 10.65380 +2020 136 11.14240 11.14240 +2020 137 11.36680 11.36680 +2020 138 10.27990 10.27990 +2020 139 9.07119 9.07119 +2020 140 8.08883 8.08883 +2020 141 7.26268 7.26268 +2020 142 7.66305 7.66305 +2020 143 7.81758 7.81758 +2020 144 10.89940 10.89940 +2020 145 14.39810 14.39810 +2020 146 12.57380 12.57380 +2020 147 9.96481 9.96481 +2020 148 8.86291 8.86291 +2020 149 8.84972 8.84972 +2020 150 10.15730 10.15730 +2020 151 11.03320 11.03320 +2020 152 11.78810 11.78810 +2020 153 12.24350 12.24350 +2020 154 10.74980 10.74980 +2020 155 12.66520 12.66520 +2020 156 10.34550 10.34550 +2020 157 9.14383 9.14383 +2020 158 8.84016 8.84016 +2020 159 8.23271 8.23271 +2020 160 8.60714 8.60714 +2020 161 7.66380 7.66380 +2020 162 8.47949 8.47949 +2020 163 10.28030 10.28030 +2020 164 9.15626 9.15626 +2020 165 7.60920 7.60920 +2020 166 7.64395 7.64395 +2020 167 9.50806 9.50806 +2020 168 10.71590 10.71590 +2020 169 11.20040 11.20040 +2020 170 10.99720 10.99720 +2020 171 11.12190 11.12190 +2020 172 11.59960 11.59960 +2020 173 11.62100 11.62100 +2020 174 10.04970 10.04970 +2020 175 10.01710 10.01710 +2020 176 9.39269 9.39269 +2020 177 10.53090 10.53090 +2020 178 11.21880 11.21880 +2020 179 10.42090 10.42090 +2020 180 9.14844 9.14844 +2020 181 7.94468 7.94468 +2020 182 5.52371 5.52371 +2020 183 5.54758 5.54758 +2020 184 5.57723 5.57723 +2020 185 6.52212 6.52212 +2020 186 8.56167 8.56167 +2020 187 9.24813 9.24813 +2020 188 8.23191 8.23191 +2020 189 6.86845 6.86845 +2020 190 4.84822 4.84822 +2020 191 6.10868 6.10868 +2020 192 6.09788 6.09788 +2020 193 7.94674 7.94674 +2020 194 10.14030 10.14030 +2020 195 10.60040 10.60040 +2020 196 9.44347 9.44347 +2020 197 7.35744 7.35744 +2020 198 9.45331 9.45331 +2020 199 11.29930 11.29930 +2020 200 10.55310 10.55310 +2020 201 10.69840 10.69840 +2020 202 10.62780 10.62780 +2020 203 7.61323 7.61323 +2020 204 9.37326 9.37326 +2020 205 7.98793 7.98793 +2020 206 6.69791 6.69791 +2020 207 7.75044 7.75044 +2020 208 5.52822 5.52822 +2020 209 7.01753 7.01753 +2020 210 7.99998 7.99998 +2020 211 7.73227 7.73227 +2020 212 9.21536 9.21536 +2020 213 9.82400 9.82400 +2020 214 9.40453 9.40453 +2020 215 8.87520 8.87520 +2020 216 8.28246 8.28246 +2020 217 8.13937 8.13937 +2020 218 8.63692 8.63692 +2020 219 9.66377 9.66377 +2020 220 8.32766 8.32766 +2020 221 6.63939 6.63939 +2020 222 8.48965 8.48965 +2020 223 8.33640 8.33640 +2020 224 9.50689 9.50689 +2020 225 7.74322 7.74322 +2020 226 7.40206 7.40206 +2020 227 5.79932 5.79932 +2020 228 5.22687 5.22687 +2020 229 5.37290 5.37290 +2020 230 8.63074 8.63074 +2020 231 10.51720 10.51720 +2020 232 11.08790 11.08790 +2020 233 10.33880 10.33880 +2020 234 10.25300 10.25300 +2020 235 10.71290 10.71290 +2020 236 9.77608 9.77608 +2020 237 9.19027 9.19027 +2020 238 8.12797 8.12797 +2020 239 6.88277 6.88277 +2020 240 7.24546 7.24546 +2020 241 9.28207 9.28207 +2020 242 10.62630 10.62630 +2020 243 10.25760 10.25760 +2020 244 10.71170 10.71170 +2020 245 9.10297 9.10297 +2020 246 7.05840 7.05840 +2020 247 7.62171 7.62171 +2020 248 9.27080 9.27080 +2020 249 10.64840 10.64840 +2020 250 9.49585 9.49585 +2020 251 8.16681 8.16681 +2020 252 7.28506 7.28506 +2020 253 8.95235 8.95235 +2020 254 7.89253 7.89253 +2020 255 7.57918 7.57918 +2020 256 8.22633 8.22633 +2020 257 10.04460 10.04460 +2020 258 10.71840 10.71840 +2020 259 10.06840 10.06840 +2020 260 10.05770 10.05770 +2020 261 9.93600 9.93600 +2020 262 9.61842 9.61842 +2020 263 10.04800 10.04800 +2020 264 10.46300 10.46300 +2020 265 10.27760 10.27760 +2020 266 11.13360 11.13360 +2020 267 12.42580 12.42580 +2020 268 12.22890 12.22890 +2020 269 12.22370 12.22370 +2020 270 12.75650 12.75650 +2020 271 9.77554 9.77554 +2020 272 8.23393 8.23393 +2020 273 8.52837 8.52837 +2020 274 8.75036 8.75036 +2020 275 10.15370 10.15370 +2020 276 10.93140 10.93140 +2020 277 13.08630 13.08630 +2020 278 14.59760 14.59760 +2020 279 12.75100 12.75100 +2020 280 11.74750 11.74750 +2020 281 10.45230 10.45230 +2020 282 9.20764 9.20764 +2020 283 9.74273 9.74273 +2020 284 11.10270 11.10270 +2020 285 11.83600 11.83600 +2020 286 12.59500 12.59500 +2020 287 11.10430 11.10430 +2020 288 8.16032 8.16032 +2020 289 9.09455 9.09455 +2020 290 9.93569 9.93569 +2020 291 10.42780 10.42780 +2020 292 12.65280 12.65280 +2020 293 13.92110 13.92110 +2020 294 13.80490 13.80490 +2020 295 14.04110 14.04110 +2020 296 13.93500 13.93500 +2020 297 14.47670 14.47670 +2020 298 14.62140 14.62140 +2020 299 14.74350 14.74350 +2020 300 15.02110 15.02110 +2020 301 12.26890 12.26890 +2020 302 14.21700 14.21700 +2020 303 14.83810 14.83810 +2020 304 14.54380 14.54380 +2020 305 14.86940 14.86940 +2020 306 15.04720 15.04720 +2020 307 14.21240 14.21240 +2020 308 15.73490 15.73490 +2020 309 14.69420 14.69420 +2020 310 16.31400 16.31400 +2020 311 15.61870 15.61870 +2020 312 15.71640 15.71640 +2020 313 12.18350 12.18350 +2020 314 11.74480 11.74480 +2020 315 13.29010 13.29010 +2020 316 13.86330 13.86330 +2020 317 14.80520 14.80520 +2020 318 13.27910 13.27910 +2020 319 14.68300 14.68300 +2020 320 14.75760 14.75760 +2020 321 15.41390 15.41390 +2020 322 13.55650 13.55650 +2020 323 13.06920 13.06920 +2020 324 13.76460 13.76460 +2020 325 13.97410 13.97410 +2020 326 13.60000 13.60000 +2020 327 12.04310 12.04310 +2020 328 11.83620 11.83620 +2020 329 14.35720 14.35720 +2020 330 16.13990 16.13990 +2020 331 15.53580 15.53580 +2020 332 14.11600 14.11600 +2020 333 12.65230 12.65230 +2020 334 13.47510 13.47510 +2020 335 14.48540 14.48540 +2020 336 13.46650 13.46650 +2020 337 14.73180 14.73180 +2020 338 13.61490 13.61490 +2020 339 12.59270 12.59270 +2020 340 14.73290 14.73290 +2020 341 16.15540 16.15540 +2020 342 18.80910 18.80910 +2020 343 18.82960 18.82960 +2020 344 18.13980 18.13980 +2020 345 14.71960 14.71960 +2020 346 13.10290 13.10290 +2020 347 15.02370 15.02370 +2020 348 16.11270 16.11270 +2020 349 17.14080 17.14080 +2020 350 16.76180 16.76180 +2020 351 17.01550 17.01550 +2020 352 17.43160 17.43160 +2020 353 17.35000 17.35000 +2020 354 18.22260 18.22260 +2020 355 17.53370 17.53370 +2020 356 17.21670 17.21670 +2020 357 17.16700 17.16700 +2020 358 16.71640 16.71640 +2020 359 16.60070 16.60070 +2020 360 15.10290 15.10290 +2020 361 12.30990 12.30990 +2020 362 12.35200 12.35200 +2020 363 13.27380 13.27380 +2020 364 15.65880 15.65880 +2020 365 16.02730 16.02730 +2020 366 16.63970 16.63970 +2021 1 16.08540 16.08540 +2021 2 15.99410 15.99410 +2021 3 17.31300 17.31300 +2021 4 18.33800 18.33800 +2021 5 20.11400 20.11400 +2021 6 18.20080 18.20080 +2021 7 17.02170 17.02170 +2021 8 17.46250 17.46250 +2021 9 18.03850 18.03850 +2021 10 17.66300 17.66300 +2021 11 17.89020 17.89020 +2021 12 17.96760 17.96760 +2021 13 19.65890 19.65890 +2021 14 19.05350 19.05350 +2021 15 19.25000 19.25000 +2021 16 17.22190 17.22190 +2021 17 15.71900 15.71900 +2021 18 16.78830 16.78830 +2021 19 13.99400 13.99400 +2021 20 12.72930 12.72930 +2021 21 14.68780 14.68780 +2021 22 15.60580 15.60580 +2021 23 17.27180 17.27180 +2021 24 18.18290 18.18290 +2021 25 20.58840 20.58840 +2021 26 20.83750 20.83750 +2021 27 18.83980 18.83980 +2021 28 15.43160 15.43160 +2021 29 14.53470 14.53470 +2021 30 15.78340 15.78340 +2021 31 16.65900 16.65900 +2021 32 17.28240 17.28240 +2021 33 18.17660 18.17660 +2021 34 18.80510 18.80510 +2021 35 16.90780 16.90780 +2021 36 17.07680 17.07680 +2021 37 16.63040 16.63040 +2021 38 16.74120 16.74120 +2021 39 16.26270 16.26270 +2021 40 17.53430 17.53430 +2021 41 17.76970 17.76970 +2021 42 17.06590 17.06590 +2021 43 17.12700 17.12700 +2021 44 17.37630 17.37630 +2021 45 16.19340 16.19340 +2021 46 16.85180 16.85180 +2021 47 15.05500 15.05500 +2021 48 14.69500 14.69500 +2021 49 17.06640 17.06640 +2021 50 18.13930 18.13930 +2021 51 17.95860 17.95860 +2021 52 17.35850 17.35850 +2021 53 17.19930 17.19930 +2021 54 17.03270 17.03270 +2021 55 17.32980 17.32980 +2021 56 17.43830 17.43830 +2021 57 17.01620 17.01620 +2021 58 16.94770 16.94770 +2021 59 16.61410 16.61410 +2021 60 16.42250 16.42250 +2021 61 17.19680 17.19680 +2021 62 16.36970 16.36970 +2021 63 15.36300 15.36300 +2021 64 16.65460 16.65460 +2021 65 14.50370 14.50370 +2021 66 14.68610 14.68610 +2021 67 14.56550 14.56550 +2021 68 14.86600 14.86600 +2021 69 15.77500 15.77500 +2021 70 14.89450 14.89450 +2021 71 13.91970 13.91970 +2021 72 15.30780 15.30780 +2021 73 16.43010 16.43010 +2021 74 16.43330 16.43330 +2021 75 15.96770 15.96770 +2021 76 14.07270 14.07270 +2021 77 13.06780 13.06780 +2021 78 12.91550 12.91550 +2021 79 13.50420 13.50420 +2021 80 13.74380 13.74380 +2021 81 14.00280 14.00280 +2021 82 14.96140 14.96140 +2021 83 15.08970 15.08970 +2021 84 14.56120 14.56120 +2021 85 14.88670 14.88670 +2021 86 15.52830 15.52830 +2021 87 15.78010 15.78010 +2021 88 16.81810 16.81810 +2021 89 15.75320 15.75320 +2021 90 14.72370 14.72370 +2021 91 13.77890 13.77890 +2021 92 13.52500 13.52500 +2021 93 13.42130 13.42130 +2021 94 15.30260 15.30260 +2021 95 17.30940 17.30940 +2021 96 15.09520 15.09520 +2021 97 14.56240 14.56240 +2021 98 14.15770 14.15770 +2021 99 14.83920 14.83920 +2021 100 17.86410 17.86410 +2021 101 17.53460 17.53460 +2021 102 16.97810 16.97810 +2021 103 12.98890 12.98890 +2021 104 12.35560 12.35560 +2021 105 14.34760 14.34760 +2021 106 12.59490 12.59490 +2021 107 10.83130 10.83130 +2021 108 11.86130 11.86130 +2021 109 12.90940 12.90940 +2021 110 15.48010 15.48010 +2021 111 14.29250 14.29250 +2021 112 12.76290 12.76290 +2021 113 13.73100 13.73100 +2021 114 12.02140 12.02140 +2021 115 11.12400 11.12400 +2021 116 10.83790 10.83790 +2021 117 10.23450 10.23450 +2021 118 10.12440 10.12440 +2021 119 11.26840 11.26840 +2021 120 11.33950 11.33950 +2021 121 9.96171 9.96171 +2021 122 9.70244 9.70244 +2021 123 9.52593 9.52593 +2021 124 11.91720 11.91720 +2021 125 11.97860 11.97860 +2021 126 12.69860 12.69860 +2021 127 12.86360 12.86360 +2021 128 14.82550 14.82550 +2021 129 15.58860 15.58860 +2021 130 14.88500 14.88500 +2021 131 14.21420 14.21420 +2021 132 8.13417 8.13417 +2021 133 8.10687 8.10687 +2021 134 13.48740 13.48740 +2021 135 11.56580 11.56580 +2021 136 12.29660 12.29660 +2021 137 10.81850 10.81850 +2021 138 11.55100 11.55100 +2021 139 12.18280 12.18280 +2021 140 10.80060 10.80060 +2021 141 10.12230 10.12230 +2021 142 11.34650 11.34650 +2021 143 11.57980 11.57980 +2021 144 10.18360 10.18360 +2021 145 9.32726 9.32726 +2021 146 8.60770 8.60770 +2021 147 7.37027 7.37027 +2021 148 9.59550 9.59550 +2021 149 8.85590 8.85590 +2021 150 8.41944 8.41944 +2021 151 8.73190 8.73190 +2021 152 8.18838 8.18838 +2021 153 7.98269 7.98269 +2021 154 8.27566 8.27566 +2021 155 8.76055 8.76055 +2021 156 11.25900 11.25900 +2021 157 11.71110 11.71110 +2021 158 11.42270 11.42270 +2021 159 11.94860 11.94860 +2021 160 11.71660 11.71660 +2021 161 11.12480 11.12480 +2021 162 10.82570 10.82570 +2021 163 11.28970 11.28970 +2021 164 13.27240 13.27240 +2021 165 12.62920 12.62920 +2021 166 11.24040 11.24040 +2021 167 10.04200 10.04200 +2021 168 9.02919 9.02919 +2021 169 9.69477 9.69477 +2021 170 11.42500 11.42500 +2021 171 10.91670 10.91670 +2021 172 9.80909 9.80909 +2021 173 7.11125 7.11125 +2021 174 7.23168 7.23168 +2021 175 9.71403 9.71403 +2021 176 11.49350 11.49350 +2021 177 12.63650 12.63650 +2021 178 10.30750 10.30750 +2021 179 6.07493 6.07493 +2021 180 5.79495 5.79495 +2021 181 7.33251 7.33251 +2021 182 6.40930 6.40930 +2021 183 6.00743 6.00743 +2021 184 5.78511 5.78511 +2021 185 5.21553 5.21553 +2021 186 7.93976 7.93976 +2021 187 10.17380 10.17380 +2021 188 7.24261 7.24261 +2021 189 7.30352 7.30352 +2021 190 7.82168 7.82168 +2021 191 5.82161 5.82161 +2021 192 5.95503 5.95503 +2021 193 7.06168 7.06168 +2021 194 5.09895 5.09895 +2021 195 6.43044 6.43044 +2021 196 8.46869 8.46869 +2021 197 11.89550 11.89550 +2021 198 10.89200 10.89200 +2021 199 9.29496 9.29496 +2021 200 8.87771 8.87771 +2021 201 8.76037 8.76037 +2021 202 10.58980 10.58980 +2021 203 9.17695 9.17695 +2021 204 7.71704 7.71704 +2021 205 7.91546 7.91546 +2021 206 10.00220 10.00220 +2021 207 8.43934 8.43934 +2021 208 8.75478 8.75478 +2021 209 8.67680 8.67680 +2021 210 8.27493 8.27493 +2021 211 9.92732 9.92732 +2021 212 8.14666 8.14666 +2021 213 7.90421 7.90421 +2021 214 8.48808 8.48808 +2021 215 7.07032 7.07032 +2021 216 7.96516 7.96516 +2021 217 7.75864 7.75864 +2021 218 8.54453 8.54453 +2021 219 8.17531 8.17531 +2021 220 5.28518 5.28518 +2021 221 6.06856 6.06856 +2021 222 8.37770 8.37770 +2021 223 8.44090 8.44090 +2021 224 8.53381 8.53381 +2021 225 8.68898 8.68898 +2021 226 7.63868 7.63868 +2021 227 7.46707 7.46707 +2021 228 9.35443 9.35443 +2021 229 7.72029 7.72029 +2021 230 6.62075 6.62075 +2021 231 8.98570 8.98570 +2021 232 7.49565 7.49565 +2021 233 6.97903 6.97903 +2021 234 6.75010 6.75010 +2021 235 7.26847 7.26847 +2021 236 8.30604 8.30604 +2021 237 8.37458 8.37458 +2021 238 9.69089 9.69089 +2021 239 11.49910 11.49910 +2021 240 11.08260 11.08260 +2021 241 9.37364 9.37364 +2021 242 7.96665 7.96665 +2021 243 7.42953 7.42953 +2021 244 7.58829 7.58829 +2021 245 7.75414 7.75414 +2021 246 8.13231 8.13231 +2021 247 8.53740 8.53740 +2021 248 8.27550 8.27550 +2021 249 10.07580 10.07580 +2021 250 7.65132 7.65132 +2021 251 7.99360 7.99360 +2021 252 11.01650 11.01650 +2021 253 9.20740 9.20740 +2021 254 8.50301 8.50301 +2021 255 9.82948 9.82948 +2021 256 10.70420 10.70420 +2021 257 8.10783 8.10783 +2021 258 11.23780 11.23780 +2021 259 9.33567 9.33567 +2021 260 7.77176 7.77176 +2021 261 8.57644 8.57644 +2021 262 10.16620 10.16620 +2021 263 9.70360 9.70360 +2021 264 11.26670 11.26670 +2021 265 12.15200 12.15200 +2021 266 11.64150 11.64150 +2021 267 10.60330 10.60330 +2021 268 10.82170 10.82170 +2021 269 8.72286 8.72286 +2021 270 8.25888 8.25888 +2021 271 8.30860 8.30860 +2021 272 9.31931 9.31931 +2021 273 8.88148 8.88148 +2021 274 9.39122 9.39122 +2021 275 9.82109 9.82109 +2021 276 13.16300 13.16300 +2021 277 12.61770 12.61770 +2021 278 12.71080 12.71080 +2021 279 12.40540 12.40540 +2021 280 13.33320 13.33320 +2021 281 11.88930 11.88930 +2021 282 11.36870 11.36870 +2021 283 10.99250 10.99250 +2021 284 10.35890 10.35890 +2021 285 8.72442 8.72442 +2021 286 9.29748 9.29748 +2021 287 9.62711 9.62711 +2021 288 10.53620 10.53620 +2021 289 11.56840 11.56840 +2021 290 14.08130 14.08130 +2021 291 13.05030 13.05030 +2021 292 11.98150 11.98150 +2021 293 10.64000 10.64000 +2021 294 11.39640 11.39640 +2021 295 10.13340 10.13340 +2021 296 11.47300 11.47300 +2021 297 13.32630 13.32630 +2021 298 15.03500 15.03500 +2021 299 14.42710 14.42710 +2021 300 14.35070 14.35070 +2021 301 13.64210 13.64210 +2021 302 13.37800 13.37800 +2021 303 14.24760 14.24760 +2021 304 12.54700 12.54700 +2021 305 13.51520 13.51520 +2021 306 10.57900 10.57900 +2021 307 13.05070 13.05070 +2021 308 13.76850 13.76850 +2021 309 14.21440 14.21440 +2021 310 14.85640 14.85640 +2021 311 15.88850 15.88850 +2021 312 15.74470 15.74470 +2021 313 16.07780 16.07780 +2021 314 16.19280 16.19280 +2021 315 16.01450 16.01450 +2021 316 16.90960 16.90960 +2021 317 17.41960 17.41960 +2021 318 15.86890 15.86890 +2021 319 15.19030 15.19030 +2021 320 14.09240 14.09240 +2021 321 14.04290 14.04290 +2021 322 14.26850 14.26850 +2021 323 14.56950 14.56950 +2021 324 15.33470 15.33470 +2021 325 17.49130 17.49130 +2021 326 15.69140 15.69140 +2021 327 15.26650 15.26650 +2021 328 14.28810 14.28810 +2021 329 16.15390 16.15390 +2021 330 16.42000 16.42000 +2021 331 16.46700 16.46700 +2021 332 17.94280 17.94280 +2021 333 15.66770 15.66770 +2021 334 16.95460 16.95460 +2021 335 16.65880 16.65880 +2021 336 16.38300 16.38300 +2021 337 15.79630 15.79630 +2021 338 17.02240 17.02240 +2021 339 17.94720 17.94720 +2021 340 17.50600 17.50600 +2021 341 18.58070 18.58070 +2021 342 19.03450 19.03450 +2021 343 19.58650 19.58650 +2021 344 19.05900 19.05900 +2021 345 17.07950 17.07950 +2021 346 16.75640 16.75640 +2021 347 17.19500 17.19500 +2021 348 17.97950 17.97950 +2021 349 17.30660 17.30660 +2021 350 16.37390 16.37390 +2021 351 15.13410 15.13410 +2021 352 16.01960 16.01960 +2021 353 16.19210 16.19210 +2021 354 16.83820 16.83820 +2021 355 18.45640 18.45640 +2021 356 20.23540 20.23540 +2021 357 20.77150 20.77150 +2021 358 20.00420 20.00420 +2021 359 19.84080 19.84080 +2021 360 18.93910 18.93910 +2021 361 18.25170 18.25170 +2021 362 18.99610 18.99610 +2021 363 17.60550 17.60550 +2021 364 17.98430 17.98430 +2021 365 19.91830 19.91830 +2022 1 19.52890 19.52890 +2022 2 20.39690 20.39690 +2022 3 20.15980 20.15980 +2022 4 21.79940 21.79940 +2022 5 19.98410 19.98410 +2022 6 16.76720 16.76720 +2022 7 17.89400 17.89400 +2022 8 19.12930 19.12930 +2022 9 19.68980 19.68980 +2022 10 19.85560 19.85560 +2022 11 18.82060 18.82060 +2022 12 17.48870 17.48870 +2022 13 16.43090 16.43090 +2022 14 17.58840 17.58840 +2022 15 18.03460 18.03460 +2022 16 20.26720 20.26720 +2022 17 20.66180 20.66180 +2022 18 19.78630 19.78630 +2022 19 18.13960 18.13960 +2022 20 17.95060 17.95060 +2022 21 19.10130 19.10130 +2022 22 19.84890 19.84890 +2022 23 17.22800 17.22800 +2022 24 18.11030 18.11030 +2022 25 20.20400 20.20400 +2022 26 19.49530 19.49530 +2022 27 16.55640 16.55640 +2022 28 17.77810 17.77810 +2022 29 19.39070 19.39070 +2022 30 19.01050 19.01050 +2022 31 18.49200 18.49200 +2022 32 18.61220 18.61220 +2022 33 18.81450 18.81450 +2022 34 19.08080 19.08080 +2022 35 19.94700 19.94700 +2022 36 18.07580 18.07580 +2022 37 17.21860 17.21860 +2022 38 20.18240 20.18240 +2022 39 20.21160 20.21160 +2022 40 20.88060 20.88060 +2022 41 20.36420 20.36420 +2022 42 21.90480 21.90480 +2022 43 19.43500 19.43500 +2022 44 15.26260 15.26260 +2022 45 15.99380 15.99380 +2022 46 16.99320 16.99320 +2022 47 16.84490 16.84490 +2022 48 17.01300 17.01300 +2022 49 17.31330 17.31330 +2022 50 18.26970 18.26970 +2022 51 17.70640 17.70640 +2022 52 17.96860 17.96860 +2022 53 18.70850 18.70850 +2022 54 16.60540 16.60540 +2022 55 16.27070 16.27070 +2022 56 17.25370 17.25370 +2022 57 16.36750 16.36750 +2022 58 15.19900 15.19900 +2022 59 16.53640 16.53640 +2022 60 16.29770 16.29770 +2022 61 14.68280 14.68280 +2022 62 15.24830 15.24830 +2022 63 15.40420 15.40420 +2022 64 16.11150 16.11150 +2022 65 16.78140 16.78140 +2022 66 17.29860 17.29860 +2022 67 17.97260 17.97260 +2022 68 16.87990 16.87990 +2022 69 16.50370 16.50370 +2022 70 17.55990 17.55990 +2022 71 17.02120 17.02120 +2022 72 16.88400 16.88400 +2022 73 16.22290 16.22290 +2022 74 15.36990 15.36990 +2022 75 14.92310 14.92310 +2022 76 13.97860 13.97860 +2022 77 14.03740 14.03740 +2022 78 15.27690 15.27690 +2022 79 15.95420 15.95420 +2022 80 18.01790 18.01790 +2022 81 16.33390 16.33390 +2022 82 16.35210 16.35210 +2022 83 16.19100 16.19100 +2022 84 16.00750 16.00750 +2022 85 15.11240 15.11240 +2022 86 14.78570 14.78570 +2022 87 17.20070 17.20070 +2022 88 17.83820 17.83820 +2022 89 17.08150 17.08150 +2022 90 17.23160 17.23160 +2022 91 16.40370 16.40370 +2022 92 16.36100 16.36100 +2022 93 15.94200 15.94200 +2022 94 16.38050 16.38050 +2022 95 17.08060 17.08060 +2022 96 13.73700 13.73700 +2022 97 12.02720 12.02720 +2022 98 13.62790 13.62790 +2022 99 14.39910 14.39910 +2022 100 13.14030 13.14030 +2022 101 14.73100 14.73100 +2022 102 13.74270 13.74270 +2022 103 13.04100 13.04100 +2022 104 11.78840 11.78840 +2022 105 13.15820 13.15820 +2022 106 13.05780 13.05780 +2022 107 13.15990 13.15990 +2022 108 15.38870 15.38870 +2022 109 16.20610 16.20610 +2022 110 16.41630 16.41630 +2022 111 15.06940 15.06940 +2022 112 11.15740 11.15740 +2022 113 12.66910 12.66910 +2022 114 12.87230 12.87230 +2022 115 12.15050 12.15050 +2022 116 12.94770 12.94770 +2022 117 11.48910 11.48910 +2022 118 11.13810 11.13810 +2022 119 11.28860 11.28860 +2022 120 12.32060 12.32060 +2022 121 12.86460 12.86460 +2022 122 12.76200 12.76200 +2022 123 12.93300 12.93300 +2022 124 12.15300 12.15300 +2022 125 12.07210 12.07210 +2022 126 11.67750 11.67750 +2022 127 12.20350 12.20350 +2022 128 12.90860 12.90860 +2022 129 12.18580 12.18580 +2022 130 9.40051 9.40051 +2022 131 9.10794 9.10794 +2022 132 9.44209 9.44209 +2022 133 10.60130 10.60130 +2022 134 13.93670 13.93670 +2022 135 15.15840 15.15840 +2022 136 15.19880 15.19880 +2022 137 15.91360 15.91360 +2022 138 14.29280 14.29280 +2022 139 10.69180 10.69180 +2022 140 10.22530 10.22530 +2022 141 11.62570 11.62570 +2022 142 10.35800 10.35800 +2022 143 8.65933 8.65933 +2022 144 10.52050 10.52050 +2022 145 9.15803 9.15803 +2022 146 7.69338 7.69338 +2022 147 7.69514 7.69514 +2022 148 10.55380 10.55380 +2022 149 13.97190 13.97190 +2022 150 12.73740 12.73740 +2022 151 14.21610 14.21610 +2022 152 12.08690 12.08690 +2022 153 10.90060 10.90060 +2022 154 9.29886 9.29886 +2022 155 7.99581 7.99581 +2022 156 10.82150 10.82150 +2022 157 12.83060 12.83060 +2022 158 12.55270 12.55270 +2022 159 10.90080 10.90080 +2022 160 10.08560 10.08560 +2022 161 10.64200 10.64200 +2022 162 10.65900 10.65900 +2022 163 9.14864 9.14864 +2022 164 9.81371 9.81371 +2022 165 10.54860 10.54860 +2022 166 10.34170 10.34170 +2022 167 10.78730 10.78730 +2022 168 10.77410 10.77410 +2022 169 10.05440 10.05440 +2022 170 7.39329 7.39329 +2022 171 6.64202 6.64202 +2022 172 7.10771 7.10771 +2022 173 6.97567 6.97567 +2022 174 7.59737 7.59737 +2022 175 10.34200 10.34200 +2022 176 9.88362 9.88362 +2022 177 8.14537 8.14537 +2022 178 7.99743 7.99743 +2022 179 8.00706 8.00706 +2022 180 8.91658 8.91658 +2022 181 9.74347 9.74347 +2022 182 7.88194 7.88194 +2022 183 7.92868 7.92868 +2022 184 8.94952 8.94952 +2022 185 9.69703 9.69703 +2022 186 11.15830 11.15830 +2022 187 8.27802 8.27802 +2022 188 12.40550 12.40550 +2022 189 11.74610 11.74610 +2022 190 10.19960 10.19960 +2022 191 8.77742 8.77742 +2022 192 12.20480 12.20480 +2022 193 10.85070 10.85070 +2022 194 10.54640 10.54640 +2022 195 8.37022 8.37022 +2022 196 7.12710 7.12710 +2022 197 6.01191 6.01191 +2022 198 8.07423 8.07423 +2022 199 10.71030 10.71030 +2022 200 11.02400 11.02400 +2022 201 7.24397 7.24397 +2022 202 7.01500 7.01500 +2022 203 6.64863 6.64863 +2022 204 7.53221 7.53221 +2022 205 8.79625 8.79625 +2022 206 11.78360 11.78360 +2022 207 10.26920 10.26920 +2022 208 10.37580 10.37580 +2022 209 9.28682 9.28682 +2022 210 8.96541 8.96541 +2022 211 7.94208 7.94208 +2022 212 6.51099 6.51099 +2022 213 7.43710 7.43710 +2022 214 9.88237 9.88237 +2022 215 9.59314 9.59314 +2022 216 8.71403 8.71403 +2022 217 7.95239 7.95239 +2022 218 11.00370 11.00370 +2022 219 9.00553 9.00553 +2022 220 8.16789 8.16789 +2022 221 7.77138 7.77138 +2022 222 6.34786 6.34786 +2022 223 5.95374 5.95374 +2022 224 5.50042 5.50042 +2022 225 5.97470 5.97470 +2022 226 7.43055 7.43055 +2022 227 10.46960 10.46960 +2022 228 12.67930 12.67930 +2022 229 13.16010 13.16010 +2022 230 13.78840 13.78840 +2022 231 13.99790 13.99790 +2022 232 12.22040 12.22040 +2022 233 11.53220 11.53220 +2022 234 9.67842 9.67842 +2022 235 9.67315 9.67315 +2022 236 9.41409 9.41409 +2022 237 11.74650 11.74650 +2022 238 10.40070 10.40070 +2022 239 9.08123 9.08123 +2022 240 7.90745 7.90745 +2022 241 8.24423 8.24423 +2022 242 7.98497 7.98497 +2022 243 8.39690 8.39690 +2022 244 9.04949 9.04949 +2022 245 9.18083 9.18083 +2022 246 9.88804 9.88804 +2022 247 6.86627 6.86627 +2022 248 5.93295 5.93295 +2022 249 6.93206 6.93206 +2022 250 8.42602 8.42602 +2022 251 7.62738 7.62738 +2022 252 8.23458 8.23458 +2022 253 10.67980 10.67980 +2022 254 10.95860 10.95860 +2022 255 10.42840 10.42840 +2022 256 8.59305 8.59305 +2022 257 7.29130 7.29130 +2022 258 8.78964 8.78964 +2022 259 9.16019 9.16019 +2022 260 9.06672 9.06672 +2022 261 11.02100 11.02100 +2022 262 13.10140 13.10140 +2022 263 12.12940 12.12940 +2022 264 10.26130 10.26130 +2022 265 12.05380 12.05380 +2022 266 11.56320 11.56320 +2022 267 11.66940 11.66940 +2022 268 9.68288 9.68288 +2022 269 10.01580 10.01580 +2022 270 10.89150 10.89150 +2022 271 11.91160 11.91160 +2022 272 12.55740 12.55740 +2022 273 11.44110 11.44110 +2022 274 14.13550 14.13550 +2022 275 12.97100 12.97100 +2022 276 10.76610 10.76610 +2022 277 9.47815 9.47815 +2022 278 6.46743 6.46743 +2022 279 7.60045 7.60045 +2022 280 8.92655 8.92655 +2022 281 10.04860 10.04860 +2022 282 10.36270 10.36270 +2022 283 11.91480 11.91480 +2022 284 11.90680 11.90680 +2022 285 11.55110 11.55110 +2022 286 9.98552 9.98552 +2022 287 9.86462 9.86462 +2022 288 11.36850 11.36850 +2022 289 12.25930 12.25930 +2022 290 12.39310 12.39310 +2022 291 10.66430 10.66430 +2022 292 10.72560 10.72560 +2022 293 11.18810 11.18810 +2022 294 10.15300 10.15300 +2022 295 12.67030 12.67030 +2022 296 13.34170 13.34170 +2022 297 12.36570 12.36570 +2022 298 11.35760 11.35760 +2022 299 12.50780 12.50780 +2022 300 13.44580 13.44580 +2022 301 15.12130 15.12130 +2022 302 14.89130 14.89130 +2022 303 15.64750 15.64750 +2022 304 15.38310 15.38310 +2022 305 15.08080 15.08080 +2022 306 15.21620 15.21620 +2022 307 14.01000 14.01000 +2022 308 13.89260 13.89260 +2022 309 13.24810 13.24810 +2022 310 12.54340 12.54340 +2022 311 13.20750 13.20750 +2022 312 14.44710 14.44710 +2022 313 14.85590 14.85590 +2022 314 13.01850 13.01850 +2022 315 16.21430 16.21430 +2022 316 15.26880 15.26880 +2022 317 15.70580 15.70580 +2022 318 15.11560 15.11560 +2022 319 15.96380 15.96380 +2022 320 15.04640 15.04640 +2022 321 15.53160 15.53160 +2022 322 14.67900 14.67900 +2022 323 14.57800 14.57800 +2022 324 14.62650 14.62650 +2022 325 15.34250 15.34250 +2022 326 13.44370 13.44370 +2022 327 12.03160 12.03160 +2022 328 11.36240 11.36240 +2022 329 13.05270 13.05270 +2022 330 13.06900 13.06900 +2022 331 12.92280 12.92280 +2022 332 13.22660 13.22660 +2022 333 13.70730 13.70730 +2022 334 13.45750 13.45750 +2022 335 13.80830 13.80830 +2022 336 13.62200 13.62200 +2022 337 14.35760 14.35760 +2022 338 14.95590 14.95590 +2022 339 13.65130 13.65130 +2022 340 13.42560 13.42560 +2022 341 12.59450 12.59450 +2022 342 14.47070 14.47070 +2022 343 17.05480 17.05480 +2022 344 16.56370 16.56370 +2022 345 17.62720 17.62720 +2022 346 16.34660 16.34660 +2022 347 15.13590 15.13590 +2022 348 15.68820 15.68820 +2022 349 18.06700 18.06700 +2022 350 17.64350 17.64350 +2022 351 17.17230 17.17230 +2022 352 17.42330 17.42330 +2022 353 15.78470 15.78470 +2022 354 17.15650 17.15650 +2022 355 16.51290 16.51290 +2022 356 16.74500 16.74500 +2022 357 16.99260 16.99260 +2022 358 17.26620 17.26620 +2022 359 17.73510 17.73510 +2022 360 17.31280 17.31280 +2022 361 17.53460 17.53460 +2022 362 17.82190 17.82190 +2022 363 19.43640 19.43640 +2022 364 16.48520 16.48520 +2022 365 15.25200 15.25200 +2023 1 15.09590 15.09590 +2023 2 15.80990 15.80990 +2023 3 15.32320 15.32320 +2023 4 15.59900 15.59900 +2023 5 16.22690 16.22690 +2023 6 17.48800 17.48800 +2023 7 18.58090 18.58090 +2023 8 18.18720 18.18720 +2023 9 14.91350 14.91350 +2023 10 16.87840 16.87840 +2023 11 15.61200 15.61200 +2023 12 15.84660 15.84660 +2023 13 16.14070 16.14070 +2023 14 15.90490 15.90490 +2023 15 16.01010 16.01010 +2023 16 16.08130 16.08130 +2023 17 16.62910 16.62910 +2023 18 17.43280 17.43280 +2023 19 18.12890 18.12890 +2023 20 18.94960 18.94960 +2023 21 17.94900 17.94900 +2023 22 16.98850 16.98850 +2023 23 15.61880 15.61880 +2023 24 16.07490 16.07490 +2023 25 16.42440 16.42440 +2023 26 15.67360 15.67360 +2023 27 17.74830 17.74830 +2023 28 18.10600 18.10600 +2023 29 17.95110 17.95110 +2023 30 17.13760 17.13760 +2023 31 16.77030 16.77030 +2023 32 18.28350 18.28350 +2023 33 18.04200 18.04200 +2023 34 19.73730 19.73730 +2023 35 18.62550 18.62550 +2023 36 17.76790 17.76790 +2023 37 16.77400 16.77400 +2023 38 16.63060 16.63060 +2023 39 15.96210 15.96210 +2023 40 16.33340 16.33340 +2023 41 15.88010 15.88010 +2023 42 14.02800 14.02800 +2023 43 14.06190 14.06190 +2023 44 17.93020 17.93020 +2023 45 17.71070 17.71070 +2023 46 16.10700 16.10700 +2023 47 16.14540 16.14540 +2023 48 16.24180 16.24180 +2023 49 17.00460 17.00460 +2023 50 17.79660 17.79660 +2023 51 17.66580 17.66580 +2023 52 17.24500 17.24500 +2023 53 15.07040 15.07040 +2023 54 12.97190 12.97190 +2023 55 15.04690 15.04690 +2023 56 16.64700 16.64700 +2023 57 15.14400 15.14400 +2023 58 15.95780 15.95780 +2023 59 16.63380 16.63380 +2023 60 16.49170 16.49170 +2023 61 17.05770 17.05770 +2023 62 17.88830 17.88830 +2023 63 16.75090 16.75090 +2023 64 14.84090 14.84090 +2023 65 14.91270 14.91270 +2023 66 15.23520 15.23520 +2023 67 16.31550 16.31550 +2023 68 16.63910 16.63910 +2023 69 16.64490 16.64490 +2023 70 15.55410 15.55410 +2023 71 15.38720 15.38720 +2023 72 13.82360 13.82360 +2023 73 14.44120 14.44120 +2023 74 14.67550 14.67550 +2023 75 16.21120 16.21120 +2023 76 17.65230 17.65230 +2023 77 15.69730 15.69730 +2023 78 16.15880 16.15880 +2023 79 14.08740 14.08740 +2023 80 12.40530 12.40530 +2023 81 12.97130 12.97130 +2023 82 13.13910 13.13910 +2023 83 13.32340 13.32340 +2023 84 15.14870 15.14870 +2023 85 16.08350 16.08350 +2023 86 14.69680 14.69680 +2023 87 10.96990 10.96990 +2023 88 11.17010 11.17010 +2023 89 12.65350 12.65350 +2023 90 15.05180 15.05180 +2023 91 16.34020 16.34020 +2023 92 14.19170 14.19170 +2023 93 12.91550 12.91550 +2023 94 12.73380 12.73380 +2023 95 12.67180 12.67180 +2023 96 14.51350 14.51350 +2023 97 12.84760 12.84760 +2023 98 14.23960 14.23960 +2023 99 16.24800 16.24800 +2023 100 15.13410 15.13410 +2023 101 14.61400 14.61400 +2023 102 14.52700 14.52700 +2023 103 14.82800 14.82800 +2023 104 13.85760 13.85760 +2023 105 13.70280 13.70280 +2023 106 13.49680 13.49680 +2023 107 15.13690 15.13690 +2023 108 16.14460 16.14460 +2023 109 16.28040 16.28040 +2023 110 15.64100 15.64100 +2023 111 16.56200 16.56200 +2023 112 16.60770 16.60770 +2023 113 12.50560 12.50560 +2023 114 10.19780 10.19780 +2023 115 13.27960 13.27960 +2023 116 12.07050 12.07050 +2023 117 10.92410 10.92410 +2023 118 12.30450 12.30450 +2023 119 13.86380 13.86380 +2023 120 15.04470 15.04470 +2023 121 16.63000 16.63000 +2023 122 15.83240 15.83240 +2023 123 15.39430 15.39430 +2023 124 15.25450 15.25450 +2023 125 14.96730 14.96730 +2023 126 14.47420 14.47420 +2023 127 14.78820 14.78820 +2023 128 15.22870 15.22870 +2023 129 12.47580 12.47580 +2023 130 7.73302 7.73302 +2023 131 7.94394 7.94394 +2023 132 9.76069 9.76069 +2023 133 9.63090 9.63090 +2023 134 9.90015 9.90015 +2023 135 8.66603 8.66603 +2023 136 8.49951 8.49951 +2023 137 9.76532 9.76532 +2023 138 13.34890 13.34890 +2023 139 12.90830 12.90830 +2023 140 11.51900 11.51900 +2023 141 11.34550 11.34550 +2023 142 11.97250 11.97250 +2023 143 10.55360 10.55360 +2023 144 10.04880 10.04880 +2023 145 9.84068 9.84068 +2023 146 11.15350 11.15350 +2023 147 12.52220 12.52220 +2023 148 12.96720 12.96720 +2023 149 12.68990 12.68990 +2023 150 10.99190 10.99190 +2023 151 11.51280 11.51280 +2023 152 12.24890 12.24890 +2023 153 9.47886 9.47886 +2023 154 8.34560 8.34560 +2023 155 9.14641 9.14641 +2023 156 10.56650 10.56650 +2023 157 10.15640 10.15640 +2023 158 10.15470 10.15470 +2023 159 10.10390 10.10390 +2023 160 8.90451 8.90451 +2023 161 7.69761 7.69761 +2023 162 7.80004 7.80004 +2023 163 7.56424 7.56424 +2023 164 6.39057 6.39057 +2023 165 5.41755 5.41755 +2023 166 7.18053 7.18053 +2023 167 9.22061 9.22061 +2023 168 9.94913 9.94913 +2023 169 9.77957 9.77957 +2023 170 9.52437 9.52437 +2023 171 10.02600 10.02600 +2023 172 10.89270 10.89270 +2023 173 11.61610 11.61610 +2023 174 11.12250 11.12250 +2023 175 10.87780 10.87780 +2023 176 9.71457 9.71457 +2023 177 9.17386 9.17386 +2023 178 7.97688 7.97688 +2023 179 8.96006 8.96006 +2023 180 7.92538 7.92538 +2023 181 7.27072 7.27072 +2023 182 8.17505 8.17505 +2023 183 7.83483 7.83483 +2023 184 9.16402 9.16402 +2023 185 10.20670 10.20670 +2023 186 9.08512 9.08512 +2023 187 7.72823 7.72823 +2023 188 9.92492 9.92492 +2023 189 8.88922 8.88922 +2023 190 9.41592 9.41592 +2023 191 9.25658 9.25658 +2023 192 8.76315 8.76315 +2023 193 9.17542 9.17542 +2023 194 10.57140 10.57140 +2023 195 10.66020 10.66020 +2023 196 10.97640 10.97640 +2023 197 9.19255 9.19255 +2023 198 9.49359 9.49359 +2023 199 8.98828 8.98828 +2023 200 8.67238 8.67238 +2023 201 8.87805 8.87805 +2023 202 8.57710 8.57710 +2023 203 6.53077 6.53077 +2023 204 7.42030 7.42030 +2023 205 8.17535 8.17535 +2023 206 6.81323 6.81323 +2023 207 5.53974 5.53974 +2023 208 5.90751 5.90751 +2023 209 6.02583 6.02583 +2023 210 6.24035 6.24035 +2023 211 6.22099 6.22099 +2023 212 9.56247 9.56247 +2023 213 7.40588 7.40588 +2023 214 4.72535 4.72535 +2023 215 6.80262 6.80262 +2023 216 7.42627 7.42627 +2023 217 6.91041 6.91041 +2023 218 7.77486 7.77486 +2023 219 7.73133 7.73133 +2023 220 5.97116 5.97116 +2023 221 5.88495 5.88495 +2023 222 4.85825 4.85825 +2023 223 5.99211 5.99211 +2023 224 8.66706 8.66706 +2023 225 9.02046 9.02046 +2023 226 6.74925 6.74925 +2023 227 7.26555 7.26555 +2023 228 7.12428 7.12428 +2023 229 6.62136 6.62136 +2023 230 7.70894 7.70894 +2023 231 9.20482 9.20482 +2023 232 8.53242 8.53242 +2023 233 8.03171 8.03171 +2023 234 6.60905 6.60905 +2023 235 6.38554 6.38554 +2023 236 6.81576 6.81576 +2023 237 6.84991 6.84991 +2023 238 8.23686 8.23686 +2023 239 7.28300 7.28300 +2023 240 5.97225 5.97225 +2023 241 6.72569 6.72569 +2023 242 8.07931 8.07931 +2023 243 7.57774 7.57774 +2023 244 8.82283 8.82283 +2023 245 9.97197 9.97197 +2023 246 9.81235 9.81235 +2023 247 10.54440 10.54440 +2023 248 11.86650 11.86650 +2023 249 11.32260 11.32260 +2023 250 10.34110 10.34110 +2023 251 9.93623 9.93623 +2023 252 9.36807 9.36807 +2023 253 10.85090 10.85090 +2023 254 9.50553 9.50553 +2023 255 9.20121 9.20121 +2023 256 9.20172 9.20172 +2023 257 9.94971 9.94971 +2023 258 8.58790 8.58790 +2023 259 10.49700 10.49700 +2023 260 11.89180 11.89180 +2023 261 11.34750 11.34750 +2023 262 13.81130 13.81130 +2023 263 12.98340 12.98340 +2023 264 13.07910 13.07910 +2023 265 12.96800 12.96800 +2023 266 12.59310 12.59310 +2023 267 10.08190 10.08190 +2023 268 11.55980 11.55980 +2023 269 9.33461 9.33461 +2023 270 9.73328 9.73328 +2023 271 9.42088 9.42088 +2023 272 8.63033 8.63033 +2023 273 8.60425 8.60425 +2023 274 12.33980 12.33980 +2023 275 9.34358 9.34358 +2023 276 9.07332 9.07332 +2023 277 12.52690 12.52690 +2023 278 12.35570 12.35570 +2023 279 10.61450 10.61450 +2023 280 10.58170 10.58170 +2023 281 9.64663 9.64663 +2023 282 10.75130 10.75130 +2023 283 10.25670 10.25670 +2023 284 9.90277 9.90277 +2023 285 11.35450 11.35450 +2023 286 11.68710 11.68710 +2023 287 13.18230 13.18230 +2023 288 12.15400 12.15400 +2023 289 13.84900 13.84900 +2023 290 13.79820 13.79820 +2023 291 14.10470 14.10470 +2023 292 13.80610 13.80610 +2023 293 14.66260 14.66260 +2023 294 13.40500 13.40500 +2023 295 12.02430 12.02430 +2023 296 12.89900 12.89900 +2023 297 13.51050 13.51050 +2023 298 14.37530 14.37530 +2023 299 11.40320 11.40320 +2023 300 9.65382 9.65382 +2023 301 10.50410 10.50410 +2023 302 10.68660 10.68660 +2023 303 13.72620 13.72620 +2023 304 15.88770 15.88770 +2023 305 14.21680 14.21680 +2023 306 12.68400 12.68400 +2023 307 12.52210 12.52210 +2023 308 13.04720 13.04720 +2023 309 12.23560 12.23560 +2023 310 10.86030 10.86030 +2023 311 11.51300 11.51300 +2023 312 11.84410 11.84410 +2023 313 11.91230 11.91230 +2023 314 12.05590 12.05590 +2023 315 13.25470 13.25470 +2023 316 13.01480 13.01480 +2023 317 12.27820 12.27820 +2023 318 14.11590 14.11590 +2023 319 13.60050 13.60050 +2023 320 14.25120 14.25120 +2023 321 14.30740 14.30740 +2023 322 13.99410 13.99410 +2023 323 15.78930 15.78930 +2023 324 16.06640 16.06640 +2023 325 16.23630 16.23630 +2023 326 15.70490 15.70490 +2023 327 12.03530 12.03530 +2023 328 11.39450 11.39450 +2023 329 15.18740 15.18740 +2023 330 13.54690 13.54690 +2023 331 13.69370 13.69370 +2023 332 14.07570 14.07570 +2023 333 13.19410 13.19410 +2023 334 13.70370 13.70370 +2023 335 13.76480 13.76480 +2023 336 14.82600 14.82600 +2023 337 16.70900 16.70900 +2023 338 14.70060 14.70060 +2023 339 15.40650 15.40650 +2023 340 15.69870 15.69870 +2023 341 15.95880 15.95880 +2023 342 15.84840 15.84840 +2023 343 14.32490 14.32490 +2023 344 14.13330 14.13330 +2023 345 12.55270 12.55270 +2023 346 12.41440 12.41440 +2023 347 15.18940 15.18940 +2023 348 14.59480 14.59480 +2023 349 16.57210 16.57210 +2023 350 16.28350 16.28350 +2023 351 18.02140 18.02140 +2023 352 18.28940 18.28940 +2023 353 17.67950 17.67950 +2023 354 18.95960 18.95960 +2023 355 17.85360 17.85360 +2023 356 17.76710 17.76710 +2023 357 18.31150 18.31150 +2023 358 18.50110 18.50110 +2023 359 19.39800 19.39800 +2023 360 19.12520 19.12520 +2023 361 16.66550 16.66550 +2023 362 17.26090 17.26090 +2023 363 19.72080 19.72080 +2023 364 18.66020 18.66020 +2023 365 16.10560 16.10560 diff --git a/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.tmp b/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.tmp new file mode 100644 index 00000000..04745712 --- /dev/null +++ b/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.tmp @@ -0,0 +1,16074 @@ +IDera5.tmp: Temperature data - file written by R +nbyr tstep lat lon elev + 44 1 -38.136 176.250 280.000 +1980 1 14.38810 14.38810 +1980 2 13.18960 13.18960 +1980 3 13.76390 13.76390 +1980 4 14.38780 14.38780 +1980 5 14.98280 14.98280 +1980 6 15.20960 15.20960 +1980 7 15.74280 15.74280 +1980 8 16.28400 16.28400 +1980 9 17.09400 17.09400 +1980 10 18.98650 18.98650 +1980 11 16.94010 16.94010 +1980 12 19.34510 19.34510 +1980 13 19.18800 19.18800 +1980 14 19.71550 19.71550 +1980 15 17.74260 17.74260 +1980 16 12.70560 12.70560 +1980 17 12.25690 12.25690 +1980 18 14.92850 14.92850 +1980 19 16.53390 16.53390 +1980 20 14.62760 14.62760 +1980 21 16.76270 16.76270 +1980 22 15.48190 15.48190 +1980 23 15.20880 15.20880 +1980 24 16.77240 16.77240 +1980 25 16.79620 16.79620 +1980 26 18.76650 18.76650 +1980 27 19.72490 19.72490 +1980 28 19.29760 19.29760 +1980 29 19.59070 19.59070 +1980 30 19.81510 19.81510 +1980 31 20.36330 20.36330 +1980 32 19.82900 19.82900 +1980 33 18.03400 18.03400 +1980 34 17.79870 17.79870 +1980 35 18.98310 18.98310 +1980 36 20.11560 20.11560 +1980 37 19.34120 19.34120 +1980 38 18.36740 18.36740 +1980 39 18.25310 18.25310 +1980 40 18.21560 18.21560 +1980 41 14.70860 14.70860 +1980 42 14.86450 14.86450 +1980 43 15.22410 15.22410 +1980 44 15.68340 15.68340 +1980 45 16.44840 16.44840 +1980 46 16.55220 16.55220 +1980 47 17.42030 17.42030 +1980 48 16.71080 16.71080 +1980 49 16.87620 16.87620 +1980 50 17.31040 17.31040 +1980 51 16.07110 16.07110 +1980 52 15.37780 15.37780 +1980 53 16.28290 16.28290 +1980 54 14.34340 14.34340 +1980 55 15.03690 15.03690 +1980 56 14.08370 14.08370 +1980 57 14.90620 14.90620 +1980 58 15.22490 15.22490 +1980 59 14.39520 14.39520 +1980 60 14.01580 14.01580 +1980 61 15.24910 15.24910 +1980 62 16.40900 16.40900 +1980 63 15.52260 15.52260 +1980 64 15.58240 15.58240 +1980 65 14.90610 14.90610 +1980 66 14.47180 14.47180 +1980 67 15.29820 15.29820 +1980 68 15.26290 15.26290 +1980 69 15.48680 15.48680 +1980 70 15.68680 15.68680 +1980 71 15.19270 15.19270 +1980 72 14.13010 14.13010 +1980 73 12.73150 12.73150 +1980 74 12.27520 12.27520 +1980 75 14.31390 14.31390 +1980 76 11.54470 11.54470 +1980 77 10.26860 10.26860 +1980 78 13.03340 13.03340 +1980 79 15.45100 15.45100 +1980 80 12.31460 12.31460 +1980 81 11.18250 11.18250 +1980 82 13.34330 13.34330 +1980 83 13.74020 13.74020 +1980 84 14.00170 14.00170 +1980 85 13.02940 13.02940 +1980 86 13.19660 13.19660 +1980 87 13.43030 13.43030 +1980 88 14.66180 14.66180 +1980 89 15.73260 15.73260 +1980 90 15.73050 15.73050 +1980 91 11.48560 11.48560 +1980 92 11.77150 11.77150 +1980 93 10.13550 10.13550 +1980 94 10.31140 10.31140 +1980 95 10.47640 10.47640 +1980 96 11.33730 11.33730 +1980 97 13.41940 13.41940 +1980 98 13.36600 13.36600 +1980 99 13.01040 13.01040 +1980 100 11.98530 11.98530 +1980 101 12.11200 12.11200 +1980 102 11.57040 11.57040 +1980 103 11.22660 11.22660 +1980 104 11.04930 11.04930 +1980 105 11.49140 11.49140 +1980 106 11.73710 11.73710 +1980 107 12.15320 12.15320 +1980 108 11.14720 11.14720 +1980 109 10.79220 10.79220 +1980 110 9.87127 9.87127 +1980 111 10.89860 10.89860 +1980 112 11.73550 11.73550 +1980 113 11.20960 11.20960 +1980 114 12.02760 12.02760 +1980 115 14.33370 14.33370 +1980 116 13.86920 13.86920 +1980 117 14.56420 14.56420 +1980 118 14.95490 14.95490 +1980 119 9.89472 9.89472 +1980 120 10.81650 10.81650 +1980 121 10.36360 10.36360 +1980 122 9.57144 9.57144 +1980 123 9.58009 9.58009 +1980 124 10.51650 10.51650 +1980 125 9.92915 9.92915 +1980 126 10.00280 10.00280 +1980 127 9.79175 9.79175 +1980 128 9.37990 9.37990 +1980 129 9.56323 9.56323 +1980 130 9.87616 9.87616 +1980 131 9.01776 9.01776 +1980 132 10.10640 10.10640 +1980 133 9.05744 9.05744 +1980 134 11.46960 11.46960 +1980 135 12.73590 12.73590 +1980 136 11.17190 11.17190 +1980 137 10.72430 10.72430 +1980 138 11.50460 11.50460 +1980 139 11.46630 11.46630 +1980 140 9.75197 9.75197 +1980 141 10.27680 10.27680 +1980 142 8.19314 8.19314 +1980 143 11.68840 11.68840 +1980 144 11.95300 11.95300 +1980 145 11.48030 11.48030 +1980 146 10.36270 10.36270 +1980 147 10.30900 10.30900 +1980 148 9.45061 9.45061 +1980 149 9.07688 9.07688 +1980 150 8.18196 8.18196 +1980 151 7.85259 7.85259 +1980 152 10.28890 10.28890 +1980 153 12.39590 12.39590 +1980 154 12.21780 12.21780 +1980 155 12.66890 12.66890 +1980 156 10.07830 10.07830 +1980 157 9.68069 9.68069 +1980 158 9.55092 9.55092 +1980 159 9.15026 9.15026 +1980 160 7.42830 7.42830 +1980 161 6.75394 6.75394 +1980 162 10.16060 10.16060 +1980 163 8.16256 8.16256 +1980 164 6.70616 6.70616 +1980 165 5.73721 5.73721 +1980 166 4.35556 4.35556 +1980 167 4.53129 4.53129 +1980 168 6.05678 6.05678 +1980 169 5.74304 5.74304 +1980 170 6.02671 6.02671 +1980 171 6.43116 6.43116 +1980 172 6.80961 6.80961 +1980 173 8.15897 8.15897 +1980 174 7.59926 7.59926 +1980 175 7.64337 7.64337 +1980 176 8.59390 8.59390 +1980 177 6.69302 6.69302 +1980 178 4.95470 4.95470 +1980 179 5.42081 5.42081 +1980 180 8.20211 8.20211 +1980 181 10.33750 10.33750 +1980 182 10.93350 10.93350 +1980 183 8.73578 8.73578 +1980 184 9.48932 9.48932 +1980 185 8.80929 8.80929 +1980 186 7.47874 7.47874 +1980 187 7.83133 7.83133 +1980 188 7.49497 7.49497 +1980 189 7.20767 7.20767 +1980 190 9.10662 9.10662 +1980 191 7.00751 7.00751 +1980 192 4.45973 4.45973 +1980 193 4.24005 4.24005 +1980 194 6.00853 6.00853 +1980 195 7.36445 7.36445 +1980 196 6.32186 6.32186 +1980 197 4.49262 4.49262 +1980 198 4.77869 4.77869 +1980 199 4.02292 4.02292 +1980 200 4.44533 4.44533 +1980 201 6.90774 6.90774 +1980 202 6.97329 6.97329 +1980 203 7.99462 7.99462 +1980 204 8.28540 8.28540 +1980 205 8.20497 8.20497 +1980 206 5.69465 5.69465 +1980 207 5.02791 5.02791 +1980 208 7.18591 7.18591 +1980 209 6.59862 6.59862 +1980 210 5.39261 5.39261 +1980 211 4.40575 4.40575 +1980 212 5.93336 5.93336 +1980 213 8.37301 8.37301 +1980 214 6.32344 6.32344 +1980 215 6.71723 6.71723 +1980 216 6.97901 6.97901 +1980 217 7.78169 7.78169 +1980 218 8.04077 8.04077 +1980 219 6.31915 6.31915 +1980 220 4.79392 4.79392 +1980 221 5.80968 5.80968 +1980 222 5.51662 5.51662 +1980 223 4.98415 4.98415 +1980 224 7.18694 7.18694 +1980 225 9.26917 9.26917 +1980 226 7.98345 7.98345 +1980 227 6.67641 6.67641 +1980 228 8.57055 8.57055 +1980 229 4.42739 4.42739 +1980 230 3.65010 3.65010 +1980 231 5.22007 5.22007 +1980 232 8.48979 8.48979 +1980 233 6.94603 6.94603 +1980 234 5.98290 5.98290 +1980 235 8.26931 8.26931 +1980 236 9.30676 9.30676 +1980 237 9.24062 9.24062 +1980 238 10.55800 10.55800 +1980 239 11.37350 11.37350 +1980 240 7.21990 7.21990 +1980 241 6.35736 6.35736 +1980 242 7.41224 7.41224 +1980 243 8.21577 8.21577 +1980 244 8.70781 8.70781 +1980 245 10.60850 10.60850 +1980 246 9.79886 9.79886 +1980 247 10.46420 10.46420 +1980 248 9.72485 9.72485 +1980 249 7.70738 7.70738 +1980 250 7.54864 7.54864 +1980 251 8.02466 8.02466 +1980 252 8.94338 8.94338 +1980 253 10.36750 10.36750 +1980 254 8.38768 8.38768 +1980 255 10.56990 10.56990 +1980 256 10.49680 10.49680 +1980 257 6.94365 6.94365 +1980 258 7.17378 7.17378 +1980 259 9.19439 9.19439 +1980 260 9.14131 9.14131 +1980 261 10.38800 10.38800 +1980 262 10.11710 10.11710 +1980 263 10.04450 10.04450 +1980 264 9.64397 9.64397 +1980 265 10.05790 10.05790 +1980 266 10.74450 10.74450 +1980 267 10.62030 10.62030 +1980 268 11.08020 11.08020 +1980 269 10.57820 10.57820 +1980 270 10.00150 10.00150 +1980 271 8.61496 8.61496 +1980 272 10.00770 10.00770 +1980 273 10.10280 10.10280 +1980 274 12.17140 12.17140 +1980 275 13.37160 13.37160 +1980 276 13.25270 13.25270 +1980 277 11.98290 11.98290 +1980 278 9.59296 9.59296 +1980 279 10.74650 10.74650 +1980 280 11.64470 11.64470 +1980 281 12.94410 12.94410 +1980 282 12.48960 12.48960 +1980 283 13.17400 13.17400 +1980 284 10.22350 10.22350 +1980 285 10.10250 10.10250 +1980 286 10.37940 10.37940 +1980 287 8.77719 8.77719 +1980 288 11.59590 11.59590 +1980 289 11.15980 11.15980 +1980 290 9.79110 9.79110 +1980 291 9.06174 9.06174 +1980 292 10.38200 10.38200 +1980 293 10.00300 10.00300 +1980 294 10.62330 10.62330 +1980 295 12.59620 12.59620 +1980 296 13.49570 13.49570 +1980 297 11.45280 11.45280 +1980 298 13.63630 13.63630 +1980 299 14.65710 14.65710 +1980 300 13.40670 13.40670 +1980 301 13.67360 13.67360 +1980 302 12.57370 12.57370 +1980 303 11.99700 11.99700 +1980 304 11.84270 11.84270 +1980 305 12.01560 12.01560 +1980 306 11.42190 11.42190 +1980 307 13.06470 13.06470 +1980 308 13.07750 13.07750 +1980 309 13.26880 13.26880 +1980 310 12.88560 12.88560 +1980 311 11.27260 11.27260 +1980 312 13.74120 13.74120 +1980 313 11.42610 11.42610 +1980 314 9.36047 9.36047 +1980 315 9.22504 9.22504 +1980 316 11.98950 11.98950 +1980 317 13.01580 13.01580 +1980 318 12.62220 12.62220 +1980 319 15.12490 15.12490 +1980 320 12.32050 12.32050 +1980 321 10.80720 10.80720 +1980 322 11.47490 11.47490 +1980 323 15.55720 15.55720 +1980 324 16.41060 16.41060 +1980 325 13.74070 13.74070 +1980 326 13.66510 13.66510 +1980 327 12.47980 12.47980 +1980 328 11.54700 11.54700 +1980 329 10.86900 10.86900 +1980 330 9.13470 9.13470 +1980 331 10.79840 10.79840 +1980 332 12.58890 12.58890 +1980 333 11.31780 11.31780 +1980 334 11.63440 11.63440 +1980 335 12.52300 12.52300 +1980 336 11.00710 11.00710 +1980 337 12.82100 12.82100 +1980 338 13.08940 13.08940 +1980 339 12.87170 12.87170 +1980 340 14.46780 14.46780 +1980 341 13.42000 13.42000 +1980 342 14.12630 14.12630 +1980 343 10.02250 10.02250 +1980 344 12.91150 12.91150 +1980 345 12.89120 12.89120 +1980 346 13.92350 13.92350 +1980 347 16.59370 16.59370 +1980 348 17.34510 17.34510 +1980 349 18.55720 18.55720 +1980 350 17.50220 17.50220 +1980 351 17.50030 17.50030 +1980 352 18.40200 18.40200 +1980 353 16.98560 16.98560 +1980 354 16.20350 16.20350 +1980 355 14.05680 14.05680 +1980 356 12.52250 12.52250 +1980 357 13.17620 13.17620 +1980 358 14.60490 14.60490 +1980 359 14.83710 14.83710 +1980 360 14.71680 14.71680 +1980 361 14.82120 14.82120 +1980 362 15.35730 15.35730 +1980 363 16.14880 16.14880 +1980 364 15.48520 15.48520 +1980 365 15.70450 15.70450 +1980 366 16.52350 16.52350 +1981 1 17.60860 17.60860 +1981 2 16.99450 16.99450 +1981 3 17.50860 17.50860 +1981 4 17.36900 17.36900 +1981 5 17.04100 17.04100 +1981 6 15.99280 15.99280 +1981 7 15.22070 15.22070 +1981 8 15.64120 15.64120 +1981 9 15.61280 15.61280 +1981 10 16.13780 16.13780 +1981 11 18.63450 18.63450 +1981 12 17.47190 17.47190 +1981 13 17.56520 17.56520 +1981 14 18.57220 18.57220 +1981 15 18.96230 18.96230 +1981 16 18.90130 18.90130 +1981 17 17.19530 17.19530 +1981 18 16.43160 16.43160 +1981 19 17.04960 17.04960 +1981 20 19.55770 19.55770 +1981 21 18.97680 18.97680 +1981 22 18.68780 18.68780 +1981 23 20.58110 20.58110 +1981 24 18.99810 18.99810 +1981 25 18.57710 18.57710 +1981 26 19.54860 19.54860 +1981 27 17.83720 17.83720 +1981 28 17.63880 17.63880 +1981 29 19.21840 19.21840 +1981 30 18.99150 18.99150 +1981 31 16.82940 16.82940 +1981 32 17.67650 17.67650 +1981 33 15.77920 15.77920 +1981 34 15.20030 15.20030 +1981 35 16.40010 16.40010 +1981 36 16.67130 16.67130 +1981 37 18.26550 18.26550 +1981 38 16.03710 16.03710 +1981 39 16.08500 16.08500 +1981 40 17.37570 17.37570 +1981 41 19.35500 19.35500 +1981 42 20.29080 20.29080 +1981 43 16.95690 16.95690 +1981 44 16.34360 16.34360 +1981 45 18.32180 18.32180 +1981 46 18.09810 18.09810 +1981 47 17.25870 17.25870 +1981 48 16.36780 16.36780 +1981 49 15.83370 15.83370 +1981 50 16.88680 16.88680 +1981 51 16.30160 16.30160 +1981 52 16.59200 16.59200 +1981 53 16.58310 16.58310 +1981 54 17.00040 17.00040 +1981 55 16.97920 16.97920 +1981 56 15.76640 15.76640 +1981 57 16.37400 16.37400 +1981 58 17.72150 17.72150 +1981 59 17.84390 17.84390 +1981 60 17.90670 17.90670 +1981 61 18.22730 18.22730 +1981 62 17.64810 17.64810 +1981 63 16.83120 16.83120 +1981 64 15.78400 15.78400 +1981 65 16.15090 16.15090 +1981 66 18.10790 18.10790 +1981 67 18.73650 18.73650 +1981 68 19.76440 19.76440 +1981 69 17.28540 17.28540 +1981 70 17.06250 17.06250 +1981 71 16.27000 16.27000 +1981 72 15.28870 15.28870 +1981 73 15.86420 15.86420 +1981 74 15.80680 15.80680 +1981 75 16.48360 16.48360 +1981 76 15.91720 15.91720 +1981 77 14.48680 14.48680 +1981 78 15.58780 15.58780 +1981 79 16.97730 16.97730 +1981 80 17.67040 17.67040 +1981 81 17.43710 17.43710 +1981 82 16.69390 16.69390 +1981 83 16.90800 16.90800 +1981 84 17.47490 17.47490 +1981 85 16.35950 16.35950 +1981 86 13.57490 13.57490 +1981 87 12.17450 12.17450 +1981 88 11.65580 11.65580 +1981 89 12.82730 12.82730 +1981 90 14.10690 14.10690 +1981 91 14.64450 14.64450 +1981 92 15.06330 15.06330 +1981 93 13.90070 13.90070 +1981 94 14.16320 14.16320 +1981 95 14.26880 14.26880 +1981 96 13.93410 13.93410 +1981 97 13.74520 13.74520 +1981 98 14.05720 14.05720 +1981 99 15.35030 15.35030 +1981 100 14.95030 14.95030 +1981 101 14.19000 14.19000 +1981 102 13.67240 13.67240 +1981 103 14.69160 14.69160 +1981 104 16.17720 16.17720 +1981 105 15.02940 15.02940 +1981 106 14.51580 14.51580 +1981 107 13.58330 13.58330 +1981 108 13.04840 13.04840 +1981 109 11.95660 11.95660 +1981 110 12.95420 12.95420 +1981 111 12.52150 12.52150 +1981 112 12.69840 12.69840 +1981 113 12.92800 12.92800 +1981 114 12.96010 12.96010 +1981 115 11.15640 11.15640 +1981 116 11.43600 11.43600 +1981 117 11.01900 11.01900 +1981 118 12.26630 12.26630 +1981 119 13.58880 13.58880 +1981 120 12.02840 12.02840 +1981 121 10.45550 10.45550 +1981 122 10.18260 10.18260 +1981 123 10.91290 10.91290 +1981 124 11.19120 11.19120 +1981 125 11.38290 11.38290 +1981 126 12.44230 12.44230 +1981 127 13.65800 13.65800 +1981 128 14.57050 14.57050 +1981 129 14.29530 14.29530 +1981 130 12.52850 12.52850 +1981 131 10.68410 10.68410 +1981 132 7.65393 7.65393 +1981 133 6.72525 6.72525 +1981 134 8.02378 8.02378 +1981 135 8.58258 8.58258 +1981 136 7.59771 7.59771 +1981 137 9.47590 9.47590 +1981 138 10.64800 10.64800 +1981 139 10.59970 10.59970 +1981 140 11.43520 11.43520 +1981 141 10.25060 10.25060 +1981 142 8.64957 8.64957 +1981 143 7.52504 7.52504 +1981 144 7.56553 7.56553 +1981 145 8.02542 8.02542 +1981 146 8.48803 8.48803 +1981 147 8.98146 8.98146 +1981 148 8.17248 8.17248 +1981 149 6.49325 6.49325 +1981 150 7.65604 7.65604 +1981 151 11.54220 11.54220 +1981 152 13.03560 13.03560 +1981 153 14.67960 14.67960 +1981 154 13.08830 13.08830 +1981 155 11.00390 11.00390 +1981 156 8.56045 8.56045 +1981 157 11.16030 11.16030 +1981 158 10.46060 10.46060 +1981 159 8.17578 8.17578 +1981 160 8.32629 8.32629 +1981 161 7.77687 7.77687 +1981 162 8.83904 8.83904 +1981 163 10.40010 10.40010 +1981 164 10.69770 10.69770 +1981 165 11.06400 11.06400 +1981 166 10.69530 10.69530 +1981 167 8.89118 8.89118 +1981 168 7.03532 7.03532 +1981 169 7.26263 7.26263 +1981 170 7.46358 7.46358 +1981 171 5.54591 5.54591 +1981 172 5.20021 5.20021 +1981 173 5.75832 5.75832 +1981 174 5.84636 5.84636 +1981 175 5.19599 5.19599 +1981 176 7.77063 7.77063 +1981 177 11.68910 11.68910 +1981 178 11.28870 11.28870 +1981 179 9.09498 9.09498 +1981 180 8.21442 8.21442 +1981 181 7.65306 7.65306 +1981 182 8.06720 8.06720 +1981 183 9.48982 9.48982 +1981 184 8.12188 8.12188 +1981 185 9.06083 9.06083 +1981 186 10.53840 10.53840 +1981 187 8.96936 8.96936 +1981 188 7.46941 7.46941 +1981 189 7.78425 7.78425 +1981 190 5.45481 5.45481 +1981 191 5.55871 5.55871 +1981 192 5.94092 5.94092 +1981 193 4.92204 4.92204 +1981 194 3.89737 3.89737 +1981 195 5.37577 5.37577 +1981 196 5.54014 5.54014 +1981 197 6.72234 6.72234 +1981 198 5.77826 5.77826 +1981 199 5.86832 5.86832 +1981 200 4.80108 4.80108 +1981 201 6.93729 6.93729 +1981 202 6.63872 6.63872 +1981 203 5.38046 5.38046 +1981 204 7.94843 7.94843 +1981 205 9.43653 9.43653 +1981 206 9.40853 9.40853 +1981 207 8.04607 8.04607 +1981 208 8.16833 8.16833 +1981 209 8.58004 8.58004 +1981 210 9.59690 9.59690 +1981 211 8.31775 8.31775 +1981 212 6.94873 6.94873 +1981 213 5.78081 5.78081 +1981 214 5.51507 5.51507 +1981 215 4.16805 4.16805 +1981 216 5.57175 5.57175 +1981 217 7.25220 7.25220 +1981 218 9.13181 9.13181 +1981 219 9.93708 9.93708 +1981 220 7.72036 7.72036 +1981 221 8.00640 8.00640 +1981 222 8.58937 8.58937 +1981 223 6.77199 6.77199 +1981 224 5.52118 5.52118 +1981 225 7.02278 7.02278 +1981 226 8.09407 8.09407 +1981 227 7.26556 7.26556 +1981 228 7.05443 7.05443 +1981 229 7.65813 7.65813 +1981 230 8.78669 8.78669 +1981 231 7.93457 7.93457 +1981 232 7.59445 7.59445 +1981 233 5.43887 5.43887 +1981 234 7.96360 7.96360 +1981 235 9.09034 9.09034 +1981 236 7.93957 7.93957 +1981 237 7.34194 7.34194 +1981 238 5.96477 5.96477 +1981 239 4.90406 4.90406 +1981 240 5.02962 5.02962 +1981 241 5.72036 5.72036 +1981 242 6.83397 6.83397 +1981 243 7.89347 7.89347 +1981 244 7.42684 7.42684 +1981 245 7.27931 7.27931 +1981 246 7.41913 7.41913 +1981 247 7.28952 7.28952 +1981 248 5.02556 5.02556 +1981 249 8.27138 8.27138 +1981 250 9.22132 9.22132 +1981 251 8.64447 8.64447 +1981 252 8.93492 8.93492 +1981 253 7.36197 7.36197 +1981 254 8.93942 8.93942 +1981 255 9.34068 9.34068 +1981 256 7.34626 7.34626 +1981 257 6.26133 6.26133 +1981 258 7.88985 7.88985 +1981 259 7.23406 7.23406 +1981 260 7.82821 7.82821 +1981 261 8.59355 8.59355 +1981 262 11.08200 11.08200 +1981 263 8.11012 8.11012 +1981 264 7.81926 7.81926 +1981 265 8.81589 8.81589 +1981 266 11.34540 11.34540 +1981 267 11.11870 11.11870 +1981 268 9.74103 9.74103 +1981 269 8.56983 8.56983 +1981 270 9.24650 9.24650 +1981 271 8.98513 8.98513 +1981 272 9.61308 9.61308 +1981 273 9.94483 9.94483 +1981 274 10.91720 10.91720 +1981 275 13.03920 13.03920 +1981 276 11.93770 11.93770 +1981 277 12.35030 12.35030 +1981 278 10.79560 10.79560 +1981 279 10.91170 10.91170 +1981 280 9.21126 9.21126 +1981 281 10.77500 10.77500 +1981 282 9.65763 9.65763 +1981 283 9.38347 9.38347 +1981 284 11.11770 11.11770 +1981 285 9.57588 9.57588 +1981 286 10.71580 10.71580 +1981 287 10.05250 10.05250 +1981 288 10.74020 10.74020 +1981 289 10.70600 10.70600 +1981 290 8.52935 8.52935 +1981 291 10.44340 10.44340 +1981 292 10.05880 10.05880 +1981 293 10.92180 10.92180 +1981 294 11.57860 11.57860 +1981 295 13.61910 13.61910 +1981 296 12.97030 12.97030 +1981 297 13.01340 13.01340 +1981 298 11.48270 11.48270 +1981 299 10.16980 10.16980 +1981 300 7.37511 7.37511 +1981 301 7.71501 7.71501 +1981 302 10.71920 10.71920 +1981 303 13.96380 13.96380 +1981 304 11.96020 11.96020 +1981 305 10.08780 10.08780 +1981 306 12.25040 12.25040 +1981 307 12.84710 12.84710 +1981 308 11.84590 11.84590 +1981 309 13.29540 13.29540 +1981 310 13.34270 13.34270 +1981 311 14.24890 14.24890 +1981 312 13.90210 13.90210 +1981 313 12.14560 12.14560 +1981 314 12.49080 12.49080 +1981 315 12.69100 12.69100 +1981 316 13.07240 13.07240 +1981 317 14.33820 14.33820 +1981 318 13.78920 13.78920 +1981 319 14.45920 14.45920 +1981 320 11.89210 11.89210 +1981 321 12.30380 12.30380 +1981 322 12.71580 12.71580 +1981 323 12.07240 12.07240 +1981 324 12.09530 12.09530 +1981 325 11.80100 11.80100 +1981 326 12.44250 12.44250 +1981 327 11.52190 11.52190 +1981 328 12.42760 12.42760 +1981 329 13.23020 13.23020 +1981 330 13.25010 13.25010 +1981 331 12.30680 12.30680 +1981 332 13.65940 13.65940 +1981 333 15.63590 15.63590 +1981 334 15.62400 15.62400 +1981 335 15.95930 15.95930 +1981 336 14.37090 14.37090 +1981 337 14.80370 14.80370 +1981 338 14.69750 14.69750 +1981 339 16.98820 16.98820 +1981 340 16.12680 16.12680 +1981 341 14.78020 14.78020 +1981 342 13.84100 13.84100 +1981 343 12.85550 12.85550 +1981 344 13.83820 13.83820 +1981 345 14.47550 14.47550 +1981 346 15.29590 15.29590 +1981 347 15.79880 15.79880 +1981 348 17.51210 17.51210 +1981 349 16.33430 16.33430 +1981 350 16.32110 16.32110 +1981 351 17.25690 17.25690 +1981 352 14.89020 14.89020 +1981 353 15.15170 15.15170 +1981 354 16.31550 16.31550 +1981 355 17.09480 17.09480 +1981 356 17.22330 17.22330 +1981 357 17.89600 17.89600 +1981 358 18.67340 18.67340 +1981 359 17.93000 17.93000 +1981 360 17.72970 17.72970 +1981 361 17.31830 17.31830 +1981 362 16.02850 16.02850 +1981 363 16.09300 16.09300 +1981 364 16.91090 16.91090 +1981 365 17.19590 17.19590 +1982 1 18.21210 18.21210 +1982 2 16.60220 16.60220 +1982 3 16.86860 16.86860 +1982 4 16.95620 16.95620 +1982 5 16.05790 16.05790 +1982 6 13.31110 13.31110 +1982 7 14.07520 14.07520 +1982 8 14.55390 14.55390 +1982 9 16.19410 16.19410 +1982 10 16.77740 16.77740 +1982 11 18.48470 18.48470 +1982 12 18.02330 18.02330 +1982 13 16.91900 16.91900 +1982 14 18.57460 18.57460 +1982 15 18.82520 18.82520 +1982 16 18.08510 18.08510 +1982 17 19.00570 19.00570 +1982 18 16.58830 16.58830 +1982 19 14.57240 14.57240 +1982 20 15.49300 15.49300 +1982 21 16.32210 16.32210 +1982 22 16.28600 16.28600 +1982 23 13.26210 13.26210 +1982 24 13.71630 13.71630 +1982 25 15.96370 15.96370 +1982 26 17.73920 17.73920 +1982 27 16.22080 16.22080 +1982 28 16.65250 16.65250 +1982 29 16.38680 16.38680 +1982 30 17.04120 17.04120 +1982 31 17.58420 17.58420 +1982 32 18.30540 18.30540 +1982 33 18.36890 18.36890 +1982 34 16.34760 16.34760 +1982 35 16.10660 16.10660 +1982 36 13.92330 13.92330 +1982 37 14.70400 14.70400 +1982 38 17.22440 17.22440 +1982 39 17.78590 17.78590 +1982 40 17.33630 17.33630 +1982 41 17.56910 17.56910 +1982 42 19.58280 19.58280 +1982 43 16.93370 16.93370 +1982 44 16.74730 16.74730 +1982 45 16.89400 16.89400 +1982 46 18.06750 18.06750 +1982 47 17.38060 17.38060 +1982 48 18.82010 18.82010 +1982 49 18.73620 18.73620 +1982 50 17.24350 17.24350 +1982 51 16.23070 16.23070 +1982 52 15.87360 15.87360 +1982 53 16.93920 16.93920 +1982 54 18.94190 18.94190 +1982 55 18.64010 18.64010 +1982 56 18.51570 18.51570 +1982 57 18.05610 18.05610 +1982 58 17.10750 17.10750 +1982 59 16.90160 16.90160 +1982 60 18.37000 18.37000 +1982 61 15.34030 15.34030 +1982 62 15.12940 15.12940 +1982 63 14.68010 14.68010 +1982 64 15.65330 15.65330 +1982 65 15.15330 15.15330 +1982 66 15.89050 15.89050 +1982 67 15.38540 15.38540 +1982 68 15.66060 15.66060 +1982 69 15.82070 15.82070 +1982 70 16.15840 16.15840 +1982 71 16.12810 16.12810 +1982 72 13.64530 13.64530 +1982 73 11.59680 11.59680 +1982 74 11.88030 11.88030 +1982 75 12.70040 12.70040 +1982 76 13.14990 13.14990 +1982 77 13.73170 13.73170 +1982 78 14.22000 14.22000 +1982 79 13.83010 13.83010 +1982 80 13.92720 13.92720 +1982 81 13.90460 13.90460 +1982 82 12.55890 12.55890 +1982 83 14.08750 14.08750 +1982 84 14.43180 14.43180 +1982 85 13.52810 13.52810 +1982 86 14.29280 14.29280 +1982 87 13.88590 13.88590 +1982 88 14.55260 14.55260 +1982 89 13.92320 13.92320 +1982 90 15.19730 15.19730 +1982 91 14.64520 14.64520 +1982 92 13.29080 13.29080 +1982 93 13.14930 13.14930 +1982 94 11.29180 11.29180 +1982 95 11.02690 11.02690 +1982 96 13.76200 13.76200 +1982 97 11.91040 11.91040 +1982 98 10.78780 10.78780 +1982 99 8.96684 8.96684 +1982 100 10.39990 10.39990 +1982 101 10.84420 10.84420 +1982 102 11.07140 11.07140 +1982 103 11.46290 11.46290 +1982 104 11.12100 11.12100 +1982 105 10.96760 10.96760 +1982 106 11.24370 11.24370 +1982 107 10.58340 10.58340 +1982 108 11.24890 11.24890 +1982 109 11.58380 11.58380 +1982 110 9.91930 9.91930 +1982 111 9.75160 9.75160 +1982 112 10.20230 10.20230 +1982 113 10.17820 10.17820 +1982 114 9.70731 9.70731 +1982 115 9.32687 9.32687 +1982 116 9.27370 9.27370 +1982 117 9.79072 9.79072 +1982 118 10.54930 10.54930 +1982 119 12.58020 12.58020 +1982 120 11.69710 11.69710 +1982 121 9.04312 9.04312 +1982 122 8.79608 8.79608 +1982 123 9.03639 9.03639 +1982 124 9.13382 9.13382 +1982 125 8.91362 8.91362 +1982 126 10.03470 10.03470 +1982 127 12.38370 12.38370 +1982 128 12.10480 12.10480 +1982 129 10.47410 10.47410 +1982 130 12.15630 12.15630 +1982 131 12.11210 12.11210 +1982 132 10.54080 10.54080 +1982 133 10.60360 10.60360 +1982 134 10.21540 10.21540 +1982 135 8.81919 8.81919 +1982 136 8.92133 8.92133 +1982 137 9.77756 9.77756 +1982 138 10.96340 10.96340 +1982 139 12.03560 12.03560 +1982 140 10.37650 10.37650 +1982 141 10.16790 10.16790 +1982 142 8.03478 8.03478 +1982 143 8.04697 8.04697 +1982 144 10.43440 10.43440 +1982 145 8.19925 8.19925 +1982 146 9.59285 9.59285 +1982 147 8.94517 8.94517 +1982 148 7.11747 7.11747 +1982 149 7.32860 7.32860 +1982 150 7.73299 7.73299 +1982 151 8.63382 8.63382 +1982 152 8.96732 8.96732 +1982 153 12.03570 12.03570 +1982 154 12.49030 12.49030 +1982 155 11.09260 11.09260 +1982 156 8.02050 8.02050 +1982 157 7.19682 7.19682 +1982 158 7.05689 7.05689 +1982 159 5.89820 5.89820 +1982 160 5.58320 5.58320 +1982 161 5.84696 5.84696 +1982 162 5.50578 5.50578 +1982 163 5.76372 5.76372 +1982 164 5.30901 5.30901 +1982 165 5.37614 5.37614 +1982 166 5.77864 5.77864 +1982 167 5.92388 5.92388 +1982 168 5.29688 5.29688 +1982 169 5.63536 5.63536 +1982 170 6.39175 6.39175 +1982 171 6.36859 6.36859 +1982 172 9.34368 9.34368 +1982 173 8.36583 8.36583 +1982 174 7.87472 7.87472 +1982 175 7.74553 7.74553 +1982 176 6.68777 6.68777 +1982 177 5.68930 5.68930 +1982 178 5.64140 5.64140 +1982 179 6.37710 6.37710 +1982 180 7.84152 7.84152 +1982 181 6.97848 6.97848 +1982 182 7.13739 7.13739 +1982 183 7.81188 7.81188 +1982 184 7.93663 7.93663 +1982 185 6.60568 6.60568 +1982 186 5.54752 5.54752 +1982 187 3.53909 3.53909 +1982 188 3.40575 3.40575 +1982 189 3.58635 3.58635 +1982 190 2.66591 2.66591 +1982 191 3.25525 3.25525 +1982 192 4.73961 4.73961 +1982 193 6.34726 6.34726 +1982 194 6.87450 6.87450 +1982 195 5.35898 5.35898 +1982 196 7.24152 7.24152 +1982 197 8.53772 8.53772 +1982 198 8.77056 8.77056 +1982 199 8.77761 8.77761 +1982 200 9.02410 9.02410 +1982 201 7.17653 7.17653 +1982 202 3.88804 3.88804 +1982 203 4.27056 4.27056 +1982 204 4.59566 4.59566 +1982 205 4.21408 4.21408 +1982 206 4.46136 4.46136 +1982 207 6.10352 6.10352 +1982 208 8.56107 8.56107 +1982 209 8.69030 8.69030 +1982 210 9.72509 9.72509 +1982 211 9.97984 9.97984 +1982 212 8.55926 8.55926 +1982 213 6.80175 6.80175 +1982 214 6.08858 6.08858 +1982 215 6.58567 6.58567 +1982 216 8.32549 8.32549 +1982 217 6.71948 6.71948 +1982 218 7.19139 7.19139 +1982 219 7.41055 7.41055 +1982 220 7.85561 7.85561 +1982 221 7.53027 7.53027 +1982 222 8.79480 8.79480 +1982 223 7.74658 7.74658 +1982 224 8.42328 8.42328 +1982 225 9.15084 9.15084 +1982 226 7.66164 7.66164 +1982 227 5.40058 5.40058 +1982 228 5.02843 5.02843 +1982 229 5.43095 5.43095 +1982 230 5.14105 5.14105 +1982 231 7.82110 7.82110 +1982 232 6.83073 6.83073 +1982 233 8.92514 8.92514 +1982 234 9.66279 9.66279 +1982 235 7.05302 7.05302 +1982 236 8.26015 8.26015 +1982 237 7.87144 7.87144 +1982 238 8.02393 8.02393 +1982 239 7.80300 7.80300 +1982 240 7.74867 7.74867 +1982 241 6.82103 6.82103 +1982 242 8.20623 8.20623 +1982 243 6.76704 6.76704 +1982 244 5.75423 5.75423 +1982 245 4.96085 4.96085 +1982 246 6.51229 6.51229 +1982 247 8.84032 8.84032 +1982 248 8.69746 8.69746 +1982 249 8.29989 8.29989 +1982 250 8.95142 8.95142 +1982 251 8.38666 8.38666 +1982 252 8.91609 8.91609 +1982 253 10.49510 10.49510 +1982 254 9.82685 9.82685 +1982 255 8.35315 8.35315 +1982 256 8.15075 8.15075 +1982 257 6.96377 6.96377 +1982 258 6.71575 6.71575 +1982 259 7.06192 7.06192 +1982 260 7.48560 7.48560 +1982 261 8.98581 8.98581 +1982 262 10.41590 10.41590 +1982 263 9.99644 9.99644 +1982 264 9.64044 9.64044 +1982 265 10.29420 10.29420 +1982 266 10.56880 10.56880 +1982 267 10.78320 10.78320 +1982 268 11.58880 11.58880 +1982 269 10.35640 10.35640 +1982 270 8.92747 8.92747 +1982 271 8.09310 8.09310 +1982 272 9.56747 9.56747 +1982 273 9.55274 9.55274 +1982 274 9.69749 9.69749 +1982 275 7.86512 7.86512 +1982 276 9.59092 9.59092 +1982 277 8.10141 8.10141 +1982 278 8.09160 8.09160 +1982 279 8.48141 8.48141 +1982 280 9.02063 9.02063 +1982 281 9.70697 9.70697 +1982 282 9.39496 9.39496 +1982 283 9.23812 9.23812 +1982 284 9.44239 9.44239 +1982 285 10.53780 10.53780 +1982 286 11.34540 11.34540 +1982 287 10.29250 10.29250 +1982 288 8.58220 8.58220 +1982 289 8.22657 8.22657 +1982 290 5.49651 5.49651 +1982 291 4.71489 4.71489 +1982 292 8.05862 8.05862 +1982 293 9.11035 9.11035 +1982 294 11.22980 11.22980 +1982 295 10.09990 10.09990 +1982 296 6.63425 6.63425 +1982 297 7.10826 7.10826 +1982 298 8.40454 8.40454 +1982 299 7.55388 7.55388 +1982 300 10.24220 10.24220 +1982 301 10.85890 10.85890 +1982 302 12.34940 12.34940 +1982 303 11.33770 11.33770 +1982 304 14.37920 14.37920 +1982 305 15.23680 15.23680 +1982 306 15.00060 15.00060 +1982 307 13.42930 13.42930 +1982 308 12.34330 12.34330 +1982 309 13.70390 13.70390 +1982 310 16.73780 16.73780 +1982 311 16.48000 16.48000 +1982 312 16.12640 16.12640 +1982 313 16.09560 16.09560 +1982 314 14.95600 14.95600 +1982 315 12.09160 12.09160 +1982 316 11.32210 11.32210 +1982 317 11.30000 11.30000 +1982 318 13.10890 13.10890 +1982 319 13.67770 13.67770 +1982 320 12.71730 12.71730 +1982 321 14.52880 14.52880 +1982 322 12.95250 12.95250 +1982 323 12.20460 12.20460 +1982 324 13.11610 13.11610 +1982 325 10.80580 10.80580 +1982 326 12.73890 12.73890 +1982 327 13.71490 13.71490 +1982 328 14.93220 14.93220 +1982 329 16.62310 16.62310 +1982 330 16.31700 16.31700 +1982 331 15.86960 15.86960 +1982 332 12.85600 12.85600 +1982 333 9.15840 9.15840 +1982 334 9.57769 9.57769 +1982 335 10.74000 10.74000 +1982 336 12.26050 12.26050 +1982 337 13.21400 13.21400 +1982 338 12.83460 12.83460 +1982 339 15.45000 15.45000 +1982 340 15.41750 15.41750 +1982 341 14.40920 14.40920 +1982 342 14.67030 14.67030 +1982 343 15.97220 15.97220 +1982 344 16.49370 16.49370 +1982 345 13.47350 13.47350 +1982 346 11.73460 11.73460 +1982 347 13.02910 13.02910 +1982 348 13.18850 13.18850 +1982 349 15.43480 15.43480 +1982 350 16.53240 16.53240 +1982 351 15.08330 15.08330 +1982 352 16.19300 16.19300 +1982 353 16.99510 16.99510 +1982 354 15.77260 15.77260 +1982 355 15.02930 15.02930 +1982 356 13.74400 13.74400 +1982 357 15.42240 15.42240 +1982 358 14.94610 14.94610 +1982 359 13.47750 13.47750 +1982 360 11.36990 11.36990 +1982 361 11.56310 11.56310 +1982 362 12.22870 12.22870 +1982 363 11.51690 11.51690 +1982 364 11.74980 11.74980 +1982 365 12.51970 12.51970 +1983 1 14.96270 14.96270 +1983 2 15.86270 15.86270 +1983 3 15.63690 15.63690 +1983 4 15.32210 15.32210 +1983 5 15.23870 15.23870 +1983 6 13.19260 13.19260 +1983 7 13.16200 13.16200 +1983 8 14.92950 14.92950 +1983 9 18.64650 18.64650 +1983 10 21.07610 21.07610 +1983 11 18.70240 18.70240 +1983 12 15.10800 15.10800 +1983 13 13.38190 13.38190 +1983 14 13.73290 13.73290 +1983 15 14.26240 14.26240 +1983 16 14.24740 14.24740 +1983 17 15.33110 15.33110 +1983 18 14.60760 14.60760 +1983 19 11.45320 11.45320 +1983 20 13.11350 13.11350 +1983 21 13.25050 13.25050 +1983 22 12.61700 12.61700 +1983 23 12.71920 12.71920 +1983 24 14.18150 14.18150 +1983 25 13.62090 13.62090 +1983 26 13.97010 13.97010 +1983 27 15.11030 15.11030 +1983 28 15.77370 15.77370 +1983 29 14.29010 14.29010 +1983 30 14.51370 14.51370 +1983 31 14.22780 14.22780 +1983 32 17.10900 17.10900 +1983 33 17.54140 17.54140 +1983 34 17.27250 17.27250 +1983 35 14.51150 14.51150 +1983 36 12.54640 12.54640 +1983 37 14.47970 14.47970 +1983 38 15.08910 15.08910 +1983 39 12.41400 12.41400 +1983 40 14.92940 14.92940 +1983 41 15.10710 15.10710 +1983 42 14.36480 14.36480 +1983 43 15.06110 15.06110 +1983 44 16.55690 16.55690 +1983 45 15.69650 15.69650 +1983 46 15.38870 15.38870 +1983 47 15.24620 15.24620 +1983 48 15.92450 15.92450 +1983 49 15.28670 15.28670 +1983 50 15.56890 15.56890 +1983 51 15.66450 15.66450 +1983 52 15.75860 15.75860 +1983 53 15.94800 15.94800 +1983 54 16.62730 16.62730 +1983 55 16.22920 16.22920 +1983 56 16.58090 16.58090 +1983 57 15.91820 15.91820 +1983 58 15.72340 15.72340 +1983 59 15.11600 15.11600 +1983 60 16.16060 16.16060 +1983 61 13.41120 13.41120 +1983 62 12.27340 12.27340 +1983 63 14.85620 14.85620 +1983 64 14.75710 14.75710 +1983 65 16.54390 16.54390 +1983 66 17.02870 17.02870 +1983 67 17.89970 17.89970 +1983 68 18.75290 18.75290 +1983 69 17.95280 17.95280 +1983 70 17.63640 17.63640 +1983 71 16.95660 16.95660 +1983 72 16.86740 16.86740 +1983 73 16.61050 16.61050 +1983 74 14.22960 14.22960 +1983 75 12.50340 12.50340 +1983 76 13.04830 13.04830 +1983 77 14.92910 14.92910 +1983 78 17.76310 17.76310 +1983 79 18.51450 18.51450 +1983 80 16.84500 16.84500 +1983 81 16.90280 16.90280 +1983 82 18.93380 18.93380 +1983 83 17.55670 17.55670 +1983 84 12.57130 12.57130 +1983 85 13.89800 13.89800 +1983 86 14.83630 14.83630 +1983 87 15.61940 15.61940 +1983 88 12.72990 12.72990 +1983 89 11.31420 11.31420 +1983 90 14.01880 14.01880 +1983 91 14.10080 14.10080 +1983 92 14.38780 14.38780 +1983 93 11.33260 11.33260 +1983 94 12.42330 12.42330 +1983 95 12.01660 12.01660 +1983 96 13.29530 13.29530 +1983 97 14.80810 14.80810 +1983 98 12.95270 12.95270 +1983 99 10.40030 10.40030 +1983 100 10.67910 10.67910 +1983 101 11.17270 11.17270 +1983 102 13.20260 13.20260 +1983 103 14.90680 14.90680 +1983 104 15.94200 15.94200 +1983 105 14.49830 14.49830 +1983 106 13.78700 13.78700 +1983 107 12.87080 12.87080 +1983 108 12.52720 12.52720 +1983 109 16.21120 16.21120 +1983 110 14.87970 14.87970 +1983 111 13.37140 13.37140 +1983 112 13.37190 13.37190 +1983 113 11.31270 11.31270 +1983 114 12.58570 12.58570 +1983 115 13.29410 13.29410 +1983 116 13.69150 13.69150 +1983 117 10.55250 10.55250 +1983 118 8.77627 8.77627 +1983 119 11.09910 11.09910 +1983 120 11.80550 11.80550 +1983 121 10.10520 10.10520 +1983 122 10.10280 10.10280 +1983 123 10.57980 10.57980 +1983 124 12.96870 12.96870 +1983 125 13.26910 13.26910 +1983 126 10.81560 10.81560 +1983 127 9.48889 9.48889 +1983 128 10.90520 10.90520 +1983 129 11.75640 11.75640 +1983 130 9.51167 9.51167 +1983 131 8.13158 8.13158 +1983 132 6.40460 6.40460 +1983 133 7.67054 7.67054 +1983 134 9.15812 9.15812 +1983 135 8.38799 8.38799 +1983 136 10.31860 10.31860 +1983 137 7.41026 7.41026 +1983 138 6.42963 6.42963 +1983 139 6.64254 6.64254 +1983 140 8.08550 8.08550 +1983 141 9.31313 9.31313 +1983 142 9.55238 9.55238 +1983 143 9.07059 9.07059 +1983 144 7.39950 7.39950 +1983 145 8.53404 8.53404 +1983 146 8.31192 8.31192 +1983 147 8.75884 8.75884 +1983 148 9.26212 9.26212 +1983 149 12.04410 12.04410 +1983 150 10.78560 10.78560 +1983 151 9.42068 9.42068 +1983 152 8.29981 8.29981 +1983 153 4.44562 4.44562 +1983 154 4.44983 4.44983 +1983 155 5.23398 5.23398 +1983 156 7.15616 7.15616 +1983 157 8.45267 8.45267 +1983 158 9.86094 9.86094 +1983 159 11.47580 11.47580 +1983 160 11.87880 11.87880 +1983 161 12.00570 12.00570 +1983 162 11.28430 11.28430 +1983 163 9.98356 9.98356 +1983 164 10.67390 10.67390 +1983 165 9.67751 9.67751 +1983 166 8.95318 8.95318 +1983 167 6.31191 6.31191 +1983 168 4.80366 4.80366 +1983 169 5.09450 5.09450 +1983 170 5.98584 5.98584 +1983 171 5.29899 5.29899 +1983 172 6.25496 6.25496 +1983 173 7.08979 7.08979 +1983 174 6.61185 6.61185 +1983 175 5.95662 5.95662 +1983 176 5.62091 5.62091 +1983 177 9.91685 9.91685 +1983 178 9.04318 9.04318 +1983 179 9.15146 9.15146 +1983 180 7.52052 7.52052 +1983 181 4.01805 4.01805 +1983 182 5.18622 5.18622 +1983 183 4.37264 4.37264 +1983 184 3.85456 3.85456 +1983 185 4.69566 4.69566 +1983 186 4.87928 4.87928 +1983 187 5.35179 5.35179 +1983 188 8.77912 8.77912 +1983 189 11.15480 11.15480 +1983 190 10.90480 10.90480 +1983 191 8.74978 8.74978 +1983 192 7.86059 7.86059 +1983 193 8.08462 8.08462 +1983 194 8.02834 8.02834 +1983 195 7.30306 7.30306 +1983 196 6.21591 6.21591 +1983 197 6.34883 6.34883 +1983 198 5.72810 5.72810 +1983 199 6.33805 6.33805 +1983 200 5.57041 5.57041 +1983 201 4.66897 4.66897 +1983 202 5.22924 5.22924 +1983 203 5.17800 5.17800 +1983 204 5.73945 5.73945 +1983 205 4.95169 4.95169 +1983 206 3.93486 3.93486 +1983 207 3.79613 3.79613 +1983 208 3.90177 3.90177 +1983 209 5.09811 5.09811 +1983 210 5.89286 5.89286 +1983 211 6.98304 6.98304 +1983 212 10.30510 10.30510 +1983 213 10.73310 10.73310 +1983 214 11.08520 11.08520 +1983 215 8.93093 8.93093 +1983 216 7.52344 7.52344 +1983 217 7.70573 7.70573 +1983 218 8.04662 8.04662 +1983 219 8.81728 8.81728 +1983 220 8.73871 8.73871 +1983 221 8.53395 8.53395 +1983 222 8.69933 8.69933 +1983 223 7.71327 7.71327 +1983 224 5.77771 5.77771 +1983 225 5.32890 5.32890 +1983 226 6.60370 6.60370 +1983 227 6.65234 6.65234 +1983 228 6.22159 6.22159 +1983 229 7.13513 7.13513 +1983 230 7.83916 7.83916 +1983 231 9.06526 9.06526 +1983 232 9.96478 9.96478 +1983 233 7.92064 7.92064 +1983 234 6.11624 6.11624 +1983 235 5.88631 5.88631 +1983 236 5.77997 5.77997 +1983 237 6.06724 6.06724 +1983 238 6.49196 6.49196 +1983 239 7.00527 7.00527 +1983 240 6.87454 6.87454 +1983 241 8.00612 8.00612 +1983 242 8.29617 8.29617 +1983 243 7.60164 7.60164 +1983 244 9.46299 9.46299 +1983 245 9.55933 9.55933 +1983 246 8.48490 8.48490 +1983 247 7.21277 7.21277 +1983 248 8.69565 8.69565 +1983 249 9.84619 9.84619 +1983 250 11.13690 11.13690 +1983 251 11.82610 11.82610 +1983 252 12.47980 12.47980 +1983 253 11.31660 11.31660 +1983 254 11.23470 11.23470 +1983 255 10.32180 10.32180 +1983 256 9.08254 9.08254 +1983 257 9.97610 9.97610 +1983 258 6.63361 6.63361 +1983 259 7.16609 7.16609 +1983 260 7.56958 7.56958 +1983 261 7.69824 7.69824 +1983 262 10.15510 10.15510 +1983 263 11.32030 11.32030 +1983 264 10.35980 10.35980 +1983 265 9.26838 9.26838 +1983 266 9.08950 9.08950 +1983 267 10.35710 10.35710 +1983 268 10.10460 10.10460 +1983 269 9.36018 9.36018 +1983 270 9.57797 9.57797 +1983 271 9.49959 9.49959 +1983 272 10.33110 10.33110 +1983 273 12.00950 12.00950 +1983 274 10.08920 10.08920 +1983 275 10.03080 10.03080 +1983 276 11.72830 11.72830 +1983 277 9.38858 9.38858 +1983 278 8.73640 8.73640 +1983 279 10.90280 10.90280 +1983 280 12.17950 12.17950 +1983 281 12.90680 12.90680 +1983 282 10.37390 10.37390 +1983 283 10.43980 10.43980 +1983 284 10.38290 10.38290 +1983 285 9.19460 9.19460 +1983 286 7.91460 7.91460 +1983 287 8.10129 8.10129 +1983 288 9.98896 9.98896 +1983 289 9.96017 9.96017 +1983 290 9.92117 9.92117 +1983 291 9.81500 9.81500 +1983 292 12.95240 12.95240 +1983 293 13.51350 13.51350 +1983 294 13.85910 13.85910 +1983 295 13.32730 13.32730 +1983 296 12.37430 12.37430 +1983 297 14.02280 14.02280 +1983 298 13.62340 13.62340 +1983 299 13.02340 13.02340 +1983 300 12.93490 12.93490 +1983 301 14.12100 14.12100 +1983 302 13.63880 13.63880 +1983 303 11.75440 11.75440 +1983 304 12.11290 12.11290 +1983 305 10.53860 10.53860 +1983 306 13.37370 13.37370 +1983 307 14.95890 14.95890 +1983 308 14.67360 14.67360 +1983 309 14.74330 14.74330 +1983 310 14.08160 14.08160 +1983 311 15.48850 15.48850 +1983 312 14.84390 14.84390 +1983 313 13.90730 13.90730 +1983 314 14.95010 14.95010 +1983 315 13.87820 13.87820 +1983 316 12.79890 12.79890 +1983 317 11.46920 11.46920 +1983 318 11.74510 11.74510 +1983 319 12.26130 12.26130 +1983 320 14.55270 14.55270 +1983 321 13.70070 13.70070 +1983 322 14.55110 14.55110 +1983 323 13.00570 13.00570 +1983 324 11.86910 11.86910 +1983 325 11.22180 11.22180 +1983 326 10.77550 10.77550 +1983 327 11.35710 11.35710 +1983 328 12.16300 12.16300 +1983 329 12.67790 12.67790 +1983 330 12.39560 12.39560 +1983 331 11.37090 11.37090 +1983 332 11.55380 11.55380 +1983 333 11.47280 11.47280 +1983 334 12.17270 12.17270 +1983 335 13.38750 13.38750 +1983 336 13.65370 13.65370 +1983 337 14.27370 14.27370 +1983 338 16.00590 16.00590 +1983 339 14.70140 14.70140 +1983 340 14.02790 14.02790 +1983 341 16.53710 16.53710 +1983 342 16.57550 16.57550 +1983 343 17.57550 17.57550 +1983 344 15.91590 15.91590 +1983 345 13.42770 13.42770 +1983 346 12.89310 12.89310 +1983 347 13.84680 13.84680 +1983 348 13.22000 13.22000 +1983 349 13.39540 13.39540 +1983 350 14.29980 14.29980 +1983 351 14.00970 14.00970 +1983 352 12.24110 12.24110 +1983 353 11.57660 11.57660 +1983 354 12.64220 12.64220 +1983 355 14.24940 14.24940 +1983 356 14.28280 14.28280 +1983 357 13.71940 13.71940 +1983 358 12.76480 12.76480 +1983 359 13.72160 13.72160 +1983 360 15.92590 15.92590 +1983 361 13.34790 13.34790 +1983 362 12.39610 12.39610 +1983 363 13.46480 13.46480 +1983 364 12.88280 12.88280 +1983 365 15.25440 15.25440 +1984 1 16.80870 16.80870 +1984 2 18.22890 18.22890 +1984 3 17.56730 17.56730 +1984 4 16.04070 16.04070 +1984 5 15.39350 15.39350 +1984 6 14.24280 14.24280 +1984 7 15.25150 15.25150 +1984 8 16.30770 16.30770 +1984 9 15.67140 15.67140 +1984 10 15.59790 15.59790 +1984 11 13.69820 13.69820 +1984 12 13.01830 13.01830 +1984 13 12.73670 12.73670 +1984 14 12.81160 12.81160 +1984 15 11.61940 11.61940 +1984 16 11.66350 11.66350 +1984 17 14.06380 14.06380 +1984 18 16.78410 16.78410 +1984 19 16.65460 16.65460 +1984 20 16.11500 16.11500 +1984 21 16.20950 16.20950 +1984 22 15.90970 15.90970 +1984 23 16.31220 16.31220 +1984 24 14.64290 14.64290 +1984 25 14.39790 14.39790 +1984 26 15.34600 15.34600 +1984 27 17.64560 17.64560 +1984 28 15.32090 15.32090 +1984 29 16.18980 16.18980 +1984 30 16.59890 16.59890 +1984 31 16.56570 16.56570 +1984 32 17.98330 17.98330 +1984 33 16.22340 16.22340 +1984 34 14.30570 14.30570 +1984 35 15.64160 15.64160 +1984 36 14.13820 14.13820 +1984 37 14.10310 14.10310 +1984 38 14.22880 14.22880 +1984 39 14.80770 14.80770 +1984 40 15.98330 15.98330 +1984 41 15.50230 15.50230 +1984 42 15.33780 15.33780 +1984 43 15.92450 15.92450 +1984 44 16.63280 16.63280 +1984 45 19.00350 19.00350 +1984 46 17.81990 17.81990 +1984 47 17.32830 17.32830 +1984 48 17.17210 17.17210 +1984 49 16.29310 16.29310 +1984 50 13.95860 13.95860 +1984 51 13.02190 13.02190 +1984 52 13.79200 13.79200 +1984 53 15.20480 15.20480 +1984 54 14.64220 14.64220 +1984 55 15.74800 15.74800 +1984 56 16.95390 16.95390 +1984 57 17.50650 17.50650 +1984 58 15.96890 15.96890 +1984 59 15.80680 15.80680 +1984 60 16.13430 16.13430 +1984 61 16.73360 16.73360 +1984 62 17.20380 17.20380 +1984 63 17.08120 17.08120 +1984 64 17.65000 17.65000 +1984 65 16.64070 16.64070 +1984 66 15.84920 15.84920 +1984 67 16.24870 16.24870 +1984 68 16.01790 16.01790 +1984 69 15.66280 15.66280 +1984 70 15.94390 15.94390 +1984 71 15.83720 15.83720 +1984 72 14.61900 14.61900 +1984 73 14.83810 14.83810 +1984 74 14.95100 14.95100 +1984 75 14.74990 14.74990 +1984 76 13.76660 13.76660 +1984 77 14.31940 14.31940 +1984 78 14.66880 14.66880 +1984 79 15.48960 15.48960 +1984 80 15.46380 15.46380 +1984 81 16.11820 16.11820 +1984 82 14.65030 14.65030 +1984 83 14.08640 14.08640 +1984 84 13.34060 13.34060 +1984 85 14.19410 14.19410 +1984 86 14.60250 14.60250 +1984 87 15.48240 15.48240 +1984 88 15.59530 15.59530 +1984 89 15.69820 15.69820 +1984 90 15.40860 15.40860 +1984 91 16.75640 16.75640 +1984 92 16.15820 16.15820 +1984 93 15.33400 15.33400 +1984 94 13.41540 13.41540 +1984 95 14.55420 14.55420 +1984 96 13.04680 13.04680 +1984 97 13.07150 13.07150 +1984 98 12.93710 12.93710 +1984 99 10.74150 10.74150 +1984 100 10.60010 10.60010 +1984 101 12.57950 12.57950 +1984 102 12.74950 12.74950 +1984 103 12.76350 12.76350 +1984 104 13.67710 13.67710 +1984 105 12.98000 12.98000 +1984 106 13.06000 13.06000 +1984 107 13.27350 13.27350 +1984 108 12.71820 12.71820 +1984 109 11.89970 11.89970 +1984 110 11.59440 11.59440 +1984 111 11.78410 11.78410 +1984 112 11.33530 11.33530 +1984 113 12.65560 12.65560 +1984 114 12.40030 12.40030 +1984 115 12.35460 12.35460 +1984 116 12.74880 12.74880 +1984 117 12.31970 12.31970 +1984 118 11.36220 11.36220 +1984 119 9.81603 9.81603 +1984 120 8.04736 8.04736 +1984 121 11.64430 11.64430 +1984 122 8.76816 8.76816 +1984 123 10.09860 10.09860 +1984 124 9.42643 9.42643 +1984 125 9.55544 9.55544 +1984 126 10.57010 10.57010 +1984 127 11.67360 11.67360 +1984 128 11.89160 11.89160 +1984 129 13.51170 13.51170 +1984 130 13.09160 13.09160 +1984 131 9.96569 9.96569 +1984 132 9.98400 9.98400 +1984 133 10.61560 10.61560 +1984 134 10.98110 10.98110 +1984 135 10.12050 10.12050 +1984 136 8.65328 8.65328 +1984 137 8.07156 8.07156 +1984 138 9.06939 9.06939 +1984 139 8.62435 8.62435 +1984 140 6.50270 6.50270 +1984 141 6.07263 6.07263 +1984 142 7.05696 7.05696 +1984 143 8.39679 8.39679 +1984 144 11.00160 11.00160 +1984 145 11.28330 11.28330 +1984 146 9.96201 9.96201 +1984 147 8.67050 8.67050 +1984 148 7.93745 7.93745 +1984 149 7.78684 7.78684 +1984 150 8.50803 8.50803 +1984 151 5.88463 5.88463 +1984 152 5.21916 5.21916 +1984 153 6.95446 6.95446 +1984 154 7.80671 7.80671 +1984 155 10.04600 10.04600 +1984 156 10.56910 10.56910 +1984 157 8.65736 8.65736 +1984 158 9.60629 9.60629 +1984 159 8.24395 8.24395 +1984 160 10.28040 10.28040 +1984 161 12.15060 12.15060 +1984 162 9.57828 9.57828 +1984 163 8.58490 8.58490 +1984 164 9.54756 9.54756 +1984 165 7.02926 7.02926 +1984 166 5.74815 5.74815 +1984 167 6.98799 6.98799 +1984 168 7.72947 7.72947 +1984 169 9.01350 9.01350 +1984 170 9.86991 9.86991 +1984 171 8.57516 8.57516 +1984 172 11.79570 11.79570 +1984 173 11.60970 11.60970 +1984 174 9.28823 9.28823 +1984 175 6.00861 6.00861 +1984 176 4.02989 4.02989 +1984 177 5.59596 5.59596 +1984 178 8.72070 8.72070 +1984 179 8.17587 8.17587 +1984 180 9.79786 9.79786 +1984 181 11.37790 11.37790 +1984 182 10.97800 10.97800 +1984 183 10.88210 10.88210 +1984 184 10.56410 10.56410 +1984 185 9.41765 9.41765 +1984 186 9.34561 9.34561 +1984 187 10.19060 10.19060 +1984 188 9.06724 9.06724 +1984 189 7.06702 7.06702 +1984 190 5.56863 5.56863 +1984 191 5.81147 5.81147 +1984 192 7.08062 7.08062 +1984 193 10.25040 10.25040 +1984 194 9.10444 9.10444 +1984 195 8.51103 8.51103 +1984 196 5.54616 5.54616 +1984 197 3.57459 3.57459 +1984 198 4.87322 4.87322 +1984 199 5.50177 5.50177 +1984 200 5.85237 5.85237 +1984 201 7.03698 7.03698 +1984 202 8.47991 8.47991 +1984 203 10.38720 10.38720 +1984 204 11.18650 11.18650 +1984 205 8.96178 8.96178 +1984 206 7.34878 7.34878 +1984 207 8.08100 8.08100 +1984 208 6.08605 6.08605 +1984 209 5.48087 5.48087 +1984 210 7.16522 7.16522 +1984 211 10.07540 10.07540 +1984 212 10.25300 10.25300 +1984 213 8.79846 8.79846 +1984 214 8.89826 8.89826 +1984 215 9.84060 9.84060 +1984 216 9.79518 9.79518 +1984 217 6.16682 6.16682 +1984 218 5.64887 5.64887 +1984 219 5.49154 5.49154 +1984 220 4.59399 4.59399 +1984 221 5.14458 5.14458 +1984 222 7.20915 7.20915 +1984 223 8.15055 8.15055 +1984 224 8.19236 8.19236 +1984 225 8.31597 8.31597 +1984 226 9.05403 9.05403 +1984 227 9.47863 9.47863 +1984 228 10.05150 10.05150 +1984 229 10.38440 10.38440 +1984 230 10.19770 10.19770 +1984 231 9.84706 9.84706 +1984 232 9.83192 9.83192 +1984 233 10.80160 10.80160 +1984 234 11.17480 11.17480 +1984 235 9.68999 9.68999 +1984 236 6.83358 6.83358 +1984 237 6.37594 6.37594 +1984 238 6.67127 6.67127 +1984 239 6.69051 6.69051 +1984 240 7.95788 7.95788 +1984 241 9.05165 9.05165 +1984 242 8.58907 8.58907 +1984 243 9.28670 9.28670 +1984 244 9.29079 9.29079 +1984 245 9.70372 9.70372 +1984 246 8.40316 8.40316 +1984 247 9.09690 9.09690 +1984 248 8.65560 8.65560 +1984 249 10.44900 10.44900 +1984 250 8.37407 8.37407 +1984 251 7.50268 7.50268 +1984 252 7.03718 7.03718 +1984 253 7.96930 7.96930 +1984 254 8.72992 8.72992 +1984 255 9.31043 9.31043 +1984 256 10.12680 10.12680 +1984 257 8.46706 8.46706 +1984 258 7.52723 7.52723 +1984 259 6.51419 6.51419 +1984 260 6.71569 6.71569 +1984 261 7.02892 7.02892 +1984 262 7.36685 7.36685 +1984 263 7.09291 7.09291 +1984 264 8.84033 8.84033 +1984 265 10.01020 10.01020 +1984 266 10.06790 10.06790 +1984 267 10.03500 10.03500 +1984 268 9.55833 9.55833 +1984 269 10.45310 10.45310 +1984 270 8.64046 8.64046 +1984 271 8.82957 8.82957 +1984 272 9.50132 9.50132 +1984 273 6.49723 6.49723 +1984 274 6.96368 6.96368 +1984 275 6.23732 6.23732 +1984 276 7.06701 7.06701 +1984 277 7.54740 7.54740 +1984 278 8.10253 8.10253 +1984 279 9.03824 9.03824 +1984 280 10.08040 10.08040 +1984 281 9.26581 9.26581 +1984 282 10.62130 10.62130 +1984 283 10.38400 10.38400 +1984 284 12.00010 12.00010 +1984 285 9.57679 9.57679 +1984 286 10.78980 10.78980 +1984 287 12.76640 12.76640 +1984 288 14.19240 14.19240 +1984 289 12.62300 12.62300 +1984 290 13.16730 13.16730 +1984 291 12.33400 12.33400 +1984 292 11.06690 11.06690 +1984 293 9.97346 9.97346 +1984 294 9.60951 9.60951 +1984 295 7.82552 7.82552 +1984 296 8.70316 8.70316 +1984 297 9.79396 9.79396 +1984 298 11.28390 11.28390 +1984 299 11.00960 11.00960 +1984 300 11.18030 11.18030 +1984 301 12.88420 12.88420 +1984 302 12.83640 12.83640 +1984 303 12.56860 12.56860 +1984 304 12.85850 12.85850 +1984 305 13.11330 13.11330 +1984 306 11.86180 11.86180 +1984 307 13.56350 13.56350 +1984 308 13.81960 13.81960 +1984 309 14.11590 14.11590 +1984 310 13.47650 13.47650 +1984 311 15.19760 15.19760 +1984 312 14.05460 14.05460 +1984 313 14.17640 14.17640 +1984 314 14.42740 14.42740 +1984 315 14.95860 14.95860 +1984 316 16.12310 16.12310 +1984 317 16.44470 16.44470 +1984 318 16.40320 16.40320 +1984 319 16.03320 16.03320 +1984 320 14.58320 14.58320 +1984 321 11.28680 11.28680 +1984 322 11.60980 11.60980 +1984 323 11.60080 11.60080 +1984 324 11.79080 11.79080 +1984 325 12.54680 12.54680 +1984 326 15.06050 15.06050 +1984 327 15.89580 15.89580 +1984 328 16.71080 16.71080 +1984 329 15.36570 15.36570 +1984 330 11.55730 11.55730 +1984 331 13.62880 13.62880 +1984 332 13.17880 13.17880 +1984 333 14.08500 14.08500 +1984 334 14.83240 14.83240 +1984 335 16.15150 16.15150 +1984 336 15.88650 15.88650 +1984 337 15.57660 15.57660 +1984 338 15.77980 15.77980 +1984 339 15.93150 15.93150 +1984 340 16.41840 16.41840 +1984 341 15.13630 15.13630 +1984 342 15.10980 15.10980 +1984 343 16.42430 16.42430 +1984 344 17.11940 17.11940 +1984 345 17.18460 17.18460 +1984 346 15.40100 15.40100 +1984 347 14.79950 14.79950 +1984 348 16.39530 16.39530 +1984 349 17.10700 17.10700 +1984 350 18.16250 18.16250 +1984 351 16.36890 16.36890 +1984 352 14.90040 14.90040 +1984 353 16.04090 16.04090 +1984 354 16.41220 16.41220 +1984 355 17.56900 17.56900 +1984 356 17.84270 17.84270 +1984 357 18.66300 18.66300 +1984 358 17.10390 17.10390 +1984 359 18.24510 18.24510 +1984 360 18.43430 18.43430 +1984 361 19.27370 19.27370 +1984 362 19.00750 19.00750 +1984 363 18.53090 18.53090 +1984 364 17.72790 17.72790 +1984 365 18.23620 18.23620 +1984 366 17.61600 17.61600 +1985 1 17.24920 17.24920 +1985 2 19.15850 19.15850 +1985 3 18.50450 18.50450 +1985 4 15.91920 15.91920 +1985 5 16.63810 16.63810 +1985 6 18.01420 18.01420 +1985 7 17.85040 17.85040 +1985 8 18.23450 18.23450 +1985 9 18.01240 18.01240 +1985 10 18.05180 18.05180 +1985 11 16.80180 16.80180 +1985 12 15.35710 15.35710 +1985 13 15.68490 15.68490 +1985 14 16.33030 16.33030 +1985 15 18.40030 18.40030 +1985 16 18.88860 18.88860 +1985 17 18.05310 18.05310 +1985 18 18.26770 18.26770 +1985 19 17.31760 17.31760 +1985 20 16.22450 16.22450 +1985 21 16.75850 16.75850 +1985 22 16.07290 16.07290 +1985 23 16.56850 16.56850 +1985 24 16.03210 16.03210 +1985 25 16.12600 16.12600 +1985 26 16.02560 16.02560 +1985 27 16.71900 16.71900 +1985 28 18.13430 18.13430 +1985 29 18.74500 18.74500 +1985 30 17.98910 17.98910 +1985 31 18.17950 18.17950 +1985 32 17.33740 17.33740 +1985 33 15.22070 15.22070 +1985 34 15.14400 15.14400 +1985 35 17.03130 17.03130 +1985 36 17.99500 17.99500 +1985 37 17.12530 17.12530 +1985 38 17.18720 17.18720 +1985 39 19.88450 19.88450 +1985 40 18.34890 18.34890 +1985 41 17.43560 17.43560 +1985 42 15.72840 15.72840 +1985 43 14.34520 14.34520 +1985 44 15.55380 15.55380 +1985 45 15.75070 15.75070 +1985 46 17.40340 17.40340 +1985 47 16.60840 16.60840 +1985 48 15.91820 15.91820 +1985 49 15.32220 15.32220 +1985 50 14.62390 14.62390 +1985 51 15.18120 15.18120 +1985 52 15.34230 15.34230 +1985 53 15.00350 15.00350 +1985 54 15.30490 15.30490 +1985 55 15.64290 15.64290 +1985 56 15.92160 15.92160 +1985 57 16.14370 16.14370 +1985 58 15.69520 15.69520 +1985 59 16.70750 16.70750 +1985 60 17.07170 17.07170 +1985 61 17.15560 17.15560 +1985 62 17.22530 17.22530 +1985 63 16.90970 16.90970 +1985 64 16.83400 16.83400 +1985 65 16.94220 16.94220 +1985 66 14.48010 14.48010 +1985 67 13.13650 13.13650 +1985 68 14.63340 14.63340 +1985 69 15.26140 15.26140 +1985 70 15.32640 15.32640 +1985 71 14.10520 14.10520 +1985 72 13.12850 13.12850 +1985 73 15.75870 15.75870 +1985 74 17.07490 17.07490 +1985 75 17.27090 17.27090 +1985 76 16.26410 16.26410 +1985 77 15.21990 15.21990 +1985 78 14.19800 14.19800 +1985 79 12.18530 12.18530 +1985 80 13.45740 13.45740 +1985 81 15.74880 15.74880 +1985 82 14.27150 14.27150 +1985 83 12.52630 12.52630 +1985 84 13.53360 13.53360 +1985 85 15.69740 15.69740 +1985 86 15.05780 15.05780 +1985 87 14.00600 14.00600 +1985 88 14.09400 14.09400 +1985 89 13.07550 13.07550 +1985 90 11.12540 11.12540 +1985 91 12.77500 12.77500 +1985 92 11.96830 11.96830 +1985 93 13.74400 13.74400 +1985 94 12.04310 12.04310 +1985 95 11.79260 11.79260 +1985 96 10.89620 10.89620 +1985 97 10.80220 10.80220 +1985 98 11.76580 11.76580 +1985 99 11.55600 11.55600 +1985 100 11.94210 11.94210 +1985 101 11.54030 11.54030 +1985 102 11.72860 11.72860 +1985 103 12.32860 12.32860 +1985 104 12.34410 12.34410 +1985 105 12.79270 12.79270 +1985 106 13.95250 13.95250 +1985 107 14.73450 14.73450 +1985 108 15.59450 15.59450 +1985 109 15.99810 15.99810 +1985 110 13.98140 13.98140 +1985 111 9.47081 9.47081 +1985 112 9.22462 9.22462 +1985 113 9.23214 9.23214 +1985 114 10.27040 10.27040 +1985 115 10.66690 10.66690 +1985 116 10.92830 10.92830 +1985 117 10.52080 10.52080 +1985 118 10.05270 10.05270 +1985 119 9.64503 9.64503 +1985 120 10.15850 10.15850 +1985 121 9.76508 9.76508 +1985 122 9.27528 9.27528 +1985 123 10.45440 10.45440 +1985 124 9.65585 9.65585 +1985 125 10.47970 10.47970 +1985 126 11.02960 11.02960 +1985 127 11.45850 11.45850 +1985 128 10.20790 10.20790 +1985 129 10.79940 10.79940 +1985 130 10.93300 10.93300 +1985 131 10.77290 10.77290 +1985 132 8.18732 8.18732 +1985 133 6.53061 6.53061 +1985 134 6.86927 6.86927 +1985 135 7.73170 7.73170 +1985 136 8.26115 8.26115 +1985 137 9.01449 9.01449 +1985 138 9.19815 9.19815 +1985 139 9.33249 9.33249 +1985 140 10.52960 10.52960 +1985 141 10.73810 10.73810 +1985 142 12.80660 12.80660 +1985 143 11.60190 11.60190 +1985 144 7.77972 7.77972 +1985 145 8.02923 8.02923 +1985 146 8.71018 8.71018 +1985 147 8.36267 8.36267 +1985 148 9.08902 9.08902 +1985 149 8.66519 8.66519 +1985 150 8.95112 8.95112 +1985 151 8.91518 8.91518 +1985 152 9.36523 9.36523 +1985 153 9.54140 9.54140 +1985 154 8.43591 8.43591 +1985 155 12.10910 12.10910 +1985 156 12.09280 12.09280 +1985 157 11.43900 11.43900 +1985 158 9.62863 9.62863 +1985 159 9.42570 9.42570 +1985 160 8.47992 8.47992 +1985 161 9.31504 9.31504 +1985 162 8.61465 8.61465 +1985 163 8.26619 8.26619 +1985 164 9.88081 9.88081 +1985 165 10.26850 10.26850 +1985 166 10.10520 10.10520 +1985 167 9.43976 9.43976 +1985 168 9.24249 9.24249 +1985 169 8.59636 8.59636 +1985 170 7.83211 7.83211 +1985 171 10.49930 10.49930 +1985 172 11.81190 11.81190 +1985 173 10.12820 10.12820 +1985 174 8.58618 8.58618 +1985 175 6.88163 6.88163 +1985 176 7.41464 7.41464 +1985 177 6.02776 6.02776 +1985 178 7.47563 7.47563 +1985 179 8.83224 8.83224 +1985 180 8.02694 8.02694 +1985 181 8.72587 8.72587 +1985 182 7.67404 7.67404 +1985 183 6.49847 6.49847 +1985 184 7.14335 7.14335 +1985 185 8.79041 8.79041 +1985 186 8.09105 8.09105 +1985 187 7.94247 7.94247 +1985 188 7.05279 7.05279 +1985 189 7.00069 7.00069 +1985 190 7.35523 7.35523 +1985 191 5.07161 5.07161 +1985 192 9.25417 9.25417 +1985 193 11.21630 11.21630 +1985 194 10.05180 10.05180 +1985 195 8.48453 8.48453 +1985 196 7.23440 7.23440 +1985 197 10.32150 10.32150 +1985 198 10.88410 10.88410 +1985 199 9.44352 9.44352 +1985 200 7.70139 7.70139 +1985 201 9.59035 9.59035 +1985 202 10.11910 10.11910 +1985 203 8.95375 8.95375 +1985 204 7.58868 7.58868 +1985 205 7.08631 7.08631 +1985 206 7.26970 7.26970 +1985 207 6.91553 6.91553 +1985 208 6.89807 6.89807 +1985 209 7.38797 7.38797 +1985 210 7.35987 7.35987 +1985 211 9.62402 9.62402 +1985 212 7.76940 7.76940 +1985 213 6.92657 6.92657 +1985 214 5.75441 5.75441 +1985 215 5.80991 5.80991 +1985 216 6.28363 6.28363 +1985 217 6.67310 6.67310 +1985 218 7.56280 7.56280 +1985 219 8.46018 8.46018 +1985 220 8.95271 8.95271 +1985 221 8.36356 8.36356 +1985 222 7.31872 7.31872 +1985 223 6.33526 6.33526 +1985 224 5.20111 5.20111 +1985 225 4.38606 4.38606 +1985 226 4.94713 4.94713 +1985 227 4.77376 4.77376 +1985 228 5.45199 5.45199 +1985 229 6.76384 6.76384 +1985 230 10.18060 10.18060 +1985 231 7.82116 7.82116 +1985 232 7.37949 7.37949 +1985 233 7.53832 7.53832 +1985 234 7.15011 7.15011 +1985 235 6.65216 6.65216 +1985 236 10.22250 10.22250 +1985 237 10.56560 10.56560 +1985 238 8.95837 8.95837 +1985 239 6.03880 6.03880 +1985 240 6.14337 6.14337 +1985 241 5.33197 5.33197 +1985 242 7.90944 7.90944 +1985 243 8.63127 8.63127 +1985 244 9.59068 9.59068 +1985 245 11.17460 11.17460 +1985 246 11.79860 11.79860 +1985 247 8.55543 8.55543 +1985 248 7.46307 7.46307 +1985 249 6.49683 6.49683 +1985 250 8.97682 8.97682 +1985 251 9.85313 9.85313 +1985 252 9.33385 9.33385 +1985 253 8.52476 8.52476 +1985 254 7.57040 7.57040 +1985 255 9.07114 9.07114 +1985 256 9.17456 9.17456 +1985 257 8.81660 8.81660 +1985 258 8.60579 8.60579 +1985 259 8.84269 8.84269 +1985 260 9.12309 9.12309 +1985 261 8.87898 8.87898 +1985 262 9.14187 9.14187 +1985 263 9.09274 9.09274 +1985 264 8.41167 8.41167 +1985 265 9.08142 9.08142 +1985 266 9.47731 9.47731 +1985 267 9.67235 9.67235 +1985 268 10.39170 10.39170 +1985 269 12.18050 12.18050 +1985 270 8.91746 8.91746 +1985 271 8.75382 8.75382 +1985 272 9.78856 9.78856 +1985 273 9.76660 9.76660 +1985 274 9.03036 9.03036 +1985 275 8.90073 8.90073 +1985 276 8.89172 8.89172 +1985 277 9.15305 9.15305 +1985 278 10.73610 10.73610 +1985 279 12.82800 12.82800 +1985 280 12.44290 12.44290 +1985 281 9.36992 9.36992 +1985 282 10.31090 10.31090 +1985 283 9.52810 9.52810 +1985 284 10.34770 10.34770 +1985 285 12.56600 12.56600 +1985 286 9.72755 9.72755 +1985 287 10.40110 10.40110 +1985 288 8.48349 8.48349 +1985 289 8.48129 8.48129 +1985 290 8.18907 8.18907 +1985 291 9.96578 9.96578 +1985 292 11.25040 11.25040 +1985 293 12.95890 12.95890 +1985 294 11.39420 11.39420 +1985 295 11.61150 11.61150 +1985 296 12.49770 12.49770 +1985 297 11.14350 11.14350 +1985 298 7.62012 7.62012 +1985 299 7.33183 7.33183 +1985 300 9.82189 9.82189 +1985 301 11.18970 11.18970 +1985 302 12.27560 12.27560 +1985 303 12.02520 12.02520 +1985 304 11.56680 11.56680 +1985 305 11.10040 11.10040 +1985 306 10.10920 10.10920 +1985 307 8.67690 8.67690 +1985 308 9.58782 9.58782 +1985 309 11.03690 11.03690 +1985 310 11.08030 11.08030 +1985 311 11.65470 11.65470 +1985 312 13.52800 13.52800 +1985 313 11.39060 11.39060 +1985 314 13.59570 13.59570 +1985 315 13.26590 13.26590 +1985 316 11.62700 11.62700 +1985 317 12.05530 12.05530 +1985 318 13.74060 13.74060 +1985 319 14.56730 14.56730 +1985 320 14.66110 14.66110 +1985 321 13.70980 13.70980 +1985 322 13.90350 13.90350 +1985 323 13.76330 13.76330 +1985 324 11.54470 11.54470 +1985 325 11.82980 11.82980 +1985 326 12.64530 12.64530 +1985 327 14.15470 14.15470 +1985 328 12.30100 12.30100 +1985 329 13.23330 13.23330 +1985 330 13.94560 13.94560 +1985 331 14.24350 14.24350 +1985 332 14.59360 14.59360 +1985 333 14.21900 14.21900 +1985 334 14.45550 14.45550 +1985 335 15.20370 15.20370 +1985 336 13.82090 13.82090 +1985 337 14.60550 14.60550 +1985 338 13.47340 13.47340 +1985 339 13.60230 13.60230 +1985 340 13.37150 13.37150 +1985 341 12.90920 12.90920 +1985 342 13.19990 13.19990 +1985 343 14.08600 14.08600 +1985 344 16.06710 16.06710 +1985 345 16.70990 16.70990 +1985 346 15.75750 15.75750 +1985 347 15.77090 15.77090 +1985 348 16.12690 16.12690 +1985 349 16.10140 16.10140 +1985 350 15.66910 15.66910 +1985 351 13.85060 13.85060 +1985 352 14.78340 14.78340 +1985 353 15.33940 15.33940 +1985 354 15.99740 15.99740 +1985 355 16.54520 16.54520 +1985 356 16.27600 16.27600 +1985 357 18.13660 18.13660 +1985 358 15.69990 15.69990 +1985 359 17.10510 17.10510 +1985 360 16.46240 16.46240 +1985 361 16.92560 16.92560 +1985 362 16.73240 16.73240 +1985 363 16.69420 16.69420 +1985 364 15.83170 15.83170 +1985 365 16.17510 16.17510 +1986 1 16.93970 16.93970 +1986 2 17.51890 17.51890 +1986 3 17.45850 17.45850 +1986 4 18.05770 18.05770 +1986 5 18.72560 18.72560 +1986 6 18.32370 18.32370 +1986 7 17.96820 17.96820 +1986 8 16.54120 16.54120 +1986 9 18.34700 18.34700 +1986 10 18.63500 18.63500 +1986 11 18.79340 18.79340 +1986 12 19.15860 19.15860 +1986 13 17.52590 17.52590 +1986 14 18.37180 18.37180 +1986 15 18.32860 18.32860 +1986 16 18.34380 18.34380 +1986 17 19.89380 19.89380 +1986 18 20.92780 20.92780 +1986 19 18.20480 18.20480 +1986 20 17.02270 17.02270 +1986 21 17.92130 17.92130 +1986 22 18.11430 18.11430 +1986 23 18.64260 18.64260 +1986 24 16.79160 16.79160 +1986 25 17.69210 17.69210 +1986 26 16.02400 16.02400 +1986 27 17.04430 17.04430 +1986 28 13.69570 13.69570 +1986 29 13.79910 13.79910 +1986 30 14.73320 14.73320 +1986 31 15.17540 15.17540 +1986 32 16.82620 16.82620 +1986 33 18.68720 18.68720 +1986 34 19.76510 19.76510 +1986 35 18.62220 18.62220 +1986 36 17.90990 17.90990 +1986 37 17.84500 17.84500 +1986 38 17.65080 17.65080 +1986 39 16.37880 16.37880 +1986 40 16.56020 16.56020 +1986 41 17.68550 17.68550 +1986 42 17.70230 17.70230 +1986 43 17.06920 17.06920 +1986 44 15.63290 15.63290 +1986 45 16.49380 16.49380 +1986 46 16.76750 16.76750 +1986 47 16.92050 16.92050 +1986 48 16.08170 16.08170 +1986 49 16.45600 16.45600 +1986 50 16.75420 16.75420 +1986 51 16.87050 16.87050 +1986 52 17.72730 17.72730 +1986 53 17.14070 17.14070 +1986 54 17.79720 17.79720 +1986 55 19.04110 19.04110 +1986 56 17.18770 17.18770 +1986 57 15.84050 15.84050 +1986 58 16.79670 16.79670 +1986 59 15.48440 15.48440 +1986 60 15.25570 15.25570 +1986 61 14.94350 14.94350 +1986 62 14.10800 14.10800 +1986 63 15.40690 15.40690 +1986 64 14.88180 14.88180 +1986 65 14.77030 14.77030 +1986 66 14.06380 14.06380 +1986 67 15.18140 15.18140 +1986 68 15.48050 15.48050 +1986 69 16.69090 16.69090 +1986 70 17.20340 17.20340 +1986 71 17.69690 17.69690 +1986 72 17.69450 17.69450 +1986 73 16.97510 16.97510 +1986 74 16.59400 16.59400 +1986 75 16.32480 16.32480 +1986 76 15.46550 15.46550 +1986 77 15.16510 15.16510 +1986 78 14.87860 14.87860 +1986 79 16.08860 16.08860 +1986 80 14.22670 14.22670 +1986 81 14.55710 14.55710 +1986 82 13.79970 13.79970 +1986 83 14.05360 14.05360 +1986 84 12.32040 12.32040 +1986 85 13.13010 13.13010 +1986 86 13.49950 13.49950 +1986 87 14.16550 14.16550 +1986 88 11.76150 11.76150 +1986 89 11.59910 11.59910 +1986 90 10.72100 10.72100 +1986 91 12.75600 12.75600 +1986 92 13.18930 13.18930 +1986 93 12.53560 12.53560 +1986 94 13.57930 13.57930 +1986 95 14.66560 14.66560 +1986 96 12.97320 12.97320 +1986 97 13.38110 13.38110 +1986 98 13.20220 13.20220 +1986 99 12.44990 12.44990 +1986 100 11.93920 11.93920 +1986 101 11.48090 11.48090 +1986 102 12.47200 12.47200 +1986 103 11.04270 11.04270 +1986 104 11.26440 11.26440 +1986 105 11.52670 11.52670 +1986 106 11.26290 11.26290 +1986 107 12.05380 12.05380 +1986 108 11.97830 11.97830 +1986 109 12.50020 12.50020 +1986 110 13.97600 13.97600 +1986 111 14.74100 14.74100 +1986 112 13.87560 13.87560 +1986 113 13.70940 13.70940 +1986 114 14.04520 14.04520 +1986 115 14.95240 14.95240 +1986 116 15.27660 15.27660 +1986 117 15.18530 15.18530 +1986 118 14.20260 14.20260 +1986 119 11.09640 11.09640 +1986 120 10.91930 10.91930 +1986 121 11.23350 11.23350 +1986 122 10.43100 10.43100 +1986 123 11.36330 11.36330 +1986 124 9.83061 9.83061 +1986 125 10.41860 10.41860 +1986 126 10.55810 10.55810 +1986 127 11.53070 11.53070 +1986 128 10.87050 10.87050 +1986 129 10.51590 10.51590 +1986 130 10.61010 10.61010 +1986 131 12.08560 12.08560 +1986 132 11.49280 11.49280 +1986 133 11.22310 11.22310 +1986 134 10.84460 10.84460 +1986 135 9.71564 9.71564 +1986 136 12.69420 12.69420 +1986 137 11.74510 11.74510 +1986 138 9.23429 9.23429 +1986 139 10.22760 10.22760 +1986 140 13.19800 13.19800 +1986 141 10.91870 10.91870 +1986 142 7.75932 7.75932 +1986 143 6.86404 6.86404 +1986 144 9.26406 9.26406 +1986 145 11.55610 11.55610 +1986 146 10.20450 10.20450 +1986 147 6.67708 6.67708 +1986 148 6.73606 6.73606 +1986 149 10.59750 10.59750 +1986 150 9.03886 9.03886 +1986 151 9.04718 9.04718 +1986 152 7.30582 7.30582 +1986 153 6.88415 6.88415 +1986 154 7.86142 7.86142 +1986 155 8.72757 8.72757 +1986 156 9.21807 9.21807 +1986 157 9.09203 9.09203 +1986 158 7.54667 7.54667 +1986 159 10.22010 10.22010 +1986 160 12.26520 12.26520 +1986 161 10.60340 10.60340 +1986 162 7.19651 7.19651 +1986 163 7.27432 7.27432 +1986 164 7.13857 7.13857 +1986 165 6.68375 6.68375 +1986 166 3.30908 3.30908 +1986 167 4.19562 4.19562 +1986 168 4.51006 4.51006 +1986 169 4.62086 4.62086 +1986 170 7.81745 7.81745 +1986 171 10.18640 10.18640 +1986 172 9.43696 9.43696 +1986 173 7.83797 7.83797 +1986 174 8.91753 8.91753 +1986 175 8.48948 8.48948 +1986 176 6.24905 6.24905 +1986 177 7.06912 7.06912 +1986 178 8.78537 8.78537 +1986 179 7.05059 7.05059 +1986 180 6.35269 6.35269 +1986 181 5.82944 5.82944 +1986 182 5.68587 5.68587 +1986 183 7.52932 7.52932 +1986 184 5.91948 5.91948 +1986 185 3.72271 3.72271 +1986 186 5.96995 5.96995 +1986 187 7.65528 7.65528 +1986 188 6.42699 6.42699 +1986 189 6.08369 6.08369 +1986 190 8.36198 8.36198 +1986 191 7.93280 7.93280 +1986 192 5.59475 5.59475 +1986 193 4.87066 4.87066 +1986 194 4.53450 4.53450 +1986 195 4.79437 4.79437 +1986 196 4.80185 4.80185 +1986 197 5.14397 5.14397 +1986 198 5.00052 5.00052 +1986 199 4.93740 4.93740 +1986 200 5.75215 5.75215 +1986 201 5.44868 5.44868 +1986 202 4.60276 4.60276 +1986 203 3.52996 3.52996 +1986 204 5.35488 5.35488 +1986 205 10.15880 10.15880 +1986 206 8.81635 8.81635 +1986 207 4.31277 4.31277 +1986 208 7.37802 7.37802 +1986 209 8.71816 8.71816 +1986 210 7.72329 7.72329 +1986 211 8.14910 8.14910 +1986 212 6.87488 6.87488 +1986 213 5.64480 5.64480 +1986 214 4.39796 4.39796 +1986 215 5.17557 5.17557 +1986 216 4.99372 4.99372 +1986 217 5.15540 5.15540 +1986 218 5.64268 5.64268 +1986 219 8.12443 8.12443 +1986 220 10.68480 10.68480 +1986 221 8.96133 8.96133 +1986 222 6.65086 6.65086 +1986 223 7.56405 7.56405 +1986 224 6.60250 6.60250 +1986 225 5.42454 5.42454 +1986 226 4.93396 4.93396 +1986 227 5.61154 5.61154 +1986 228 6.06090 6.06090 +1986 229 5.63730 5.63730 +1986 230 8.76517 8.76517 +1986 231 9.42781 9.42781 +1986 232 10.20990 10.20990 +1986 233 9.77953 9.77953 +1986 234 8.97929 8.97929 +1986 235 8.02388 8.02388 +1986 236 6.59889 6.59889 +1986 237 5.50425 5.50425 +1986 238 6.29849 6.29849 +1986 239 7.00438 7.00438 +1986 240 6.10009 6.10009 +1986 241 6.00074 6.00074 +1986 242 5.59715 5.59715 +1986 243 6.65237 6.65237 +1986 244 7.57890 7.57890 +1986 245 7.07789 7.07789 +1986 246 7.87432 7.87432 +1986 247 8.90511 8.90511 +1986 248 8.43978 8.43978 +1986 249 10.63660 10.63660 +1986 250 9.01110 9.01110 +1986 251 7.06911 7.06911 +1986 252 6.15154 6.15154 +1986 253 7.69069 7.69069 +1986 254 8.82921 8.82921 +1986 255 8.16275 8.16275 +1986 256 7.55895 7.55895 +1986 257 10.15580 10.15580 +1986 258 11.45420 11.45420 +1986 259 10.56000 10.56000 +1986 260 8.68293 8.68293 +1986 261 8.21516 8.21516 +1986 262 8.36135 8.36135 +1986 263 9.72930 9.72930 +1986 264 9.20982 9.20982 +1986 265 8.90689 8.90689 +1986 266 9.52979 9.52979 +1986 267 9.23980 9.23980 +1986 268 9.28084 9.28084 +1986 269 10.13820 10.13820 +1986 270 11.91430 11.91430 +1986 271 10.60280 10.60280 +1986 272 10.12000 10.12000 +1986 273 9.70993 9.70993 +1986 274 10.28780 10.28780 +1986 275 11.28160 11.28160 +1986 276 13.10190 13.10190 +1986 277 12.38710 12.38710 +1986 278 11.05370 11.05370 +1986 279 10.02930 10.02930 +1986 280 10.18770 10.18770 +1986 281 10.55020 10.55020 +1986 282 10.80310 10.80310 +1986 283 12.77230 12.77230 +1986 284 11.41520 11.41520 +1986 285 10.73100 10.73100 +1986 286 10.57860 10.57860 +1986 287 10.54990 10.54990 +1986 288 10.57040 10.57040 +1986 289 10.65650 10.65650 +1986 290 9.61214 9.61214 +1986 291 10.02130 10.02130 +1986 292 10.47190 10.47190 +1986 293 10.24120 10.24120 +1986 294 10.37540 10.37540 +1986 295 11.26110 11.26110 +1986 296 12.32140 12.32140 +1986 297 14.26980 14.26980 +1986 298 13.88010 13.88010 +1986 299 11.53030 11.53030 +1986 300 12.44850 12.44850 +1986 301 12.66740 12.66740 +1986 302 11.08540 11.08540 +1986 303 12.32780 12.32780 +1986 304 12.54700 12.54700 +1986 305 12.67850 12.67850 +1986 306 12.58870 12.58870 +1986 307 11.89890 11.89890 +1986 308 12.39510 12.39510 +1986 309 15.50470 15.50470 +1986 310 16.04610 16.04610 +1986 311 14.45630 14.45630 +1986 312 14.40490 14.40490 +1986 313 13.57530 13.57530 +1986 314 12.95300 12.95300 +1986 315 13.63740 13.63740 +1986 316 11.17470 11.17470 +1986 317 11.68680 11.68680 +1986 318 12.03720 12.03720 +1986 319 11.61490 11.61490 +1986 320 12.25810 12.25810 +1986 321 13.29690 13.29690 +1986 322 12.24280 12.24280 +1986 323 11.91220 11.91220 +1986 324 13.29480 13.29480 +1986 325 13.55290 13.55290 +1986 326 12.46790 12.46790 +1986 327 14.06490 14.06490 +1986 328 12.29290 12.29290 +1986 329 12.37820 12.37820 +1986 330 12.68510 12.68510 +1986 331 12.40320 12.40320 +1986 332 12.35930 12.35930 +1986 333 10.63680 10.63680 +1986 334 11.63820 11.63820 +1986 335 11.31350 11.31350 +1986 336 12.28410 12.28410 +1986 337 12.64550 12.64550 +1986 338 12.99590 12.99590 +1986 339 12.86720 12.86720 +1986 340 13.38610 13.38610 +1986 341 13.47020 13.47020 +1986 342 13.53680 13.53680 +1986 343 14.47190 14.47190 +1986 344 14.25590 14.25590 +1986 345 14.66370 14.66370 +1986 346 15.43290 15.43290 +1986 347 16.74300 16.74300 +1986 348 16.77490 16.77490 +1986 349 17.74740 17.74740 +1986 350 16.48980 16.48980 +1986 351 16.78390 16.78390 +1986 352 16.69430 16.69430 +1986 353 16.00620 16.00620 +1986 354 14.99690 14.99690 +1986 355 17.09770 17.09770 +1986 356 15.26740 15.26740 +1986 357 15.53880 15.53880 +1986 358 13.85140 13.85140 +1986 359 14.20290 14.20290 +1986 360 14.80310 14.80310 +1986 361 16.01890 16.01890 +1986 362 16.13690 16.13690 +1986 363 15.45800 15.45800 +1986 364 14.59900 14.59900 +1986 365 16.03540 16.03540 +1987 1 17.28540 17.28540 +1987 2 15.24890 15.24890 +1987 3 15.82730 15.82730 +1987 4 16.02110 16.02110 +1987 5 16.39920 16.39920 +1987 6 15.88520 15.88520 +1987 7 16.59520 16.59520 +1987 8 18.37660 18.37660 +1987 9 18.33960 18.33960 +1987 10 18.94830 18.94830 +1987 11 19.84330 19.84330 +1987 12 19.75350 19.75350 +1987 13 19.48380 19.48380 +1987 14 18.77600 18.77600 +1987 15 19.32110 19.32110 +1987 16 17.83410 17.83410 +1987 17 18.89780 18.89780 +1987 18 18.16970 18.16970 +1987 19 18.57230 18.57230 +1987 20 18.14140 18.14140 +1987 21 16.54860 16.54860 +1987 22 13.84320 13.84320 +1987 23 13.42570 13.42570 +1987 24 13.55160 13.55160 +1987 25 14.89880 14.89880 +1987 26 15.88930 15.88930 +1987 27 16.41000 16.41000 +1987 28 17.73420 17.73420 +1987 29 18.48130 18.48130 +1987 30 17.47780 17.47780 +1987 31 18.70100 18.70100 +1987 32 18.62500 18.62500 +1987 33 18.69200 18.69200 +1987 34 18.04760 18.04760 +1987 35 16.45720 16.45720 +1987 36 15.58670 15.58670 +1987 37 15.53260 15.53260 +1987 38 14.52210 14.52210 +1987 39 14.76440 14.76440 +1987 40 16.23400 16.23400 +1987 41 18.20190 18.20190 +1987 42 18.34490 18.34490 +1987 43 16.48400 16.48400 +1987 44 13.10650 13.10650 +1987 45 13.27640 13.27640 +1987 46 14.58610 14.58610 +1987 47 14.70660 14.70660 +1987 48 12.99690 12.99690 +1987 49 13.43670 13.43670 +1987 50 16.31940 16.31940 +1987 51 16.86460 16.86460 +1987 52 16.80370 16.80370 +1987 53 16.74130 16.74130 +1987 54 18.48310 18.48310 +1987 55 17.45060 17.45060 +1987 56 16.96020 16.96020 +1987 57 16.49080 16.49080 +1987 58 12.71290 12.71290 +1987 59 15.03640 15.03640 +1987 60 14.81270 14.81270 +1987 61 15.98320 15.98320 +1987 62 15.90040 15.90040 +1987 63 15.60720 15.60720 +1987 64 13.59980 13.59980 +1987 65 13.42650 13.42650 +1987 66 15.28870 15.28870 +1987 67 14.74070 14.74070 +1987 68 14.33000 14.33000 +1987 69 11.98250 11.98250 +1987 70 14.51300 14.51300 +1987 71 15.19340 15.19340 +1987 72 14.82790 14.82790 +1987 73 13.67400 13.67400 +1987 74 13.16850 13.16850 +1987 75 12.60140 12.60140 +1987 76 12.34410 12.34410 +1987 77 11.89590 11.89590 +1987 78 11.99270 11.99270 +1987 79 13.07730 13.07730 +1987 80 13.43870 13.43870 +1987 81 14.16200 14.16200 +1987 82 14.49450 14.49450 +1987 83 12.09250 12.09250 +1987 84 10.62200 10.62200 +1987 85 10.60420 10.60420 +1987 86 13.18460 13.18460 +1987 87 12.87210 12.87210 +1987 88 13.48080 13.48080 +1987 89 15.95100 15.95100 +1987 90 14.23040 14.23040 +1987 91 12.36260 12.36260 +1987 92 13.11460 13.11460 +1987 93 11.50970 11.50970 +1987 94 10.84850 10.84850 +1987 95 11.38300 11.38300 +1987 96 11.82500 11.82500 +1987 97 12.02490 12.02490 +1987 98 12.99240 12.99240 +1987 99 13.58110 13.58110 +1987 100 12.02890 12.02890 +1987 101 13.49840 13.49840 +1987 102 14.15570 14.15570 +1987 103 14.47380 14.47380 +1987 104 14.78440 14.78440 +1987 105 13.73210 13.73210 +1987 106 12.18470 12.18470 +1987 107 11.03260 11.03260 +1987 108 12.25320 12.25320 +1987 109 13.89750 13.89750 +1987 110 15.29380 15.29380 +1987 111 11.74080 11.74080 +1987 112 10.37390 10.37390 +1987 113 7.79942 7.79942 +1987 114 9.36472 9.36472 +1987 115 12.32630 12.32630 +1987 116 12.45050 12.45050 +1987 117 12.08380 12.08380 +1987 118 13.94480 13.94480 +1987 119 12.02300 12.02300 +1987 120 11.28340 11.28340 +1987 121 7.51326 7.51326 +1987 122 8.17385 8.17385 +1987 123 8.79385 8.79385 +1987 124 11.22800 11.22800 +1987 125 11.65770 11.65770 +1987 126 8.99753 8.99753 +1987 127 8.73713 8.73713 +1987 128 8.98665 8.98665 +1987 129 9.72279 9.72279 +1987 130 8.70300 8.70300 +1987 131 9.70550 9.70550 +1987 132 10.31030 10.31030 +1987 133 10.77990 10.77990 +1987 134 10.12470 10.12470 +1987 135 9.56061 9.56061 +1987 136 10.74320 10.74320 +1987 137 11.32010 11.32010 +1987 138 13.20390 13.20390 +1987 139 12.13640 12.13640 +1987 140 11.72580 11.72580 +1987 141 9.80291 9.80291 +1987 142 8.52319 8.52319 +1987 143 7.83552 7.83552 +1987 144 10.01300 10.01300 +1987 145 8.99826 8.99826 +1987 146 8.05880 8.05880 +1987 147 10.99740 10.99740 +1987 148 12.68590 12.68590 +1987 149 11.61750 11.61750 +1987 150 9.77954 9.77954 +1987 151 9.28171 9.28171 +1987 152 8.46231 8.46231 +1987 153 9.62399 9.62399 +1987 154 10.25600 10.25600 +1987 155 9.97372 9.97372 +1987 156 7.53421 7.53421 +1987 157 7.88373 7.88373 +1987 158 7.11208 7.11208 +1987 159 7.99167 7.99167 +1987 160 7.94998 7.94998 +1987 161 7.42088 7.42088 +1987 162 8.36618 8.36618 +1987 163 8.75427 8.75427 +1987 164 9.86903 9.86903 +1987 165 9.50637 9.50637 +1987 166 5.27992 5.27992 +1987 167 4.09929 4.09929 +1987 168 6.88478 6.88478 +1987 169 8.95851 8.95851 +1987 170 7.66281 7.66281 +1987 171 7.13997 7.13997 +1987 172 5.43728 5.43728 +1987 173 4.44625 4.44625 +1987 174 5.18737 5.18737 +1987 175 8.25077 8.25077 +1987 176 7.78839 7.78839 +1987 177 6.61013 6.61013 +1987 178 7.34777 7.34777 +1987 179 7.66632 7.66632 +1987 180 7.95937 7.95937 +1987 181 6.08470 6.08470 +1987 182 6.19589 6.19589 +1987 183 6.33586 6.33586 +1987 184 5.26466 5.26466 +1987 185 4.65284 4.65284 +1987 186 5.08348 5.08348 +1987 187 4.12184 4.12184 +1987 188 8.62520 8.62520 +1987 189 8.82780 8.82780 +1987 190 7.26540 7.26540 +1987 191 6.08253 6.08253 +1987 192 7.40474 7.40474 +1987 193 6.78967 6.78967 +1987 194 8.67293 8.67293 +1987 195 8.83840 8.83840 +1987 196 8.46635 8.46635 +1987 197 7.83305 7.83305 +1987 198 6.32997 6.32997 +1987 199 6.45006 6.45006 +1987 200 6.29391 6.29391 +1987 201 7.60172 7.60172 +1987 202 6.60593 6.60593 +1987 203 6.31291 6.31291 +1987 204 5.73250 5.73250 +1987 205 5.83775 5.83775 +1987 206 7.46572 7.46572 +1987 207 6.63107 6.63107 +1987 208 8.08335 8.08335 +1987 209 7.32144 7.32144 +1987 210 5.80939 5.80939 +1987 211 6.14146 6.14146 +1987 212 9.80279 9.80279 +1987 213 9.41473 9.41473 +1987 214 8.46458 8.46458 +1987 215 10.09340 10.09340 +1987 216 12.41440 12.41440 +1987 217 10.50150 10.50150 +1987 218 8.78561 8.78561 +1987 219 9.11338 9.11338 +1987 220 7.94330 7.94330 +1987 221 7.88280 7.88280 +1987 222 8.68792 8.68792 +1987 223 7.25030 7.25030 +1987 224 6.54269 6.54269 +1987 225 6.99199 6.99199 +1987 226 6.78845 6.78845 +1987 227 6.27238 6.27238 +1987 228 6.04194 6.04194 +1987 229 8.81153 8.81153 +1987 230 7.31679 7.31679 +1987 231 6.93855 6.93855 +1987 232 8.60389 8.60389 +1987 233 10.43350 10.43350 +1987 234 11.40830 11.40830 +1987 235 10.24650 10.24650 +1987 236 9.95923 9.95923 +1987 237 9.68194 9.68194 +1987 238 9.45926 9.45926 +1987 239 8.58882 8.58882 +1987 240 8.49526 8.49526 +1987 241 9.05250 9.05250 +1987 242 7.57253 7.57253 +1987 243 7.65449 7.65449 +1987 244 8.80988 8.80988 +1987 245 9.28719 9.28719 +1987 246 9.30623 9.30623 +1987 247 9.04738 9.04738 +1987 248 7.99699 7.99699 +1987 249 8.82161 8.82161 +1987 250 7.68957 7.68957 +1987 251 9.76436 9.76436 +1987 252 9.38159 9.38159 +1987 253 9.25684 9.25684 +1987 254 8.39490 8.39490 +1987 255 8.29173 8.29173 +1987 256 7.96236 7.96236 +1987 257 7.39738 7.39738 +1987 258 8.28779 8.28779 +1987 259 9.68718 9.68718 +1987 260 8.92537 8.92537 +1987 261 8.39318 8.39318 +1987 262 8.76059 8.76059 +1987 263 9.13583 9.13583 +1987 264 9.57656 9.57656 +1987 265 9.39456 9.39456 +1987 266 9.79579 9.79579 +1987 267 9.66537 9.66537 +1987 268 9.81790 9.81790 +1987 269 10.79360 10.79360 +1987 270 10.31140 10.31140 +1987 271 11.95080 11.95080 +1987 272 12.67810 12.67810 +1987 273 11.93080 11.93080 +1987 274 11.08930 11.08930 +1987 275 10.64520 10.64520 +1987 276 10.10230 10.10230 +1987 277 10.44120 10.44120 +1987 278 12.41080 12.41080 +1987 279 12.87380 12.87380 +1987 280 13.47540 13.47540 +1987 281 13.36580 13.36580 +1987 282 11.15140 11.15140 +1987 283 9.98043 9.98043 +1987 284 11.12250 11.12250 +1987 285 10.80020 10.80020 +1987 286 8.19003 8.19003 +1987 287 7.71548 7.71548 +1987 288 8.49817 8.49817 +1987 289 10.40230 10.40230 +1987 290 9.85271 9.85271 +1987 291 10.98580 10.98580 +1987 292 11.66720 11.66720 +1987 293 11.56630 11.56630 +1987 294 11.13480 11.13480 +1987 295 10.57780 10.57780 +1987 296 11.81220 11.81220 +1987 297 12.63830 12.63830 +1987 298 13.28820 13.28820 +1987 299 12.85130 12.85130 +1987 300 12.47960 12.47960 +1987 301 12.78920 12.78920 +1987 302 12.80630 12.80630 +1987 303 11.93390 11.93390 +1987 304 12.59300 12.59300 +1987 305 13.84560 13.84560 +1987 306 14.24740 14.24740 +1987 307 13.21910 13.21910 +1987 308 13.78770 13.78770 +1987 309 12.89930 12.89930 +1987 310 13.29320 13.29320 +1987 311 13.18040 13.18040 +1987 312 13.35000 13.35000 +1987 313 13.10470 13.10470 +1987 314 13.24580 13.24580 +1987 315 13.78290 13.78290 +1987 316 13.88080 13.88080 +1987 317 15.92030 15.92030 +1987 318 13.01840 13.01840 +1987 319 12.24380 12.24380 +1987 320 11.18640 11.18640 +1987 321 10.32500 10.32500 +1987 322 11.76490 11.76490 +1987 323 12.20600 12.20600 +1987 324 12.88550 12.88550 +1987 325 13.76460 13.76460 +1987 326 14.72720 14.72720 +1987 327 14.86170 14.86170 +1987 328 14.56410 14.56410 +1987 329 14.02090 14.02090 +1987 330 12.91900 12.91900 +1987 331 13.59850 13.59850 +1987 332 11.95540 11.95540 +1987 333 10.18650 10.18650 +1987 334 11.37060 11.37060 +1987 335 14.40260 14.40260 +1987 336 16.56420 16.56420 +1987 337 15.01290 15.01290 +1987 338 12.26780 12.26780 +1987 339 12.25250 12.25250 +1987 340 11.95590 11.95590 +1987 341 12.35060 12.35060 +1987 342 13.47060 13.47060 +1987 343 13.03630 13.03630 +1987 344 13.43960 13.43960 +1987 345 13.96430 13.96430 +1987 346 14.01280 14.01280 +1987 347 14.78320 14.78320 +1987 348 14.34040 14.34040 +1987 349 14.64620 14.64620 +1987 350 17.44270 17.44270 +1987 351 18.70030 18.70030 +1987 352 18.85420 18.85420 +1987 353 16.26770 16.26770 +1987 354 16.23670 16.23670 +1987 355 16.48730 16.48730 +1987 356 17.23340 17.23340 +1987 357 16.62620 16.62620 +1987 358 17.23940 17.23940 +1987 359 13.90700 13.90700 +1987 360 13.72780 13.72780 +1987 361 15.02820 15.02820 +1987 362 16.65530 16.65530 +1987 363 15.80820 15.80820 +1987 364 15.84310 15.84310 +1987 365 14.20560 14.20560 +1988 1 12.34750 12.34750 +1988 2 14.41550 14.41550 +1988 3 17.65630 17.65630 +1988 4 17.70380 17.70380 +1988 5 16.28900 16.28900 +1988 6 16.36500 16.36500 +1988 7 16.35510 16.35510 +1988 8 15.67530 15.67530 +1988 9 14.88500 14.88500 +1988 10 16.41080 16.41080 +1988 11 17.76640 17.76640 +1988 12 19.84490 19.84490 +1988 13 19.19100 19.19100 +1988 14 17.46400 17.46400 +1988 15 15.86080 15.86080 +1988 16 16.63650 16.63650 +1988 17 17.27510 17.27510 +1988 18 16.50360 16.50360 +1988 19 15.74210 15.74210 +1988 20 15.65710 15.65710 +1988 21 16.36280 16.36280 +1988 22 16.98600 16.98600 +1988 23 16.51710 16.51710 +1988 24 16.87590 16.87590 +1988 25 16.07750 16.07750 +1988 26 18.44850 18.44850 +1988 27 19.89160 19.89160 +1988 28 18.37380 18.37380 +1988 29 19.31870 19.31870 +1988 30 19.85130 19.85130 +1988 31 18.65260 18.65260 +1988 32 18.77440 18.77440 +1988 33 18.10950 18.10950 +1988 34 17.04850 17.04850 +1988 35 16.51680 16.51680 +1988 36 17.41580 17.41580 +1988 37 17.07280 17.07280 +1988 38 16.53850 16.53850 +1988 39 18.88500 18.88500 +1988 40 19.05460 19.05460 +1988 41 18.22810 18.22810 +1988 42 18.20700 18.20700 +1988 43 18.28120 18.28120 +1988 44 18.08630 18.08630 +1988 45 18.43000 18.43000 +1988 46 19.07600 19.07600 +1988 47 17.96270 17.96270 +1988 48 16.18750 16.18750 +1988 49 16.58000 16.58000 +1988 50 15.42460 15.42460 +1988 51 14.11350 14.11350 +1988 52 14.09340 14.09340 +1988 53 15.31200 15.31200 +1988 54 15.07560 15.07560 +1988 55 13.93150 13.93150 +1988 56 12.01980 12.01980 +1988 57 14.22490 14.22490 +1988 58 15.34930 15.34930 +1988 59 17.52990 17.52990 +1988 60 16.64500 16.64500 +1988 61 16.45240 16.45240 +1988 62 16.89510 16.89510 +1988 63 16.57720 16.57720 +1988 64 15.93780 15.93780 +1988 65 14.88030 14.88030 +1988 66 15.12510 15.12510 +1988 67 16.52700 16.52700 +1988 68 16.92910 16.92910 +1988 69 16.78190 16.78190 +1988 70 16.94980 16.94980 +1988 71 16.50170 16.50170 +1988 72 15.70990 15.70990 +1988 73 15.74770 15.74770 +1988 74 14.92470 14.92470 +1988 75 13.55140 13.55140 +1988 76 12.04780 12.04780 +1988 77 11.65870 11.65870 +1988 78 13.72050 13.72050 +1988 79 12.64610 12.64610 +1988 80 12.76910 12.76910 +1988 81 13.61400 13.61400 +1988 82 12.60830 12.60830 +1988 83 13.78350 13.78350 +1988 84 13.79860 13.79860 +1988 85 12.68130 12.68130 +1988 86 12.99600 12.99600 +1988 87 12.72440 12.72440 +1988 88 13.10530 13.10530 +1988 89 12.46770 12.46770 +1988 90 11.19140 11.19140 +1988 91 12.68160 12.68160 +1988 92 14.35280 14.35280 +1988 93 12.94790 12.94790 +1988 94 13.65630 13.65630 +1988 95 13.91780 13.91780 +1988 96 12.71450 12.71450 +1988 97 14.14590 14.14590 +1988 98 13.46640 13.46640 +1988 99 14.85150 14.85150 +1988 100 10.83680 10.83680 +1988 101 9.48524 9.48524 +1988 102 9.81995 9.81995 +1988 103 10.36120 10.36120 +1988 104 11.59880 11.59880 +1988 105 12.88410 12.88410 +1988 106 14.66210 14.66210 +1988 107 15.19770 15.19770 +1988 108 11.43540 11.43540 +1988 109 10.83960 10.83960 +1988 110 11.67210 11.67210 +1988 111 11.48850 11.48850 +1988 112 11.12960 11.12960 +1988 113 11.99140 11.99140 +1988 114 10.03290 10.03290 +1988 115 10.73110 10.73110 +1988 116 10.81380 10.81380 +1988 117 11.40270 11.40270 +1988 118 11.50690 11.50690 +1988 119 11.30360 11.30360 +1988 120 8.82184 8.82184 +1988 121 8.77461 8.77461 +1988 122 8.85956 8.85956 +1988 123 8.25264 8.25264 +1988 124 9.37427 9.37427 +1988 125 12.43090 12.43090 +1988 126 10.51620 10.51620 +1988 127 9.61576 9.61576 +1988 128 13.06980 13.06980 +1988 129 15.93030 15.93030 +1988 130 15.21460 15.21460 +1988 131 13.77030 13.77030 +1988 132 11.34140 11.34140 +1988 133 8.56666 8.56666 +1988 134 8.84547 8.84547 +1988 135 11.08400 11.08400 +1988 136 10.32320 10.32320 +1988 137 8.38599 8.38599 +1988 138 12.58530 12.58530 +1988 139 14.26090 14.26090 +1988 140 14.46110 14.46110 +1988 141 10.71590 10.71590 +1988 142 10.78320 10.78320 +1988 143 8.47537 8.47537 +1988 144 7.98533 7.98533 +1988 145 7.37115 7.37115 +1988 146 8.25280 8.25280 +1988 147 10.81970 10.81970 +1988 148 11.35290 11.35290 +1988 149 12.25070 12.25070 +1988 150 10.94430 10.94430 +1988 151 9.97010 9.97010 +1988 152 7.04651 7.04651 +1988 153 6.78480 6.78480 +1988 154 6.35961 6.35961 +1988 155 6.53960 6.53960 +1988 156 8.42295 8.42295 +1988 157 8.33690 8.33690 +1988 158 11.65730 11.65730 +1988 159 13.41100 13.41100 +1988 160 10.26960 10.26960 +1988 161 9.11236 9.11236 +1988 162 9.73108 9.73108 +1988 163 10.76780 10.76780 +1988 164 8.90418 8.90418 +1988 165 4.21718 4.21718 +1988 166 4.97951 4.97951 +1988 167 7.22260 7.22260 +1988 168 8.07008 8.07008 +1988 169 11.13720 11.13720 +1988 170 13.62400 13.62400 +1988 171 9.83003 9.83003 +1988 172 8.05427 8.05427 +1988 173 7.30083 7.30083 +1988 174 7.72633 7.72633 +1988 175 8.65568 8.65568 +1988 176 8.94043 8.94043 +1988 177 10.25710 10.25710 +1988 178 10.34710 10.34710 +1988 179 9.67948 9.67948 +1988 180 9.82695 9.82695 +1988 181 7.77114 7.77114 +1988 182 5.81537 5.81537 +1988 183 5.41731 5.41731 +1988 184 7.44624 7.44624 +1988 185 8.63295 8.63295 +1988 186 8.44580 8.44580 +1988 187 7.16996 7.16996 +1988 188 4.48909 4.48909 +1988 189 4.26929 4.26929 +1988 190 4.63093 4.63093 +1988 191 7.86199 7.86199 +1988 192 11.13010 11.13010 +1988 193 9.66059 9.66059 +1988 194 7.51664 7.51664 +1988 195 7.77543 7.77543 +1988 196 7.71289 7.71289 +1988 197 7.08063 7.08063 +1988 198 9.04801 9.04801 +1988 199 9.07667 9.07667 +1988 200 8.10985 8.10985 +1988 201 6.68846 6.68846 +1988 202 7.26006 7.26006 +1988 203 7.75476 7.75476 +1988 204 10.19970 10.19970 +1988 205 12.40400 12.40400 +1988 206 10.25100 10.25100 +1988 207 9.16303 9.16303 +1988 208 10.01960 10.01960 +1988 209 7.90231 7.90231 +1988 210 8.60831 8.60831 +1988 211 9.68586 9.68586 +1988 212 8.92965 8.92965 +1988 213 7.38376 7.38376 +1988 214 8.45366 8.45366 +1988 215 7.36256 7.36256 +1988 216 7.67173 7.67173 +1988 217 8.43912 8.43912 +1988 218 8.71795 8.71795 +1988 219 9.52849 9.52849 +1988 220 10.99370 10.99370 +1988 221 10.20290 10.20290 +1988 222 9.64026 9.64026 +1988 223 8.97305 8.97305 +1988 224 6.11873 6.11873 +1988 225 5.80426 5.80426 +1988 226 6.21246 6.21246 +1988 227 7.86935 7.86935 +1988 228 7.77554 7.77554 +1988 229 7.84068 7.84068 +1988 230 11.03400 11.03400 +1988 231 8.58208 8.58208 +1988 232 9.32114 9.32114 +1988 233 9.27831 9.27831 +1988 234 7.68159 7.68159 +1988 235 8.88652 8.88652 +1988 236 11.88470 11.88470 +1988 237 8.15977 8.15977 +1988 238 4.95473 4.95473 +1988 239 5.76210 5.76210 +1988 240 7.33130 7.33130 +1988 241 8.56925 8.56925 +1988 242 10.81420 10.81420 +1988 243 8.84458 8.84458 +1988 244 7.34978 7.34978 +1988 245 10.03040 10.03040 +1988 246 9.28207 9.28207 +1988 247 9.65912 9.65912 +1988 248 8.75973 8.75973 +1988 249 8.81712 8.81712 +1988 250 9.36089 9.36089 +1988 251 8.25745 8.25745 +1988 252 6.29440 6.29440 +1988 253 7.99046 7.99046 +1988 254 9.47966 9.47966 +1988 255 10.66430 10.66430 +1988 256 11.50670 11.50670 +1988 257 12.90320 12.90320 +1988 258 12.05260 12.05260 +1988 259 10.44820 10.44820 +1988 260 10.29570 10.29570 +1988 261 11.68570 11.68570 +1988 262 13.97790 13.97790 +1988 263 14.98720 14.98720 +1988 264 13.73100 13.73100 +1988 265 10.92160 10.92160 +1988 266 9.99075 9.99075 +1988 267 10.94300 10.94300 +1988 268 10.55290 10.55290 +1988 269 11.27080 11.27080 +1988 270 12.60050 12.60050 +1988 271 12.68940 12.68940 +1988 272 11.05390 11.05390 +1988 273 11.75490 11.75490 +1988 274 10.13940 10.13940 +1988 275 9.96299 9.96299 +1988 276 10.66200 10.66200 +1988 277 11.75150 11.75150 +1988 278 13.16950 13.16950 +1988 279 13.10660 13.10660 +1988 280 12.76120 12.76120 +1988 281 8.73109 8.73109 +1988 282 9.84660 9.84660 +1988 283 12.80080 12.80080 +1988 284 11.56080 11.56080 +1988 285 10.24960 10.24960 +1988 286 10.92330 10.92330 +1988 287 10.18920 10.18920 +1988 288 10.81260 10.81260 +1988 289 11.38950 11.38950 +1988 290 11.90660 11.90660 +1988 291 12.44130 12.44130 +1988 292 11.50860 11.50860 +1988 293 10.03180 10.03180 +1988 294 9.71137 9.71137 +1988 295 10.03070 10.03070 +1988 296 12.57830 12.57830 +1988 297 13.65010 13.65010 +1988 298 11.16220 11.16220 +1988 299 11.04300 11.04300 +1988 300 12.15450 12.15450 +1988 301 12.93510 12.93510 +1988 302 15.18010 15.18010 +1988 303 14.65010 14.65010 +1988 304 15.36500 15.36500 +1988 305 11.95680 11.95680 +1988 306 9.91682 9.91682 +1988 307 12.18560 12.18560 +1988 308 13.71770 13.71770 +1988 309 14.70850 14.70850 +1988 310 12.93470 12.93470 +1988 311 10.22850 10.22850 +1988 312 10.53840 10.53840 +1988 313 11.71250 11.71250 +1988 314 13.05420 13.05420 +1988 315 15.84640 15.84640 +1988 316 12.00230 12.00230 +1988 317 11.98120 11.98120 +1988 318 13.82480 13.82480 +1988 319 13.47300 13.47300 +1988 320 12.17360 12.17360 +1988 321 13.26830 13.26830 +1988 322 13.45310 13.45310 +1988 323 14.62890 14.62890 +1988 324 15.54070 15.54070 +1988 325 14.21780 14.21780 +1988 326 14.13370 14.13370 +1988 327 15.21500 15.21500 +1988 328 13.73880 13.73880 +1988 329 13.07160 13.07160 +1988 330 13.95980 13.95980 +1988 331 15.11140 15.11140 +1988 332 15.83820 15.83820 +1988 333 17.82370 17.82370 +1988 334 17.00300 17.00300 +1988 335 15.46500 15.46500 +1988 336 15.55600 15.55600 +1988 337 14.96640 14.96640 +1988 338 14.67650 14.67650 +1988 339 14.84400 14.84400 +1988 340 15.09410 15.09410 +1988 341 14.55360 14.55360 +1988 342 13.11500 13.11500 +1988 343 14.87560 14.87560 +1988 344 15.33940 15.33940 +1988 345 16.23400 16.23400 +1988 346 15.85180 15.85180 +1988 347 16.96420 16.96420 +1988 348 15.66800 15.66800 +1988 349 16.11570 16.11570 +1988 350 15.54450 15.54450 +1988 351 16.62900 16.62900 +1988 352 16.56130 16.56130 +1988 353 16.62890 16.62890 +1988 354 16.37040 16.37040 +1988 355 16.10750 16.10750 +1988 356 16.66610 16.66610 +1988 357 17.90530 17.90530 +1988 358 17.48820 17.48820 +1988 359 16.58940 16.58940 +1988 360 16.47190 16.47190 +1988 361 15.96320 15.96320 +1988 362 16.29210 16.29210 +1988 363 17.73750 17.73750 +1988 364 16.98970 16.98970 +1988 365 16.44810 16.44810 +1988 366 16.67970 16.67970 +1989 1 17.49710 17.49710 +1989 2 17.31180 17.31180 +1989 3 16.73340 16.73340 +1989 4 16.60900 16.60900 +1989 5 16.78360 16.78360 +1989 6 16.35150 16.35150 +1989 7 17.10730 17.10730 +1989 8 18.13730 18.13730 +1989 9 17.65820 17.65820 +1989 10 17.23830 17.23830 +1989 11 17.60410 17.60410 +1989 12 17.92500 17.92500 +1989 13 16.67030 16.67030 +1989 14 16.99670 16.99670 +1989 15 16.23770 16.23770 +1989 16 15.95360 15.95360 +1989 17 14.60730 14.60730 +1989 18 17.52240 17.52240 +1989 19 19.11800 19.11800 +1989 20 17.69630 17.69630 +1989 21 19.32900 19.32900 +1989 22 18.10530 18.10530 +1989 23 15.67040 15.67040 +1989 24 15.77500 15.77500 +1989 25 15.46810 15.46810 +1989 26 18.42750 18.42750 +1989 27 14.77060 14.77060 +1989 28 15.08950 15.08950 +1989 29 15.34720 15.34720 +1989 30 16.37900 16.37900 +1989 31 16.69120 16.69120 +1989 32 17.72550 17.72550 +1989 33 16.93570 16.93570 +1989 34 15.37500 15.37500 +1989 35 15.77180 15.77180 +1989 36 15.98220 15.98220 +1989 37 15.81950 15.81950 +1989 38 14.59330 14.59330 +1989 39 14.15070 14.15070 +1989 40 15.65200 15.65200 +1989 41 16.70280 16.70280 +1989 42 17.06480 17.06480 +1989 43 16.70720 16.70720 +1989 44 15.49710 15.49710 +1989 45 15.22910 15.22910 +1989 46 15.43520 15.43520 +1989 47 16.90650 16.90650 +1989 48 15.78070 15.78070 +1989 49 16.18090 16.18090 +1989 50 16.38670 16.38670 +1989 51 16.56200 16.56200 +1989 52 16.25020 16.25020 +1989 53 17.95990 17.95990 +1989 54 15.05000 15.05000 +1989 55 14.02150 14.02150 +1989 56 14.24760 14.24760 +1989 57 14.55520 14.55520 +1989 58 14.42710 14.42710 +1989 59 15.36490 15.36490 +1989 60 16.05380 16.05380 +1989 61 15.88930 15.88930 +1989 62 16.61000 16.61000 +1989 63 17.12080 17.12080 +1989 64 17.52400 17.52400 +1989 65 17.84350 17.84350 +1989 66 16.60470 16.60470 +1989 67 15.79080 15.79080 +1989 68 16.68680 16.68680 +1989 69 17.52490 17.52490 +1989 70 17.40910 17.40910 +1989 71 16.63610 16.63610 +1989 72 16.76130 16.76130 +1989 73 17.96160 17.96160 +1989 74 16.36730 16.36730 +1989 75 12.50170 12.50170 +1989 76 12.98160 12.98160 +1989 77 14.34770 14.34770 +1989 78 14.65130 14.65130 +1989 79 12.73180 12.73180 +1989 80 12.14440 12.14440 +1989 81 13.93140 13.93140 +1989 82 15.95730 15.95730 +1989 83 16.43240 16.43240 +1989 84 15.43790 15.43790 +1989 85 14.26480 14.26480 +1989 86 15.40410 15.40410 +1989 87 17.78270 17.78270 +1989 88 14.70240 14.70240 +1989 89 14.79550 14.79550 +1989 90 14.84550 14.84550 +1989 91 14.33770 14.33770 +1989 92 13.96520 13.96520 +1989 93 13.13900 13.13900 +1989 94 13.96450 13.96450 +1989 95 14.49260 14.49260 +1989 96 13.94670 13.94670 +1989 97 14.47030 14.47030 +1989 98 13.88820 13.88820 +1989 99 11.87500 11.87500 +1989 100 11.67070 11.67070 +1989 101 11.15290 11.15290 +1989 102 11.03750 11.03750 +1989 103 12.22170 12.22170 +1989 104 12.34050 12.34050 +1989 105 14.14480 14.14480 +1989 106 15.58920 15.58920 +1989 107 15.83200 15.83200 +1989 108 14.89030 14.89030 +1989 109 11.96700 11.96700 +1989 110 12.54740 12.54740 +1989 111 13.14260 13.14260 +1989 112 12.24810 12.24810 +1989 113 13.03800 13.03800 +1989 114 11.96100 11.96100 +1989 115 12.21330 12.21330 +1989 116 13.21170 13.21170 +1989 117 11.82040 11.82040 +1989 118 14.35720 14.35720 +1989 119 14.45700 14.45700 +1989 120 14.05200 14.05200 +1989 121 15.58060 15.58060 +1989 122 15.13720 15.13720 +1989 123 13.93020 13.93020 +1989 124 13.50890 13.50890 +1989 125 12.44500 12.44500 +1989 126 12.47670 12.47670 +1989 127 11.95200 11.95200 +1989 128 7.72396 7.72396 +1989 129 8.07248 8.07248 +1989 130 9.74641 9.74641 +1989 131 10.08080 10.08080 +1989 132 11.93700 11.93700 +1989 133 13.32950 13.32950 +1989 134 12.03370 12.03370 +1989 135 11.70890 11.70890 +1989 136 10.61230 10.61230 +1989 137 9.94954 9.94954 +1989 138 9.60872 9.60872 +1989 139 9.38389 9.38389 +1989 140 8.64507 8.64507 +1989 141 10.51100 10.51100 +1989 142 11.87940 11.87940 +1989 143 11.24100 11.24100 +1989 144 9.81707 9.81707 +1989 145 9.72875 9.72875 +1989 146 6.73450 6.73450 +1989 147 5.98205 5.98205 +1989 148 4.85162 4.85162 +1989 149 3.65071 3.65071 +1989 150 6.40869 6.40869 +1989 151 7.05000 7.05000 +1989 152 9.48762 9.48762 +1989 153 9.97758 9.97758 +1989 154 7.01878 7.01878 +1989 155 6.41385 6.41385 +1989 156 6.17486 6.17486 +1989 157 7.88951 7.88951 +1989 158 11.92120 11.92120 +1989 159 12.53980 12.53980 +1989 160 12.22430 12.22430 +1989 161 14.25070 14.25070 +1989 162 13.47700 13.47700 +1989 163 10.35900 10.35900 +1989 164 8.34707 8.34707 +1989 165 11.92010 11.92010 +1989 166 10.47790 10.47790 +1989 167 7.78802 7.78802 +1989 168 7.27461 7.27461 +1989 169 9.26389 9.26389 +1989 170 8.02461 8.02461 +1989 171 4.03990 4.03990 +1989 172 5.48410 5.48410 +1989 173 6.15649 6.15649 +1989 174 10.06110 10.06110 +1989 175 11.76740 11.76740 +1989 176 9.57970 9.57970 +1989 177 6.05677 6.05677 +1989 178 5.41795 5.41795 +1989 179 4.71185 4.71185 +1989 180 6.18911 6.18911 +1989 181 5.75121 5.75121 +1989 182 5.76700 5.76700 +1989 183 5.65447 5.65447 +1989 184 4.50721 4.50721 +1989 185 7.30355 7.30355 +1989 186 10.16030 10.16030 +1989 187 7.63072 7.63072 +1989 188 7.02658 7.02658 +1989 189 7.46722 7.46722 +1989 190 7.35432 7.35432 +1989 191 9.02296 9.02296 +1989 192 11.08410 11.08410 +1989 193 9.82309 9.82309 +1989 194 9.59171 9.59171 +1989 195 8.98143 8.98143 +1989 196 7.85868 7.85868 +1989 197 7.18162 7.18162 +1989 198 7.09327 7.09327 +1989 199 6.67003 6.67003 +1989 200 3.76829 3.76829 +1989 201 3.46775 3.46775 +1989 202 4.08369 4.08369 +1989 203 4.12368 4.12368 +1989 204 4.37947 4.37947 +1989 205 4.96571 4.96571 +1989 206 4.67661 4.67661 +1989 207 6.27199 6.27199 +1989 208 6.51189 6.51189 +1989 209 4.02742 4.02742 +1989 210 4.51980 4.51980 +1989 211 5.22731 5.22731 +1989 212 5.78158 5.78158 +1989 213 9.22922 9.22922 +1989 214 8.92709 8.92709 +1989 215 9.02599 9.02599 +1989 216 9.42019 9.42019 +1989 217 8.77401 8.77401 +1989 218 7.38991 7.38991 +1989 219 6.89590 6.89590 +1989 220 8.62628 8.62628 +1989 221 7.57231 7.57231 +1989 222 7.79513 7.79513 +1989 223 6.03202 6.03202 +1989 224 5.80046 5.80046 +1989 225 5.87353 5.87353 +1989 226 4.53971 4.53971 +1989 227 4.68276 4.68276 +1989 228 5.73117 5.73117 +1989 229 5.39357 5.39357 +1989 230 5.51163 5.51163 +1989 231 5.33433 5.33433 +1989 232 5.62094 5.62094 +1989 233 7.28871 7.28871 +1989 234 9.06442 9.06442 +1989 235 11.60890 11.60890 +1989 236 10.77510 10.77510 +1989 237 10.00870 10.00870 +1989 238 9.30526 9.30526 +1989 239 8.94019 8.94019 +1989 240 8.83516 8.83516 +1989 241 9.42159 9.42159 +1989 242 8.95591 8.95591 +1989 243 6.53720 6.53720 +1989 244 5.12202 5.12202 +1989 245 6.49956 6.49956 +1989 246 6.02600 6.02600 +1989 247 7.52135 7.52135 +1989 248 8.44164 8.44164 +1989 249 8.27720 8.27720 +1989 250 9.99305 9.99305 +1989 251 12.03100 12.03100 +1989 252 11.11810 11.11810 +1989 253 11.59440 11.59440 +1989 254 10.81980 10.81980 +1989 255 11.57400 11.57400 +1989 256 11.23280 11.23280 +1989 257 10.50180 10.50180 +1989 258 10.56370 10.56370 +1989 259 10.19680 10.19680 +1989 260 10.09960 10.09960 +1989 261 10.86840 10.86840 +1989 262 9.95754 9.95754 +1989 263 9.43856 9.43856 +1989 264 8.95651 8.95651 +1989 265 8.61573 8.61573 +1989 266 8.49329 8.49329 +1989 267 10.54000 10.54000 +1989 268 11.72800 11.72800 +1989 269 12.96420 12.96420 +1989 270 13.26750 13.26750 +1989 271 13.64890 13.64890 +1989 272 13.23140 13.23140 +1989 273 12.14510 12.14510 +1989 274 12.19400 12.19400 +1989 275 13.18840 13.18840 +1989 276 11.20300 11.20300 +1989 277 9.90091 9.90091 +1989 278 9.33345 9.33345 +1989 279 9.52916 9.52916 +1989 280 12.06170 12.06170 +1989 281 11.80490 11.80490 +1989 282 11.89760 11.89760 +1989 283 11.12050 11.12050 +1989 284 12.24070 12.24070 +1989 285 12.09660 12.09660 +1989 286 13.52720 13.52720 +1989 287 12.62470 12.62470 +1989 288 10.55710 10.55710 +1989 289 10.63260 10.63260 +1989 290 9.07918 9.07918 +1989 291 8.86020 8.86020 +1989 292 9.97561 9.97561 +1989 293 13.33350 13.33350 +1989 294 13.12630 13.12630 +1989 295 11.16320 11.16320 +1989 296 11.38010 11.38010 +1989 297 12.12650 12.12650 +1989 298 12.28200 12.28200 +1989 299 12.49050 12.49050 +1989 300 12.62310 12.62310 +1989 301 13.00160 13.00160 +1989 302 14.79720 14.79720 +1989 303 13.41980 13.41980 +1989 304 13.49120 13.49120 +1989 305 13.22280 13.22280 +1989 306 12.81820 12.81820 +1989 307 12.92640 12.92640 +1989 308 12.87200 12.87200 +1989 309 12.55970 12.55970 +1989 310 12.91480 12.91480 +1989 311 13.31090 13.31090 +1989 312 13.65920 13.65920 +1989 313 14.83730 14.83730 +1989 314 12.75740 12.75740 +1989 315 12.64180 12.64180 +1989 316 13.05780 13.05780 +1989 317 14.41160 14.41160 +1989 318 15.72610 15.72610 +1989 319 14.28020 14.28020 +1989 320 14.30350 14.30350 +1989 321 15.74250 15.74250 +1989 322 13.39910 13.39910 +1989 323 13.84510 13.84510 +1989 324 11.86090 11.86090 +1989 325 12.39160 12.39160 +1989 326 13.32780 13.32780 +1989 327 14.80390 14.80390 +1989 328 14.63360 14.63360 +1989 329 14.79280 14.79280 +1989 330 13.01890 13.01890 +1989 331 12.52900 12.52900 +1989 332 11.06990 11.06990 +1989 333 11.85170 11.85170 +1989 334 14.21700 14.21700 +1989 335 15.84450 15.84450 +1989 336 15.27710 15.27710 +1989 337 14.93140 14.93140 +1989 338 15.71540 15.71540 +1989 339 13.41330 13.41330 +1989 340 12.11830 12.11830 +1989 341 12.51050 12.51050 +1989 342 13.38190 13.38190 +1989 343 14.73430 14.73430 +1989 344 16.13250 16.13250 +1989 345 16.12040 16.12040 +1989 346 16.46630 16.46630 +1989 347 16.94280 16.94280 +1989 348 16.62880 16.62880 +1989 349 15.38150 15.38150 +1989 350 13.09910 13.09910 +1989 351 11.96390 11.96390 +1989 352 12.61960 12.61960 +1989 353 14.27980 14.27980 +1989 354 15.65630 15.65630 +1989 355 14.92620 14.92620 +1989 356 13.31110 13.31110 +1989 357 10.85080 10.85080 +1989 358 11.96810 11.96810 +1989 359 14.18010 14.18010 +1989 360 15.38530 15.38530 +1989 361 17.22810 17.22810 +1989 362 16.71260 16.71260 +1989 363 18.05630 18.05630 +1989 364 16.10820 16.10820 +1989 365 16.92350 16.92350 +1990 1 15.89470 15.89470 +1990 2 17.13050 17.13050 +1990 3 15.85130 15.85130 +1990 4 14.47290 14.47290 +1990 5 14.09220 14.09220 +1990 6 15.32910 15.32910 +1990 7 15.00460 15.00460 +1990 8 14.86340 14.86340 +1990 9 14.66740 14.66740 +1990 10 14.91020 14.91020 +1990 11 15.26810 15.26810 +1990 12 16.88130 16.88130 +1990 13 17.01460 17.01460 +1990 14 16.52500 16.52500 +1990 15 17.80070 17.80070 +1990 16 19.88240 19.88240 +1990 17 16.96570 16.96570 +1990 18 15.70640 15.70640 +1990 19 16.56350 16.56350 +1990 20 19.78780 19.78780 +1990 21 18.64750 18.64750 +1990 22 17.07420 17.07420 +1990 23 17.22120 17.22120 +1990 24 17.89360 17.89360 +1990 25 18.78710 18.78710 +1990 26 17.58900 17.58900 +1990 27 17.07180 17.07180 +1990 28 19.00970 19.00970 +1990 29 18.72390 18.72390 +1990 30 18.34060 18.34060 +1990 31 18.16430 18.16430 +1990 32 17.53200 17.53200 +1990 33 18.54860 18.54860 +1990 34 19.81800 19.81800 +1990 35 21.06770 21.06770 +1990 36 21.50340 21.50340 +1990 37 21.62140 21.62140 +1990 38 22.16820 22.16820 +1990 39 19.76230 19.76230 +1990 40 19.13530 19.13530 +1990 41 20.17330 20.17330 +1990 42 20.14290 20.14290 +1990 43 17.46350 17.46350 +1990 44 17.65430 17.65430 +1990 45 18.41550 18.41550 +1990 46 18.65240 18.65240 +1990 47 18.57330 18.57330 +1990 48 18.46810 18.46810 +1990 49 18.48460 18.48460 +1990 50 17.61980 17.61980 +1990 51 18.04740 18.04740 +1990 52 18.56460 18.56460 +1990 53 18.14500 18.14500 +1990 54 18.50130 18.50130 +1990 55 17.92070 17.92070 +1990 56 17.14760 17.14760 +1990 57 15.80270 15.80270 +1990 58 13.95270 13.95270 +1990 59 16.72350 16.72350 +1990 60 17.29960 17.29960 +1990 61 17.84590 17.84590 +1990 62 18.42400 18.42400 +1990 63 17.40980 17.40980 +1990 64 17.38080 17.38080 +1990 65 17.17400 17.17400 +1990 66 18.19300 18.19300 +1990 67 18.06960 18.06960 +1990 68 20.03740 20.03740 +1990 69 19.65620 19.65620 +1990 70 20.35100 20.35100 +1990 71 20.36570 20.36570 +1990 72 18.06570 18.06570 +1990 73 15.23210 15.23210 +1990 74 16.14130 16.14130 +1990 75 17.58200 17.58200 +1990 76 17.34470 17.34470 +1990 77 16.82110 16.82110 +1990 78 17.46700 17.46700 +1990 79 17.28100 17.28100 +1990 80 16.57090 16.57090 +1990 81 11.51460 11.51460 +1990 82 11.96500 11.96500 +1990 83 13.34050 13.34050 +1990 84 12.98400 12.98400 +1990 85 12.90300 12.90300 +1990 86 17.04460 17.04460 +1990 87 16.03610 16.03610 +1990 88 16.24800 16.24800 +1990 89 15.06760 15.06760 +1990 90 14.61420 14.61420 +1990 91 13.88620 13.88620 +1990 92 15.17860 15.17860 +1990 93 13.79850 13.79850 +1990 94 12.28040 12.28040 +1990 95 14.64370 14.64370 +1990 96 14.62670 14.62670 +1990 97 14.65730 14.65730 +1990 98 15.06910 15.06910 +1990 99 15.97730 15.97730 +1990 100 15.44170 15.44170 +1990 101 15.32910 15.32910 +1990 102 14.23150 14.23150 +1990 103 14.65250 14.65250 +1990 104 16.09120 16.09120 +1990 105 15.68480 15.68480 +1990 106 13.99850 13.99850 +1990 107 13.25780 13.25780 +1990 108 9.68959 9.68959 +1990 109 12.56630 12.56630 +1990 110 12.50030 12.50030 +1990 111 9.06994 9.06994 +1990 112 9.75313 9.75313 +1990 113 14.14160 14.14160 +1990 114 15.97290 15.97290 +1990 115 14.56280 14.56280 +1990 116 15.47780 15.47780 +1990 117 15.35100 15.35100 +1990 118 14.02510 14.02510 +1990 119 14.18280 14.18280 +1990 120 12.33690 12.33690 +1990 121 12.85540 12.85540 +1990 122 12.13760 12.13760 +1990 123 10.24070 10.24070 +1990 124 10.17530 10.17530 +1990 125 10.53460 10.53460 +1990 126 13.97530 13.97530 +1990 127 11.88040 11.88040 +1990 128 9.15399 9.15399 +1990 129 8.76472 8.76472 +1990 130 9.58541 9.58541 +1990 131 8.67586 8.67586 +1990 132 9.00081 9.00081 +1990 133 9.84827 9.84827 +1990 134 8.23256 8.23256 +1990 135 7.84275 7.84275 +1990 136 9.26978 9.26978 +1990 137 7.76559 7.76559 +1990 138 8.74510 8.74510 +1990 139 12.75090 12.75090 +1990 140 9.63031 9.63031 +1990 141 9.40495 9.40495 +1990 142 10.91080 10.91080 +1990 143 12.62600 12.62600 +1990 144 15.07180 15.07180 +1990 145 12.87740 12.87740 +1990 146 11.54680 11.54680 +1990 147 10.02100 10.02100 +1990 148 10.85330 10.85330 +1990 149 11.31680 11.31680 +1990 150 11.23520 11.23520 +1990 151 9.40724 9.40724 +1990 152 11.84550 11.84550 +1990 153 11.83280 11.83280 +1990 154 10.68410 10.68410 +1990 155 8.58795 8.58795 +1990 156 7.11821 7.11821 +1990 157 5.37353 5.37353 +1990 158 5.58874 5.58874 +1990 159 5.83414 5.83414 +1990 160 5.30307 5.30307 +1990 161 6.55097 6.55097 +1990 162 8.24822 8.24822 +1990 163 7.97907 7.97907 +1990 164 6.09552 6.09552 +1990 165 6.77264 6.77264 +1990 166 6.96659 6.96659 +1990 167 7.38808 7.38808 +1990 168 6.97010 6.97010 +1990 169 7.66191 7.66191 +1990 170 8.59037 8.59037 +1990 171 8.69065 8.69065 +1990 172 7.05664 7.05664 +1990 173 6.80860 6.80860 +1990 174 7.71000 7.71000 +1990 175 7.76977 7.76977 +1990 176 9.10485 9.10485 +1990 177 10.98920 10.98920 +1990 178 9.44956 9.44956 +1990 179 7.81750 7.81750 +1990 180 7.78084 7.78084 +1990 181 8.17580 8.17580 +1990 182 7.13415 7.13415 +1990 183 6.95043 6.95043 +1990 184 7.79499 7.79499 +1990 185 8.32924 8.32924 +1990 186 7.88175 7.88175 +1990 187 7.97346 7.97346 +1990 188 9.09785 9.09785 +1990 189 9.80273 9.80273 +1990 190 8.42031 8.42031 +1990 191 5.65377 5.65377 +1990 192 5.35046 5.35046 +1990 193 6.94033 6.94033 +1990 194 5.58245 5.58245 +1990 195 7.06560 7.06560 +1990 196 7.80212 7.80212 +1990 197 8.34046 8.34046 +1990 198 5.70437 5.70437 +1990 199 5.94234 5.94234 +1990 200 6.26598 6.26598 +1990 201 8.74014 8.74014 +1990 202 10.50260 10.50260 +1990 203 9.39520 9.39520 +1990 204 9.55080 9.55080 +1990 205 7.83800 7.83800 +1990 206 8.24803 8.24803 +1990 207 9.56267 9.56267 +1990 208 8.22348 8.22348 +1990 209 8.28664 8.28664 +1990 210 9.51157 9.51157 +1990 211 8.59546 8.59546 +1990 212 7.04910 7.04910 +1990 213 6.13016 6.13016 +1990 214 6.57907 6.57907 +1990 215 7.86516 7.86516 +1990 216 11.17940 11.17940 +1990 217 11.30040 11.30040 +1990 218 11.20500 11.20500 +1990 219 8.60183 8.60183 +1990 220 6.72915 6.72915 +1990 221 7.05309 7.05309 +1990 222 9.86410 9.86410 +1990 223 9.84254 9.84254 +1990 224 9.20886 9.20886 +1990 225 9.30845 9.30845 +1990 226 8.28675 8.28675 +1990 227 7.65251 7.65251 +1990 228 8.88176 8.88176 +1990 229 7.52091 7.52091 +1990 230 6.76859 6.76859 +1990 231 6.66361 6.66361 +1990 232 7.05395 7.05395 +1990 233 6.57542 6.57542 +1990 234 8.17038 8.17038 +1990 235 8.34175 8.34175 +1990 236 8.51188 8.51188 +1990 237 7.90899 7.90899 +1990 238 7.59926 7.59926 +1990 239 7.36875 7.36875 +1990 240 6.88721 6.88721 +1990 241 7.18822 7.18822 +1990 242 7.26093 7.26093 +1990 243 7.11985 7.11985 +1990 244 8.03139 8.03139 +1990 245 8.07310 8.07310 +1990 246 11.02320 11.02320 +1990 247 10.20430 10.20430 +1990 248 10.05200 10.05200 +1990 249 8.05185 8.05185 +1990 250 6.46900 6.46900 +1990 251 7.37732 7.37732 +1990 252 5.93968 5.93968 +1990 253 6.70747 6.70747 +1990 254 7.36225 7.36225 +1990 255 8.04484 8.04484 +1990 256 7.15952 7.15952 +1990 257 9.02065 9.02065 +1990 258 9.69524 9.69524 +1990 259 7.39347 7.39347 +1990 260 7.50910 7.50910 +1990 261 8.15570 8.15570 +1990 262 8.55579 8.55579 +1990 263 8.90251 8.90251 +1990 264 8.75287 8.75287 +1990 265 8.83388 8.83388 +1990 266 9.81504 9.81504 +1990 267 8.72851 8.72851 +1990 268 8.95657 8.95657 +1990 269 8.87286 8.87286 +1990 270 8.58224 8.58224 +1990 271 9.94951 9.94951 +1990 272 5.74838 5.74838 +1990 273 7.94728 7.94728 +1990 274 8.48786 8.48786 +1990 275 8.40182 8.40182 +1990 276 9.74236 9.74236 +1990 277 10.69000 10.69000 +1990 278 10.38370 10.38370 +1990 279 8.92122 8.92122 +1990 280 8.33059 8.33059 +1990 281 10.77690 10.77690 +1990 282 10.00150 10.00150 +1990 283 10.69210 10.69210 +1990 284 12.51170 12.51170 +1990 285 12.25000 12.25000 +1990 286 12.91720 12.91720 +1990 287 12.79730 12.79730 +1990 288 11.67740 11.67740 +1990 289 10.68830 10.68830 +1990 290 10.69340 10.69340 +1990 291 10.82600 10.82600 +1990 292 12.41060 12.41060 +1990 293 12.07080 12.07080 +1990 294 13.39380 13.39380 +1990 295 13.61960 13.61960 +1990 296 13.91100 13.91100 +1990 297 13.88300 13.88300 +1990 298 13.65880 13.65880 +1990 299 12.78690 12.78690 +1990 300 12.33210 12.33210 +1990 301 11.35880 11.35880 +1990 302 13.35730 13.35730 +1990 303 13.18060 13.18060 +1990 304 11.50150 11.50150 +1990 305 11.47950 11.47950 +1990 306 11.54040 11.54040 +1990 307 12.25580 12.25580 +1990 308 14.35090 14.35090 +1990 309 11.83390 11.83390 +1990 310 13.02940 13.02940 +1990 311 14.62330 14.62330 +1990 312 13.47480 13.47480 +1990 313 14.34060 14.34060 +1990 314 13.28080 13.28080 +1990 315 14.64480 14.64480 +1990 316 14.35930 14.35930 +1990 317 13.87750 13.87750 +1990 318 14.14040 14.14040 +1990 319 15.51460 15.51460 +1990 320 14.98460 14.98460 +1990 321 13.28300 13.28300 +1990 322 13.30920 13.30920 +1990 323 13.16920 13.16920 +1990 324 12.57050 12.57050 +1990 325 11.78270 11.78270 +1990 326 14.46050 14.46050 +1990 327 14.23690 14.23690 +1990 328 13.43070 13.43070 +1990 329 13.71010 13.71010 +1990 330 12.85380 12.85380 +1990 331 13.15750 13.15750 +1990 332 13.26870 13.26870 +1990 333 12.91110 12.91110 +1990 334 14.32990 14.32990 +1990 335 13.93190 13.93190 +1990 336 13.85560 13.85560 +1990 337 13.87510 13.87510 +1990 338 13.94860 13.94860 +1990 339 13.40080 13.40080 +1990 340 14.45330 14.45330 +1990 341 17.06830 17.06830 +1990 342 17.74270 17.74270 +1990 343 20.04080 20.04080 +1990 344 18.71660 18.71660 +1990 345 16.87850 16.87850 +1990 346 16.01130 16.01130 +1990 347 16.15360 16.15360 +1990 348 16.94310 16.94310 +1990 349 15.52620 15.52620 +1990 350 13.72390 13.72390 +1990 351 14.53640 14.53640 +1990 352 13.63420 13.63420 +1990 353 14.03280 14.03280 +1990 354 13.60260 13.60260 +1990 355 13.49460 13.49460 +1990 356 14.10290 14.10290 +1990 357 15.56240 15.56240 +1990 358 16.07690 16.07690 +1990 359 17.61200 17.61200 +1990 360 17.30220 17.30220 +1990 361 15.82800 15.82800 +1990 362 15.15440 15.15440 +1990 363 14.58670 14.58670 +1990 364 14.41930 14.41930 +1990 365 15.20010 15.20010 +1991 1 14.20580 14.20580 +1991 2 13.21620 13.21620 +1991 3 16.36680 16.36680 +1991 4 17.65440 17.65440 +1991 5 17.80090 17.80090 +1991 6 16.97860 16.97860 +1991 7 16.61600 16.61600 +1991 8 14.07210 14.07210 +1991 9 13.91670 13.91670 +1991 10 15.96650 15.96650 +1991 11 17.10650 17.10650 +1991 12 15.92060 15.92060 +1991 13 17.38350 17.38350 +1991 14 17.63280 17.63280 +1991 15 17.78590 17.78590 +1991 16 15.02540 15.02540 +1991 17 16.48430 16.48430 +1991 18 17.49010 17.49010 +1991 19 17.40990 17.40990 +1991 20 16.39020 16.39020 +1991 21 16.84750 16.84750 +1991 22 16.68060 16.68060 +1991 23 16.09920 16.09920 +1991 24 17.14330 17.14330 +1991 25 16.72810 16.72810 +1991 26 17.30050 17.30050 +1991 27 17.34420 17.34420 +1991 28 19.64340 19.64340 +1991 29 18.65210 18.65210 +1991 30 16.02300 16.02300 +1991 31 17.43980 17.43980 +1991 32 14.27110 14.27110 +1991 33 14.23200 14.23200 +1991 34 14.64040 14.64040 +1991 35 17.85480 17.85480 +1991 36 16.84400 16.84400 +1991 37 19.51870 19.51870 +1991 38 19.45090 19.45090 +1991 39 19.10980 19.10980 +1991 40 17.86020 17.86020 +1991 41 18.24800 18.24800 +1991 42 18.48080 18.48080 +1991 43 18.17390 18.17390 +1991 44 18.09150 18.09150 +1991 45 18.85540 18.85540 +1991 46 20.18570 20.18570 +1991 47 18.30050 18.30050 +1991 48 17.83990 17.83990 +1991 49 15.69320 15.69320 +1991 50 16.33450 16.33450 +1991 51 16.65520 16.65520 +1991 52 16.08200 16.08200 +1991 53 16.77760 16.77760 +1991 54 15.45480 15.45480 +1991 55 15.33590 15.33590 +1991 56 15.21640 15.21640 +1991 57 15.49480 15.49480 +1991 58 11.80250 11.80250 +1991 59 14.14410 14.14410 +1991 60 15.34170 15.34170 +1991 61 15.46730 15.46730 +1991 62 15.80980 15.80980 +1991 63 15.10700 15.10700 +1991 64 14.51080 14.51080 +1991 65 12.92740 12.92740 +1991 66 12.82360 12.82360 +1991 67 12.88670 12.88670 +1991 68 13.42570 13.42570 +1991 69 14.07100 14.07100 +1991 70 15.37960 15.37960 +1991 71 14.63160 14.63160 +1991 72 14.53670 14.53670 +1991 73 14.56580 14.56580 +1991 74 15.30720 15.30720 +1991 75 14.52970 14.52970 +1991 76 14.69400 14.69400 +1991 77 14.31610 14.31610 +1991 78 14.69800 14.69800 +1991 79 15.14940 15.14940 +1991 80 15.30520 15.30520 +1991 81 15.64770 15.64770 +1991 82 15.14000 15.14000 +1991 83 14.45750 14.45750 +1991 84 13.60640 13.60640 +1991 85 13.86940 13.86940 +1991 86 15.09540 15.09540 +1991 87 15.37780 15.37780 +1991 88 13.27410 13.27410 +1991 89 13.42840 13.42840 +1991 90 13.61110 13.61110 +1991 91 15.17210 15.17210 +1991 92 16.12820 16.12820 +1991 93 14.06100 14.06100 +1991 94 14.51630 14.51630 +1991 95 13.45360 13.45360 +1991 96 11.79650 11.79650 +1991 97 11.52350 11.52350 +1991 98 7.93689 7.93689 +1991 99 9.50084 9.50084 +1991 100 10.80710 10.80710 +1991 101 10.25340 10.25340 +1991 102 12.12060 12.12060 +1991 103 12.00470 12.00470 +1991 104 12.37260 12.37260 +1991 105 12.82630 12.82630 +1991 106 13.39220 13.39220 +1991 107 13.63400 13.63400 +1991 108 12.03770 12.03770 +1991 109 10.43660 10.43660 +1991 110 9.18572 9.18572 +1991 111 8.31793 8.31793 +1991 112 11.16240 11.16240 +1991 113 9.94411 9.94411 +1991 114 10.61400 10.61400 +1991 115 11.63640 11.63640 +1991 116 10.49830 10.49830 +1991 117 10.98980 10.98980 +1991 118 10.90150 10.90150 +1991 119 8.81386 8.81386 +1991 120 9.46305 9.46305 +1991 121 11.32090 11.32090 +1991 122 10.73670 10.73670 +1991 123 9.42940 9.42940 +1991 124 8.14054 8.14054 +1991 125 8.62067 8.62067 +1991 126 9.80287 9.80287 +1991 127 10.29250 10.29250 +1991 128 10.91470 10.91470 +1991 129 10.38430 10.38430 +1991 130 9.73061 9.73061 +1991 131 9.49722 9.49722 +1991 132 8.25352 8.25352 +1991 133 9.85890 9.85890 +1991 134 8.88075 8.88075 +1991 135 9.38348 9.38348 +1991 136 10.42080 10.42080 +1991 137 9.60618 9.60618 +1991 138 9.13236 9.13236 +1991 139 10.80880 10.80880 +1991 140 9.78233 9.78233 +1991 141 10.06710 10.06710 +1991 142 8.11501 8.11501 +1991 143 9.84842 9.84842 +1991 144 8.16281 8.16281 +1991 145 8.13991 8.13991 +1991 146 9.14567 9.14567 +1991 147 9.40420 9.40420 +1991 148 9.59113 9.59113 +1991 149 7.22954 7.22954 +1991 150 8.67341 8.67341 +1991 151 10.53440 10.53440 +1991 152 8.94872 8.94872 +1991 153 7.91388 7.91388 +1991 154 8.11413 8.11413 +1991 155 11.82010 11.82010 +1991 156 10.54770 10.54770 +1991 157 7.18260 7.18260 +1991 158 6.75509 6.75509 +1991 159 6.37317 6.37317 +1991 160 5.10020 5.10020 +1991 161 6.07614 6.07614 +1991 162 8.09240 8.09240 +1991 163 7.80830 7.80830 +1991 164 6.90268 6.90268 +1991 165 10.41980 10.41980 +1991 166 8.58693 8.58693 +1991 167 8.43883 8.43883 +1991 168 9.60359 9.60359 +1991 169 8.12133 8.12133 +1991 170 6.82435 6.82435 +1991 171 3.53957 3.53957 +1991 172 5.17868 5.17868 +1991 173 8.40175 8.40175 +1991 174 8.04767 8.04767 +1991 175 8.12248 8.12248 +1991 176 6.12485 6.12485 +1991 177 6.14498 6.14498 +1991 178 5.94662 5.94662 +1991 179 5.28104 5.28104 +1991 180 5.08632 5.08632 +1991 181 6.88963 6.88963 +1991 182 7.03709 7.03709 +1991 183 5.25660 5.25660 +1991 184 5.05664 5.05664 +1991 185 5.05483 5.05483 +1991 186 4.90657 4.90657 +1991 187 4.86559 4.86559 +1991 188 5.60946 5.60946 +1991 189 7.58206 7.58206 +1991 190 6.06703 6.06703 +1991 191 4.36048 4.36048 +1991 192 4.95683 4.95683 +1991 193 6.05260 6.05260 +1991 194 4.75147 4.75147 +1991 195 4.63986 4.63986 +1991 196 5.22489 5.22489 +1991 197 9.11455 9.11455 +1991 198 10.42850 10.42850 +1991 199 8.85663 8.85663 +1991 200 7.98426 7.98426 +1991 201 7.68536 7.68536 +1991 202 8.74445 8.74445 +1991 203 9.36134 9.36134 +1991 204 6.49748 6.49748 +1991 205 6.57343 6.57343 +1991 206 5.07854 5.07854 +1991 207 5.73859 5.73859 +1991 208 6.60250 6.60250 +1991 209 6.01859 6.01859 +1991 210 8.48312 8.48312 +1991 211 8.46443 8.46443 +1991 212 8.95019 8.95019 +1991 213 7.05902 7.05902 +1991 214 5.72432 5.72432 +1991 215 6.02207 6.02207 +1991 216 6.89077 6.89077 +1991 217 9.68845 9.68845 +1991 218 10.75570 10.75570 +1991 219 10.53570 10.53570 +1991 220 11.29840 11.29840 +1991 221 8.22768 8.22768 +1991 222 6.58036 6.58036 +1991 223 6.67891 6.67891 +1991 224 9.47743 9.47743 +1991 225 9.05566 9.05566 +1991 226 9.59834 9.59834 +1991 227 10.89880 10.89880 +1991 228 7.90702 7.90702 +1991 229 5.56800 5.56800 +1991 230 5.15201 5.15201 +1991 231 7.06417 7.06417 +1991 232 8.39998 8.39998 +1991 233 9.07286 9.07286 +1991 234 8.17233 8.17233 +1991 235 8.48437 8.48437 +1991 236 9.22762 9.22762 +1991 237 9.63111 9.63111 +1991 238 9.67129 9.67129 +1991 239 7.84388 7.84388 +1991 240 8.32781 8.32781 +1991 241 9.10139 9.10139 +1991 242 9.89343 9.89343 +1991 243 10.20840 10.20840 +1991 244 10.80050 10.80050 +1991 245 8.47889 8.47889 +1991 246 7.88122 7.88122 +1991 247 7.16331 7.16331 +1991 248 6.50751 6.50751 +1991 249 6.28702 6.28702 +1991 250 8.43840 8.43840 +1991 251 8.41684 8.41684 +1991 252 8.57028 8.57028 +1991 253 8.99856 8.99856 +1991 254 8.65023 8.65023 +1991 255 10.84050 10.84050 +1991 256 11.63860 11.63860 +1991 257 11.19290 11.19290 +1991 258 9.51658 9.51658 +1991 259 9.05723 9.05723 +1991 260 10.72680 10.72680 +1991 261 11.21220 11.21220 +1991 262 10.33710 10.33710 +1991 263 9.60087 9.60087 +1991 264 10.35420 10.35420 +1991 265 9.87296 9.87296 +1991 266 8.79865 8.79865 +1991 267 8.95694 8.95694 +1991 268 8.57743 8.57743 +1991 269 9.42113 9.42113 +1991 270 8.43947 8.43947 +1991 271 8.95545 8.95545 +1991 272 9.90110 9.90110 +1991 273 9.03420 9.03420 +1991 274 8.52131 8.52131 +1991 275 9.33827 9.33827 +1991 276 7.48988 7.48988 +1991 277 8.04887 8.04887 +1991 278 8.18837 8.18837 +1991 279 9.05729 9.05729 +1991 280 13.10130 13.10130 +1991 281 13.03640 13.03640 +1991 282 10.62340 10.62340 +1991 283 9.23672 9.23672 +1991 284 8.12574 8.12574 +1991 285 7.79449 7.79449 +1991 286 7.61610 7.61610 +1991 287 10.58240 10.58240 +1991 288 12.24050 12.24050 +1991 289 11.28840 11.28840 +1991 290 10.46720 10.46720 +1991 291 11.29850 11.29850 +1991 292 10.96090 10.96090 +1991 293 11.46460 11.46460 +1991 294 11.13610 11.13610 +1991 295 11.80380 11.80380 +1991 296 12.45880 12.45880 +1991 297 11.31780 11.31780 +1991 298 12.29610 12.29610 +1991 299 11.84980 11.84980 +1991 300 12.33600 12.33600 +1991 301 12.73980 12.73980 +1991 302 11.30010 11.30010 +1991 303 11.54360 11.54360 +1991 304 11.36530 11.36530 +1991 305 10.99390 10.99390 +1991 306 9.59873 9.59873 +1991 307 10.01180 10.01180 +1991 308 11.62010 11.62010 +1991 309 11.40370 11.40370 +1991 310 10.75410 10.75410 +1991 311 12.83170 12.83170 +1991 312 10.39700 10.39700 +1991 313 9.63578 9.63578 +1991 314 8.90222 8.90222 +1991 315 9.88814 9.88814 +1991 316 10.75720 10.75720 +1991 317 10.72700 10.72700 +1991 318 10.09930 10.09930 +1991 319 11.54140 11.54140 +1991 320 12.85490 12.85490 +1991 321 11.89450 11.89450 +1991 322 11.88490 11.88490 +1991 323 12.42120 12.42120 +1991 324 10.79870 10.79870 +1991 325 10.83890 10.83890 +1991 326 11.61560 11.61560 +1991 327 10.45150 10.45150 +1991 328 11.21810 11.21810 +1991 329 11.11050 11.11050 +1991 330 11.11160 11.11160 +1991 331 13.08690 13.08690 +1991 332 12.35050 12.35050 +1991 333 12.02670 12.02670 +1991 334 12.45000 12.45000 +1991 335 12.04330 12.04330 +1991 336 10.21260 10.21260 +1991 337 11.45090 11.45090 +1991 338 12.70320 12.70320 +1991 339 11.99630 11.99630 +1991 340 14.05310 14.05310 +1991 341 13.93740 13.93740 +1991 342 12.61000 12.61000 +1991 343 14.71470 14.71470 +1991 344 15.63070 15.63070 +1991 345 14.35420 14.35420 +1991 346 14.37640 14.37640 +1991 347 14.89460 14.89460 +1991 348 13.89220 13.89220 +1991 349 12.35230 12.35230 +1991 350 13.15150 13.15150 +1991 351 14.76780 14.76780 +1991 352 15.15890 15.15890 +1991 353 15.54530 15.54530 +1991 354 15.63790 15.63790 +1991 355 16.27270 16.27270 +1991 356 17.06340 17.06340 +1991 357 17.08990 17.08990 +1991 358 17.70370 17.70370 +1991 359 16.84850 16.84850 +1991 360 17.28190 17.28190 +1991 361 17.69320 17.69320 +1991 362 17.73940 17.73940 +1991 363 17.45970 17.45970 +1991 364 15.96560 15.96560 +1991 365 14.26020 14.26020 +1992 1 12.31830 12.31830 +1992 2 12.41770 12.41770 +1992 3 14.28310 14.28310 +1992 4 15.03570 15.03570 +1992 5 16.13620 16.13620 +1992 6 15.66730 15.66730 +1992 7 17.47780 17.47780 +1992 8 16.80110 16.80110 +1992 9 17.30430 17.30430 +1992 10 17.10050 17.10050 +1992 11 16.17960 16.17960 +1992 12 16.02580 16.02580 +1992 13 18.17410 18.17410 +1992 14 18.70520 18.70520 +1992 15 17.08610 17.08610 +1992 16 16.86190 16.86190 +1992 17 18.09960 18.09960 +1992 18 14.48710 14.48710 +1992 19 14.35870 14.35870 +1992 20 15.18520 15.18520 +1992 21 15.15940 15.15940 +1992 22 16.99380 16.99380 +1992 23 16.21570 16.21570 +1992 24 17.48570 17.48570 +1992 25 16.36260 16.36260 +1992 26 16.85460 16.85460 +1992 27 16.91870 16.91870 +1992 28 17.95210 17.95210 +1992 29 15.66230 15.66230 +1992 30 16.98190 16.98190 +1992 31 15.68430 15.68430 +1992 32 15.14970 15.14970 +1992 33 13.99290 13.99290 +1992 34 13.99440 13.99440 +1992 35 15.30550 15.30550 +1992 36 15.85460 15.85460 +1992 37 16.08860 16.08860 +1992 38 15.72230 15.72230 +1992 39 16.63060 16.63060 +1992 40 17.59210 17.59210 +1992 41 17.47040 17.47040 +1992 42 17.14960 17.14960 +1992 43 18.00010 18.00010 +1992 44 17.54800 17.54800 +1992 45 19.75820 19.75820 +1992 46 17.60010 17.60010 +1992 47 15.73950 15.73950 +1992 48 16.07860 16.07860 +1992 49 14.72600 14.72600 +1992 50 17.77830 17.77830 +1992 51 16.34100 16.34100 +1992 52 17.88650 17.88650 +1992 53 17.00720 17.00720 +1992 54 17.67890 17.67890 +1992 55 17.46860 17.46860 +1992 56 15.55170 15.55170 +1992 57 13.68180 13.68180 +1992 58 13.32930 13.32930 +1992 59 11.52710 11.52710 +1992 60 12.14240 12.14240 +1992 61 13.08080 13.08080 +1992 62 14.56240 14.56240 +1992 63 14.53390 14.53390 +1992 64 15.74470 15.74470 +1992 65 15.82300 15.82300 +1992 66 15.11780 15.11780 +1992 67 18.11330 18.11330 +1992 68 17.90150 17.90150 +1992 69 14.78370 14.78370 +1992 70 15.77510 15.77510 +1992 71 15.12760 15.12760 +1992 72 13.57900 13.57900 +1992 73 12.37390 12.37390 +1992 74 12.88750 12.88750 +1992 75 14.29510 14.29510 +1992 76 13.51610 13.51610 +1992 77 12.62620 12.62620 +1992 78 12.99710 12.99710 +1992 79 11.57280 11.57280 +1992 80 13.59650 13.59650 +1992 81 11.22130 11.22130 +1992 82 10.23680 10.23680 +1992 83 10.77650 10.77650 +1992 84 12.01330 12.01330 +1992 85 12.87730 12.87730 +1992 86 12.72690 12.72690 +1992 87 11.58300 11.58300 +1992 88 12.37250 12.37250 +1992 89 14.58220 14.58220 +1992 90 12.71160 12.71160 +1992 91 11.75850 11.75850 +1992 92 11.35250 11.35250 +1992 93 7.86058 7.86058 +1992 94 8.04969 8.04969 +1992 95 8.78224 8.78224 +1992 96 10.54940 10.54940 +1992 97 11.56950 11.56950 +1992 98 11.96340 11.96340 +1992 99 13.51310 13.51310 +1992 100 13.61640 13.61640 +1992 101 14.84290 14.84290 +1992 102 12.45720 12.45720 +1992 103 11.62130 11.62130 +1992 104 11.19550 11.19550 +1992 105 10.09950 10.09950 +1992 106 9.84762 9.84762 +1992 107 9.74144 9.74144 +1992 108 9.99564 9.99564 +1992 109 10.23580 10.23580 +1992 110 9.16851 9.16851 +1992 111 8.96030 8.96030 +1992 112 8.43802 8.43802 +1992 113 8.32083 8.32083 +1992 114 8.86891 8.86891 +1992 115 10.61990 10.61990 +1992 116 11.55650 11.55650 +1992 117 13.33690 13.33690 +1992 118 11.51510 11.51510 +1992 119 10.41250 10.41250 +1992 120 9.51370 9.51370 +1992 121 9.17517 9.17517 +1992 122 10.67380 10.67380 +1992 123 10.89200 10.89200 +1992 124 11.61160 11.61160 +1992 125 10.83740 10.83740 +1992 126 10.35900 10.35900 +1992 127 9.65829 9.65829 +1992 128 6.29407 6.29407 +1992 129 6.13541 6.13541 +1992 130 7.29026 7.29026 +1992 131 9.35763 9.35763 +1992 132 9.11947 9.11947 +1992 133 7.23168 7.23168 +1992 134 8.34281 8.34281 +1992 135 11.48580 11.48580 +1992 136 6.98507 6.98507 +1992 137 7.43184 7.43184 +1992 138 8.47446 8.47446 +1992 139 9.34649 9.34649 +1992 140 9.06493 9.06493 +1992 141 7.92248 7.92248 +1992 142 8.54709 8.54709 +1992 143 6.82529 6.82529 +1992 144 7.89423 7.89423 +1992 145 8.97232 8.97232 +1992 146 6.55837 6.55837 +1992 147 5.85519 5.85519 +1992 148 7.83955 7.83955 +1992 149 6.98045 6.98045 +1992 150 6.26376 6.26376 +1992 151 5.48922 5.48922 +1992 152 4.48324 4.48324 +1992 153 5.02014 5.02014 +1992 154 5.59890 5.59890 +1992 155 6.43488 6.43488 +1992 156 7.79504 7.79504 +1992 157 10.26660 10.26660 +1992 158 11.70650 11.70650 +1992 159 11.03420 11.03420 +1992 160 9.10950 9.10950 +1992 161 9.50835 9.50835 +1992 162 9.03448 9.03448 +1992 163 10.43450 10.43450 +1992 164 9.39242 9.39242 +1992 165 6.62011 6.62011 +1992 166 7.44795 7.44795 +1992 167 7.16081 7.16081 +1992 168 7.66107 7.66107 +1992 169 8.29632 8.29632 +1992 170 8.16714 8.16714 +1992 171 5.81940 5.81940 +1992 172 4.17913 4.17913 +1992 173 4.43745 4.43745 +1992 174 5.31564 5.31564 +1992 175 5.06827 5.06827 +1992 176 4.75616 4.75616 +1992 177 4.58960 4.58960 +1992 178 3.20306 3.20306 +1992 179 5.71541 5.71541 +1992 180 8.02092 8.02092 +1992 181 4.18444 4.18444 +1992 182 3.82807 3.82807 +1992 183 6.81225 6.81225 +1992 184 9.06699 9.06699 +1992 185 10.07470 10.07470 +1992 186 10.46740 10.46740 +1992 187 8.63370 8.63370 +1992 188 8.53670 8.53670 +1992 189 9.57540 9.57540 +1992 190 7.41502 7.41502 +1992 191 5.70771 5.70771 +1992 192 5.69382 5.69382 +1992 193 6.51416 6.51416 +1992 194 6.81162 6.81162 +1992 195 7.86425 7.86425 +1992 196 8.62221 8.62221 +1992 197 7.90228 7.90228 +1992 198 7.26913 7.26913 +1992 199 6.09143 6.09143 +1992 200 6.59256 6.59256 +1992 201 9.71968 9.71968 +1992 202 11.03700 11.03700 +1992 203 9.40100 9.40100 +1992 204 6.39456 6.39456 +1992 205 7.23001 7.23001 +1992 206 5.92114 5.92114 +1992 207 7.40300 7.40300 +1992 208 4.80829 4.80829 +1992 209 8.02805 8.02805 +1992 210 9.11726 9.11726 +1992 211 9.15174 9.15174 +1992 212 9.00508 9.00508 +1992 213 7.73779 7.73779 +1992 214 7.20582 7.20582 +1992 215 8.75509 8.75509 +1992 216 7.99549 7.99549 +1992 217 4.41721 4.41721 +1992 218 6.70953 6.70953 +1992 219 7.08123 7.08123 +1992 220 9.12524 9.12524 +1992 221 11.17900 11.17900 +1992 222 8.98518 8.98518 +1992 223 6.81757 6.81757 +1992 224 8.23628 8.23628 +1992 225 8.41294 8.41294 +1992 226 9.04695 9.04695 +1992 227 7.83070 7.83070 +1992 228 6.63973 6.63973 +1992 229 6.78313 6.78313 +1992 230 5.87571 5.87571 +1992 231 7.01854 7.01854 +1992 232 7.66529 7.66529 +1992 233 6.63115 6.63115 +1992 234 5.33873 5.33873 +1992 235 4.79600 4.79600 +1992 236 5.04363 5.04363 +1992 237 6.79115 6.79115 +1992 238 8.14553 8.14553 +1992 239 5.39703 5.39703 +1992 240 4.80492 4.80492 +1992 241 5.09043 5.09043 +1992 242 4.73164 4.73164 +1992 243 5.15620 5.15620 +1992 244 6.56063 6.56063 +1992 245 8.58441 8.58441 +1992 246 8.45632 8.45632 +1992 247 8.25540 8.25540 +1992 248 8.49002 8.49002 +1992 249 7.85048 7.85048 +1992 250 7.47197 7.47197 +1992 251 6.41340 6.41340 +1992 252 6.73038 6.73038 +1992 253 5.67571 5.67571 +1992 254 5.73461 5.73461 +1992 255 5.31952 5.31952 +1992 256 7.11865 7.11865 +1992 257 7.72701 7.72701 +1992 258 7.87972 7.87972 +1992 259 7.26684 7.26684 +1992 260 7.86519 7.86519 +1992 261 7.91263 7.91263 +1992 262 9.09593 9.09593 +1992 263 8.69222 8.69222 +1992 264 8.11287 8.11287 +1992 265 8.67809 8.67809 +1992 266 8.98975 8.98975 +1992 267 9.94856 9.94856 +1992 268 8.27638 8.27638 +1992 269 8.87355 8.87355 +1992 270 7.63123 7.63123 +1992 271 7.60964 7.60964 +1992 272 7.74563 7.74563 +1992 273 7.74165 7.74165 +1992 274 8.93765 8.93765 +1992 275 10.43580 10.43580 +1992 276 8.89590 8.89590 +1992 277 8.59369 8.59369 +1992 278 8.29904 8.29904 +1992 279 9.16879 9.16879 +1992 280 9.08094 9.08094 +1992 281 10.20100 10.20100 +1992 282 9.63222 9.63222 +1992 283 10.07800 10.07800 +1992 284 11.49370 11.49370 +1992 285 12.09630 12.09630 +1992 286 10.85570 10.85570 +1992 287 5.97017 5.97017 +1992 288 6.27274 6.27274 +1992 289 8.67496 8.67496 +1992 290 8.67198 8.67198 +1992 291 8.78628 8.78628 +1992 292 9.78231 9.78231 +1992 293 9.86989 9.86989 +1992 294 11.56640 11.56640 +1992 295 11.76910 11.76910 +1992 296 10.17300 10.17300 +1992 297 10.44250 10.44250 +1992 298 11.07340 11.07340 +1992 299 10.62050 10.62050 +1992 300 9.94132 9.94132 +1992 301 8.47953 8.47953 +1992 302 8.59576 8.59576 +1992 303 10.32680 10.32680 +1992 304 12.06040 12.06040 +1992 305 12.76800 12.76800 +1992 306 13.02250 13.02250 +1992 307 12.38670 12.38670 +1992 308 13.68820 13.68820 +1992 309 13.54870 13.54870 +1992 310 11.98470 11.98470 +1992 311 12.96910 12.96910 +1992 312 12.74690 12.74690 +1992 313 12.77620 12.77620 +1992 314 12.13190 12.13190 +1992 315 12.18980 12.18980 +1992 316 13.14740 13.14740 +1992 317 13.50470 13.50470 +1992 318 13.50030 13.50030 +1992 319 13.42060 13.42060 +1992 320 13.72330 13.72330 +1992 321 13.24010 13.24010 +1992 322 10.54670 10.54670 +1992 323 9.87448 9.87448 +1992 324 11.32430 11.32430 +1992 325 11.70510 11.70510 +1992 326 11.97180 11.97180 +1992 327 13.23710 13.23710 +1992 328 13.76850 13.76850 +1992 329 13.29410 13.29410 +1992 330 13.49380 13.49380 +1992 331 14.67510 14.67510 +1992 332 15.91820 15.91820 +1992 333 13.37690 13.37690 +1992 334 15.61540 15.61540 +1992 335 14.69500 14.69500 +1992 336 15.51910 15.51910 +1992 337 14.95160 14.95160 +1992 338 16.10700 16.10700 +1992 339 13.10490 13.10490 +1992 340 13.02060 13.02060 +1992 341 13.49820 13.49820 +1992 342 14.19110 14.19110 +1992 343 15.67660 15.67660 +1992 344 15.31810 15.31810 +1992 345 15.66490 15.66490 +1992 346 14.89730 14.89730 +1992 347 14.45980 14.45980 +1992 348 12.54640 12.54640 +1992 349 12.96480 12.96480 +1992 350 15.20540 15.20540 +1992 351 14.96540 14.96540 +1992 352 12.86980 12.86980 +1992 353 10.41130 10.41130 +1992 354 10.64280 10.64280 +1992 355 9.95082 9.95082 +1992 356 12.14520 12.14520 +1992 357 14.29940 14.29940 +1992 358 13.55760 13.55760 +1992 359 15.83370 15.83370 +1992 360 16.05130 16.05130 +1992 361 14.85870 14.85870 +1992 362 16.11550 16.11550 +1992 363 16.37770 16.37770 +1992 364 15.68960 15.68960 +1992 365 12.50530 12.50530 +1992 366 13.59310 13.59310 +1993 1 15.26060 15.26060 +1993 2 14.60580 14.60580 +1993 3 13.58780 13.58780 +1993 4 13.64500 13.64500 +1993 5 13.67440 13.67440 +1993 6 14.98480 14.98480 +1993 7 15.63880 15.63880 +1993 8 15.11370 15.11370 +1993 9 15.76270 15.76270 +1993 10 17.53540 17.53540 +1993 11 17.62120 17.62120 +1993 12 16.77420 16.77420 +1993 13 14.46050 14.46050 +1993 14 14.69250 14.69250 +1993 15 16.09500 16.09500 +1993 16 16.35850 16.35850 +1993 17 18.21700 18.21700 +1993 18 17.94580 17.94580 +1993 19 18.24100 18.24100 +1993 20 17.89840 17.89840 +1993 21 18.03720 18.03720 +1993 22 16.39780 16.39780 +1993 23 16.52200 16.52200 +1993 24 16.85650 16.85650 +1993 25 16.72970 16.72970 +1993 26 14.34480 14.34480 +1993 27 14.62380 14.62380 +1993 28 15.15070 15.15070 +1993 29 15.18560 15.18560 +1993 30 13.28900 13.28900 +1993 31 12.32660 12.32660 +1993 32 12.20850 12.20850 +1993 33 12.05060 12.05060 +1993 34 13.84470 13.84470 +1993 35 15.35360 15.35360 +1993 36 16.43960 16.43960 +1993 37 15.50990 15.50990 +1993 38 14.96250 14.96250 +1993 39 17.13120 17.13120 +1993 40 16.92530 16.92530 +1993 41 16.17740 16.17740 +1993 42 17.22290 17.22290 +1993 43 17.87670 17.87670 +1993 44 15.47110 15.47110 +1993 45 14.19780 14.19780 +1993 46 13.80830 13.80830 +1993 47 14.52340 14.52340 +1993 48 14.77720 14.77720 +1993 49 15.19370 15.19370 +1993 50 16.13530 16.13530 +1993 51 16.76070 16.76070 +1993 52 15.66990 15.66990 +1993 53 17.50160 17.50160 +1993 54 17.27720 17.27720 +1993 55 16.78050 16.78050 +1993 56 16.79220 16.79220 +1993 57 16.97770 16.97770 +1993 58 16.80840 16.80840 +1993 59 16.84700 16.84700 +1993 60 16.65690 16.65690 +1993 61 16.24690 16.24690 +1993 62 15.29500 15.29500 +1993 63 14.63640 14.63640 +1993 64 14.11610 14.11610 +1993 65 13.55950 13.55950 +1993 66 13.71990 13.71990 +1993 67 13.81730 13.81730 +1993 68 13.11310 13.11310 +1993 69 14.72900 14.72900 +1993 70 14.71480 14.71480 +1993 71 15.05820 15.05820 +1993 72 14.89370 14.89370 +1993 73 13.76090 13.76090 +1993 74 13.79800 13.79800 +1993 75 13.58840 13.58840 +1993 76 14.08960 14.08960 +1993 77 12.08340 12.08340 +1993 78 11.99470 11.99470 +1993 79 12.06780 12.06780 +1993 80 9.57183 9.57183 +1993 81 11.26140 11.26140 +1993 82 12.16410 12.16410 +1993 83 12.79090 12.79090 +1993 84 12.86790 12.86790 +1993 85 12.39240 12.39240 +1993 86 13.74990 13.74990 +1993 87 14.58190 14.58190 +1993 88 14.73450 14.73450 +1993 89 15.66270 15.66270 +1993 90 13.58570 13.58570 +1993 91 11.73800 11.73800 +1993 92 12.20550 12.20550 +1993 93 13.72020 13.72020 +1993 94 14.54500 14.54500 +1993 95 14.18710 14.18710 +1993 96 13.95130 13.95130 +1993 97 14.41780 14.41780 +1993 98 13.89860 13.89860 +1993 99 10.79500 10.79500 +1993 100 9.70403 9.70403 +1993 101 10.51910 10.51910 +1993 102 11.65120 11.65120 +1993 103 9.83005 9.83005 +1993 104 10.04500 10.04500 +1993 105 11.14370 11.14370 +1993 106 11.23520 11.23520 +1993 107 11.42960 11.42960 +1993 108 12.12620 12.12620 +1993 109 11.29180 11.29180 +1993 110 11.78590 11.78590 +1993 111 8.24390 8.24390 +1993 112 7.58094 7.58094 +1993 113 8.39111 8.39111 +1993 114 8.97098 8.97098 +1993 115 11.83310 11.83310 +1993 116 9.77395 9.77395 +1993 117 9.80659 9.80659 +1993 118 10.42050 10.42050 +1993 119 9.70480 9.70480 +1993 120 9.81772 9.81772 +1993 121 10.20280 10.20280 +1993 122 9.71390 9.71390 +1993 123 10.23560 10.23560 +1993 124 11.49710 11.49710 +1993 125 12.37790 12.37790 +1993 126 9.86763 9.86763 +1993 127 8.25931 8.25931 +1993 128 9.37848 9.37848 +1993 129 10.71130 10.71130 +1993 130 10.96890 10.96890 +1993 131 11.67180 11.67180 +1993 132 12.66060 12.66060 +1993 133 11.10770 11.10770 +1993 134 12.47170 12.47170 +1993 135 13.17400 13.17400 +1993 136 10.33220 10.33220 +1993 137 10.71060 10.71060 +1993 138 9.82823 9.82823 +1993 139 9.84995 9.84995 +1993 140 9.10081 9.10081 +1993 141 8.27249 8.27249 +1993 142 8.54467 8.54467 +1993 143 8.53067 8.53067 +1993 144 9.36443 9.36443 +1993 145 9.35932 9.35932 +1993 146 9.81910 9.81910 +1993 147 6.01984 6.01984 +1993 148 8.90762 8.90762 +1993 149 9.77850 9.77850 +1993 150 8.73333 8.73333 +1993 151 9.49759 9.49759 +1993 152 10.97550 10.97550 +1993 153 9.12336 9.12336 +1993 154 10.72480 10.72480 +1993 155 11.60910 11.60910 +1993 156 11.50340 11.50340 +1993 157 8.87976 8.87976 +1993 158 9.67871 9.67871 +1993 159 10.62870 10.62870 +1993 160 9.42608 9.42608 +1993 161 8.81786 8.81786 +1993 162 10.24700 10.24700 +1993 163 11.28950 11.28950 +1993 164 8.32736 8.32736 +1993 165 7.82170 7.82170 +1993 166 9.60717 9.60717 +1993 167 9.03142 9.03142 +1993 168 8.35866 8.35866 +1993 169 8.08014 8.08014 +1993 170 9.33216 9.33216 +1993 171 9.41585 9.41585 +1993 172 8.77454 8.77454 +1993 173 7.97817 7.97817 +1993 174 7.69150 7.69150 +1993 175 6.76018 6.76018 +1993 176 6.31310 6.31310 +1993 177 7.63985 7.63985 +1993 178 6.96573 6.96573 +1993 179 6.62261 6.62261 +1993 180 6.07202 6.07202 +1993 181 5.05628 5.05628 +1993 182 4.71774 4.71774 +1993 183 4.67723 4.67723 +1993 184 5.98890 5.98890 +1993 185 8.57231 8.57231 +1993 186 9.21097 9.21097 +1993 187 6.82913 6.82913 +1993 188 5.98515 5.98515 +1993 189 6.16211 6.16211 +1993 190 7.14634 7.14634 +1993 191 6.52268 6.52268 +1993 192 5.02527 5.02527 +1993 193 5.11403 5.11403 +1993 194 5.54835 5.54835 +1993 195 6.82419 6.82419 +1993 196 6.27416 6.27416 +1993 197 7.36297 7.36297 +1993 198 6.77984 6.77984 +1993 199 6.46123 6.46123 +1993 200 8.30297 8.30297 +1993 201 9.53646 9.53646 +1993 202 7.83789 7.83789 +1993 203 7.43644 7.43644 +1993 204 8.97881 8.97881 +1993 205 5.84193 5.84193 +1993 206 5.00931 5.00931 +1993 207 7.18430 7.18430 +1993 208 8.47680 8.47680 +1993 209 7.70240 7.70240 +1993 210 8.93339 8.93339 +1993 211 7.67159 7.67159 +1993 212 6.70873 6.70873 +1993 213 7.62231 7.62231 +1993 214 8.66750 8.66750 +1993 215 7.63291 7.63291 +1993 216 6.02726 6.02726 +1993 217 5.19212 5.19212 +1993 218 5.54672 5.54672 +1993 219 7.01434 7.01434 +1993 220 7.26330 7.26330 +1993 221 8.34831 8.34831 +1993 222 7.19130 7.19130 +1993 223 6.62819 6.62819 +1993 224 7.56350 7.56350 +1993 225 7.38631 7.38631 +1993 226 7.17786 7.17786 +1993 227 4.99907 4.99907 +1993 228 4.79507 4.79507 +1993 229 8.01609 8.01609 +1993 230 5.73793 5.73793 +1993 231 5.75701 5.75701 +1993 232 8.34928 8.34928 +1993 233 7.47256 7.47256 +1993 234 7.01997 7.01997 +1993 235 6.88760 6.88760 +1993 236 8.58281 8.58281 +1993 237 7.17651 7.17651 +1993 238 8.67650 8.67650 +1993 239 5.66964 5.66964 +1993 240 6.14131 6.14131 +1993 241 5.98784 5.98784 +1993 242 5.93576 5.93576 +1993 243 6.57170 6.57170 +1993 244 6.19148 6.19148 +1993 245 6.61941 6.61941 +1993 246 9.09022 9.09022 +1993 247 6.86780 6.86780 +1993 248 5.33770 5.33770 +1993 249 5.39253 5.39253 +1993 250 6.51046 6.51046 +1993 251 6.82292 6.82292 +1993 252 7.44774 7.44774 +1993 253 8.40147 8.40147 +1993 254 9.74656 9.74656 +1993 255 8.80793 8.80793 +1993 256 9.08856 9.08856 +1993 257 9.14261 9.14261 +1993 258 9.54213 9.54213 +1993 259 8.77988 8.77988 +1993 260 8.90060 8.90060 +1993 261 6.51177 6.51177 +1993 262 7.57650 7.57650 +1993 263 8.55781 8.55781 +1993 264 7.51738 7.51738 +1993 265 8.18443 8.18443 +1993 266 7.19937 7.19937 +1993 267 6.85479 6.85479 +1993 268 7.81566 7.81566 +1993 269 6.96311 6.96311 +1993 270 5.91569 5.91569 +1993 271 7.46214 7.46214 +1993 272 9.50722 9.50722 +1993 273 9.92128 9.92128 +1993 274 10.59470 10.59470 +1993 275 10.89230 10.89230 +1993 276 10.20910 10.20910 +1993 277 9.80479 9.80479 +1993 278 11.89210 11.89210 +1993 279 12.99060 12.99060 +1993 280 13.84590 13.84590 +1993 281 11.69310 11.69310 +1993 282 10.53480 10.53480 +1993 283 11.41560 11.41560 +1993 284 9.25300 9.25300 +1993 285 8.67996 8.67996 +1993 286 9.47462 9.47462 +1993 287 10.76430 10.76430 +1993 288 10.34710 10.34710 +1993 289 9.69717 9.69717 +1993 290 9.89469 9.89469 +1993 291 12.15480 12.15480 +1993 292 13.51250 13.51250 +1993 293 11.64880 11.64880 +1993 294 10.31360 10.31360 +1993 295 8.70892 8.70892 +1993 296 10.25300 10.25300 +1993 297 10.12870 10.12870 +1993 298 10.72910 10.72910 +1993 299 10.50450 10.50450 +1993 300 11.50630 11.50630 +1993 301 11.10150 11.10150 +1993 302 11.45750 11.45750 +1993 303 13.17350 13.17350 +1993 304 11.93160 11.93160 +1993 305 9.65708 9.65708 +1993 306 9.49246 9.49246 +1993 307 10.28230 10.28230 +1993 308 11.96990 11.96990 +1993 309 12.67300 12.67300 +1993 310 10.96440 10.96440 +1993 311 11.88170 11.88170 +1993 312 10.18370 10.18370 +1993 313 10.12400 10.12400 +1993 314 12.66560 12.66560 +1993 315 11.40960 11.40960 +1993 316 10.67190 10.67190 +1993 317 9.82654 9.82654 +1993 318 10.89750 10.89750 +1993 319 12.58590 12.58590 +1993 320 13.06250 13.06250 +1993 321 11.94850 11.94850 +1993 322 11.71500 11.71500 +1993 323 12.36720 12.36720 +1993 324 12.96160 12.96160 +1993 325 10.67520 10.67520 +1993 326 9.78581 9.78581 +1993 327 11.04020 11.04020 +1993 328 11.41680 11.41680 +1993 329 12.44880 12.44880 +1993 330 12.69740 12.69740 +1993 331 12.71560 12.71560 +1993 332 11.64730 11.64730 +1993 333 11.01100 11.01100 +1993 334 12.06170 12.06170 +1993 335 13.21590 13.21590 +1993 336 13.58130 13.58130 +1993 337 13.00490 13.00490 +1993 338 13.17180 13.17180 +1993 339 12.30640 12.30640 +1993 340 12.01440 12.01440 +1993 341 12.14110 12.14110 +1993 342 13.15860 13.15860 +1993 343 13.21060 13.21060 +1993 344 14.22380 14.22380 +1993 345 14.15210 14.15210 +1993 346 14.72510 14.72510 +1993 347 15.95550 15.95550 +1993 348 15.75940 15.75940 +1993 349 15.58380 15.58380 +1993 350 15.14580 15.14580 +1993 351 14.81440 14.81440 +1993 352 13.33580 13.33580 +1993 353 12.89290 12.89290 +1993 354 12.50530 12.50530 +1993 355 12.68610 12.68610 +1993 356 11.14670 11.14670 +1993 357 13.74180 13.74180 +1993 358 13.45560 13.45560 +1993 359 12.14250 12.14250 +1993 360 15.49480 15.49480 +1993 361 18.09200 18.09200 +1993 362 17.94890 17.94890 +1993 363 17.96670 17.96670 +1993 364 17.58510 17.58510 +1993 365 15.45890 15.45890 +1994 1 15.17000 15.17000 +1994 2 15.56120 15.56120 +1994 3 17.93530 17.93530 +1994 4 17.64040 17.64040 +1994 5 16.31850 16.31850 +1994 6 19.56910 19.56910 +1994 7 20.92390 20.92390 +1994 8 20.73500 20.73500 +1994 9 19.89700 19.89700 +1994 10 18.29030 18.29030 +1994 11 15.34040 15.34040 +1994 12 14.55440 14.55440 +1994 13 16.83630 16.83630 +1994 14 17.55900 17.55900 +1994 15 16.29590 16.29590 +1994 16 15.31670 15.31670 +1994 17 16.39350 16.39350 +1994 18 18.56760 18.56760 +1994 19 19.05100 19.05100 +1994 20 18.87760 18.87760 +1994 21 18.53080 18.53080 +1994 22 17.96560 17.96560 +1994 23 18.13340 18.13340 +1994 24 18.20650 18.20650 +1994 25 16.33730 16.33730 +1994 26 12.19020 12.19020 +1994 27 13.00560 13.00560 +1994 28 15.44990 15.44990 +1994 29 16.94180 16.94180 +1994 30 16.45810 16.45810 +1994 31 16.51390 16.51390 +1994 32 15.77260 15.77260 +1994 33 15.81060 15.81060 +1994 34 14.65830 14.65830 +1994 35 17.03850 17.03850 +1994 36 17.14320 17.14320 +1994 37 15.19880 15.19880 +1994 38 15.63420 15.63420 +1994 39 16.41010 16.41010 +1994 40 16.78980 16.78980 +1994 41 16.49800 16.49800 +1994 42 16.60390 16.60390 +1994 43 17.21160 17.21160 +1994 44 17.89130 17.89130 +1994 45 16.92220 16.92220 +1994 46 17.78010 17.78010 +1994 47 18.47100 18.47100 +1994 48 18.20520 18.20520 +1994 49 18.91390 18.91390 +1994 50 17.40150 17.40150 +1994 51 16.31820 16.31820 +1994 52 17.67500 17.67500 +1994 53 17.49360 17.49360 +1994 54 16.93650 16.93650 +1994 55 17.40800 17.40800 +1994 56 17.78780 17.78780 +1994 57 17.32150 17.32150 +1994 58 16.66620 16.66620 +1994 59 16.38180 16.38180 +1994 60 14.86220 14.86220 +1994 61 13.80590 13.80590 +1994 62 14.70030 14.70030 +1994 63 16.56110 16.56110 +1994 64 16.40080 16.40080 +1994 65 14.63280 14.63280 +1994 66 12.25190 12.25190 +1994 67 14.45220 14.45220 +1994 68 12.54910 12.54910 +1994 69 13.51260 13.51260 +1994 70 13.86810 13.86810 +1994 71 14.99060 14.99060 +1994 72 15.14140 15.14140 +1994 73 15.72680 15.72680 +1994 74 15.99160 15.99160 +1994 75 15.88050 15.88050 +1994 76 15.19940 15.19940 +1994 77 13.19000 13.19000 +1994 78 13.91930 13.91930 +1994 79 11.32860 11.32860 +1994 80 11.99850 11.99850 +1994 81 11.47860 11.47860 +1994 82 12.66470 12.66470 +1994 83 11.67240 11.67240 +1994 84 11.29160 11.29160 +1994 85 14.11670 14.11670 +1994 86 15.71950 15.71950 +1994 87 15.59720 15.59720 +1994 88 13.35640 13.35640 +1994 89 13.06900 13.06900 +1994 90 12.84830 12.84830 +1994 91 13.36470 13.36470 +1994 92 14.51290 14.51290 +1994 93 12.11570 12.11570 +1994 94 11.85990 11.85990 +1994 95 12.64040 12.64040 +1994 96 13.11920 13.11920 +1994 97 12.97110 12.97110 +1994 98 12.96770 12.96770 +1994 99 13.74500 13.74500 +1994 100 14.06860 14.06860 +1994 101 15.24270 15.24270 +1994 102 15.83580 15.83580 +1994 103 14.94280 14.94280 +1994 104 14.53820 14.53820 +1994 105 15.21600 15.21600 +1994 106 14.01050 14.01050 +1994 107 12.90360 12.90360 +1994 108 12.26380 12.26380 +1994 109 13.64810 13.64810 +1994 110 10.00310 10.00310 +1994 111 9.19814 9.19814 +1994 112 9.60061 9.60061 +1994 113 7.49589 7.49589 +1994 114 8.81076 8.81076 +1994 115 9.18889 9.18889 +1994 116 8.50468 8.50468 +1994 117 10.45610 10.45610 +1994 118 11.52960 11.52960 +1994 119 11.07720 11.07720 +1994 120 10.90870 10.90870 +1994 121 11.01780 11.01780 +1994 122 13.13610 13.13610 +1994 123 12.51050 12.51050 +1994 124 11.75140 11.75140 +1994 125 11.06840 11.06840 +1994 126 10.52540 10.52540 +1994 127 11.79910 11.79910 +1994 128 12.12100 12.12100 +1994 129 11.88710 11.88710 +1994 130 10.17370 10.17370 +1994 131 9.79452 9.79452 +1994 132 8.48378 8.48378 +1994 133 6.51830 6.51830 +1994 134 7.34649 7.34649 +1994 135 9.40552 9.40552 +1994 136 9.03631 9.03631 +1994 137 10.25940 10.25940 +1994 138 11.90620 11.90620 +1994 139 11.70400 11.70400 +1994 140 8.98525 8.98525 +1994 141 8.92291 8.92291 +1994 142 11.05330 11.05330 +1994 143 11.12180 11.12180 +1994 144 10.41290 10.41290 +1994 145 12.55740 12.55740 +1994 146 11.75200 11.75200 +1994 147 10.25870 10.25870 +1994 148 10.91880 10.91880 +1994 149 10.33490 10.33490 +1994 150 7.59309 7.59309 +1994 151 7.35736 7.35736 +1994 152 6.38391 6.38391 +1994 153 5.91360 5.91360 +1994 154 5.74861 5.74861 +1994 155 5.01434 5.01434 +1994 156 5.45998 5.45998 +1994 157 5.84769 5.84769 +1994 158 5.20018 5.20018 +1994 159 9.63330 9.63330 +1994 160 11.15500 11.15500 +1994 161 12.03010 12.03010 +1994 162 10.99540 10.99540 +1994 163 9.28149 9.28149 +1994 164 8.25936 8.25936 +1994 165 6.25717 6.25717 +1994 166 6.77356 6.77356 +1994 167 7.66053 7.66053 +1994 168 6.71006 6.71006 +1994 169 9.48618 9.48618 +1994 170 9.30681 9.30681 +1994 171 10.21280 10.21280 +1994 172 8.98880 8.98880 +1994 173 6.98476 6.98476 +1994 174 7.94050 7.94050 +1994 175 9.58891 9.58891 +1994 176 9.64983 9.64983 +1994 177 7.77047 7.77047 +1994 178 5.60446 5.60446 +1994 179 4.38779 4.38779 +1994 180 3.00058 3.00058 +1994 181 6.72329 6.72329 +1994 182 6.33914 6.33914 +1994 183 2.88779 2.88779 +1994 184 3.87780 3.87780 +1994 185 7.43101 7.43101 +1994 186 6.36929 6.36929 +1994 187 6.62747 6.62747 +1994 188 6.54268 6.54268 +1994 189 3.88962 3.88962 +1994 190 7.27073 7.27073 +1994 191 8.37744 8.37744 +1994 192 6.83831 6.83831 +1994 193 3.82783 3.82783 +1994 194 3.03145 3.03145 +1994 195 6.10594 6.10594 +1994 196 8.82677 8.82677 +1994 197 10.36690 10.36690 +1994 198 9.33271 9.33271 +1994 199 6.28085 6.28085 +1994 200 7.03511 7.03511 +1994 201 7.09240 7.09240 +1994 202 7.22325 7.22325 +1994 203 7.77817 7.77817 +1994 204 5.74276 5.74276 +1994 205 8.91161 8.91161 +1994 206 9.25185 9.25185 +1994 207 8.66480 8.66480 +1994 208 8.00481 8.00481 +1994 209 7.51828 7.51828 +1994 210 6.22789 6.22789 +1994 211 6.07871 6.07871 +1994 212 6.97850 6.97850 +1994 213 9.03927 9.03927 +1994 214 10.56050 10.56050 +1994 215 7.95860 7.95860 +1994 216 7.74511 7.74511 +1994 217 7.60151 7.60151 +1994 218 7.93294 7.93294 +1994 219 8.09113 8.09113 +1994 220 7.61247 7.61247 +1994 221 5.05537 5.05537 +1994 222 4.78159 4.78159 +1994 223 5.57991 5.57991 +1994 224 6.57549 6.57549 +1994 225 7.57944 7.57944 +1994 226 8.50574 8.50574 +1994 227 6.93362 6.93362 +1994 228 6.69339 6.69339 +1994 229 6.73325 6.73325 +1994 230 6.41521 6.41521 +1994 231 7.60338 7.60338 +1994 232 8.04873 8.04873 +1994 233 6.53853 6.53853 +1994 234 7.35533 7.35533 +1994 235 9.03176 9.03176 +1994 236 9.74498 9.74498 +1994 237 8.92176 8.92176 +1994 238 7.79201 7.79201 +1994 239 8.33124 8.33124 +1994 240 7.34097 7.34097 +1994 241 8.76387 8.76387 +1994 242 7.93698 7.93698 +1994 243 7.41813 7.41813 +1994 244 8.34358 8.34358 +1994 245 7.67016 7.67016 +1994 246 7.21731 7.21731 +1994 247 8.49315 8.49315 +1994 248 7.16531 7.16531 +1994 249 8.27855 8.27855 +1994 250 4.79944 4.79944 +1994 251 5.22329 5.22329 +1994 252 6.30351 6.30351 +1994 253 8.64326 8.64326 +1994 254 8.76589 8.76589 +1994 255 7.59096 7.59096 +1994 256 8.92069 8.92069 +1994 257 9.99276 9.99276 +1994 258 9.42106 9.42106 +1994 259 9.91177 9.91177 +1994 260 10.08700 10.08700 +1994 261 9.00261 9.00261 +1994 262 9.88376 9.88376 +1994 263 8.25967 8.25967 +1994 264 7.69098 7.69098 +1994 265 5.99360 5.99360 +1994 266 8.60749 8.60749 +1994 267 9.76153 9.76153 +1994 268 8.59257 8.59257 +1994 269 7.77934 7.77934 +1994 270 8.40558 8.40558 +1994 271 8.60734 8.60734 +1994 272 8.42356 8.42356 +1994 273 7.16712 7.16712 +1994 274 6.04840 6.04840 +1994 275 6.60866 6.60866 +1994 276 7.29156 7.29156 +1994 277 9.82573 9.82573 +1994 278 9.95762 9.95762 +1994 279 10.07830 10.07830 +1994 280 11.28180 11.28180 +1994 281 10.30610 10.30610 +1994 282 9.91394 9.91394 +1994 283 8.52773 8.52773 +1994 284 8.90868 8.90868 +1994 285 8.70647 8.70647 +1994 286 7.73260 7.73260 +1994 287 7.76300 7.76300 +1994 288 9.49095 9.49095 +1994 289 10.07080 10.07080 +1994 290 10.10860 10.10860 +1994 291 8.98542 8.98542 +1994 292 8.40494 8.40494 +1994 293 9.64768 9.64768 +1994 294 9.81736 9.81736 +1994 295 10.39860 10.39860 +1994 296 10.51350 10.51350 +1994 297 12.37700 12.37700 +1994 298 12.29340 12.29340 +1994 299 12.96820 12.96820 +1994 300 12.39480 12.39480 +1994 301 12.93080 12.93080 +1994 302 13.64490 13.64490 +1994 303 12.78460 12.78460 +1994 304 11.67600 11.67600 +1994 305 12.69450 12.69450 +1994 306 11.18380 11.18380 +1994 307 12.08650 12.08650 +1994 308 12.11530 12.11530 +1994 309 13.69770 13.69770 +1994 310 14.82740 14.82740 +1994 311 15.89530 15.89530 +1994 312 13.12480 13.12480 +1994 313 10.90430 10.90430 +1994 314 11.62320 11.62320 +1994 315 11.83410 11.83410 +1994 316 14.01790 14.01790 +1994 317 13.32090 13.32090 +1994 318 15.10790 15.10790 +1994 319 12.30620 12.30620 +1994 320 11.21490 11.21490 +1994 321 11.79470 11.79470 +1994 322 10.81480 10.81480 +1994 323 8.75801 8.75801 +1994 324 11.41480 11.41480 +1994 325 12.70580 12.70580 +1994 326 11.36690 11.36690 +1994 327 11.40360 11.40360 +1994 328 10.40460 10.40460 +1994 329 12.14760 12.14760 +1994 330 13.52370 13.52370 +1994 331 13.14550 13.14550 +1994 332 13.76500 13.76500 +1994 333 14.47910 14.47910 +1994 334 14.05460 14.05460 +1994 335 13.92140 13.92140 +1994 336 13.51160 13.51160 +1994 337 14.25970 14.25970 +1994 338 14.11840 14.11840 +1994 339 15.04110 15.04110 +1994 340 16.37010 16.37010 +1994 341 16.67880 16.67880 +1994 342 15.49350 15.49350 +1994 343 15.58120 15.58120 +1994 344 15.60810 15.60810 +1994 345 14.68420 14.68420 +1994 346 15.58890 15.58890 +1994 347 15.57450 15.57450 +1994 348 17.10150 17.10150 +1994 349 16.68230 16.68230 +1994 350 16.86420 16.86420 +1994 351 16.33340 16.33340 +1994 352 17.79860 17.79860 +1994 353 17.40470 17.40470 +1994 354 15.56750 15.56750 +1994 355 15.31630 15.31630 +1994 356 13.59990 13.59990 +1994 357 12.85690 12.85690 +1994 358 15.40830 15.40830 +1994 359 14.52140 14.52140 +1994 360 14.59490 14.59490 +1994 361 15.55910 15.55910 +1994 362 17.86260 17.86260 +1994 363 18.55750 18.55750 +1994 364 17.10040 17.10040 +1994 365 16.38950 16.38950 +1995 1 16.49020 16.49020 +1995 2 13.76010 13.76010 +1995 3 13.34740 13.34740 +1995 4 14.92410 14.92410 +1995 5 15.64650 15.64650 +1995 6 15.23630 15.23630 +1995 7 15.89640 15.89640 +1995 8 15.52570 15.52570 +1995 9 16.12700 16.12700 +1995 10 15.23800 15.23800 +1995 11 14.68550 14.68550 +1995 12 15.57180 15.57180 +1995 13 16.45070 16.45070 +1995 14 17.17090 17.17090 +1995 15 17.00240 17.00240 +1995 16 17.15750 17.15750 +1995 17 17.08210 17.08210 +1995 18 17.74390 17.74390 +1995 19 17.58910 17.58910 +1995 20 15.65400 15.65400 +1995 21 15.95660 15.95660 +1995 22 17.05950 17.05950 +1995 23 15.92060 15.92060 +1995 24 16.56330 16.56330 +1995 25 16.72230 16.72230 +1995 26 17.01660 17.01660 +1995 27 18.03470 18.03470 +1995 28 15.63000 15.63000 +1995 29 17.00890 17.00890 +1995 30 16.85470 16.85470 +1995 31 17.56850 17.56850 +1995 32 17.31800 17.31800 +1995 33 15.54500 15.54500 +1995 34 16.46110 16.46110 +1995 35 15.96160 15.96160 +1995 36 17.90170 17.90170 +1995 37 16.72770 16.72770 +1995 38 18.17160 18.17160 +1995 39 17.73610 17.73610 +1995 40 17.47130 17.47130 +1995 41 17.11160 17.11160 +1995 42 15.63650 15.63650 +1995 43 17.11140 17.11140 +1995 44 16.50080 16.50080 +1995 45 16.64550 16.64550 +1995 46 16.85940 16.85940 +1995 47 16.28820 16.28820 +1995 48 18.07830 18.07830 +1995 49 17.18100 17.18100 +1995 50 16.25760 16.25760 +1995 51 16.44880 16.44880 +1995 52 16.64230 16.64230 +1995 53 17.42550 17.42550 +1995 54 16.59930 16.59930 +1995 55 15.79520 15.79520 +1995 56 17.24640 17.24640 +1995 57 17.79170 17.79170 +1995 58 18.02770 18.02770 +1995 59 17.37030 17.37030 +1995 60 15.91080 15.91080 +1995 61 15.03400 15.03400 +1995 62 15.68600 15.68600 +1995 63 15.40260 15.40260 +1995 64 16.51450 16.51450 +1995 65 16.07400 16.07400 +1995 66 16.29300 16.29300 +1995 67 16.95100 16.95100 +1995 68 17.18110 17.18110 +1995 69 18.31760 18.31760 +1995 70 15.09300 15.09300 +1995 71 17.94820 17.94820 +1995 72 13.53060 13.53060 +1995 73 13.42080 13.42080 +1995 74 13.49400 13.49400 +1995 75 11.54950 11.54950 +1995 76 11.63020 11.63020 +1995 77 13.82440 13.82440 +1995 78 15.48610 15.48610 +1995 79 15.86110 15.86110 +1995 80 14.91540 14.91540 +1995 81 16.51520 16.51520 +1995 82 16.26060 16.26060 +1995 83 15.42430 15.42430 +1995 84 16.64780 16.64780 +1995 85 16.28060 16.28060 +1995 86 17.27980 17.27980 +1995 87 16.54440 16.54440 +1995 88 16.84780 16.84780 +1995 89 16.68750 16.68750 +1995 90 16.82390 16.82390 +1995 91 16.55710 16.55710 +1995 92 16.93130 16.93130 +1995 93 16.46410 16.46410 +1995 94 17.45390 17.45390 +1995 95 16.61640 16.61640 +1995 96 15.89660 15.89660 +1995 97 15.00790 15.00790 +1995 98 15.83700 15.83700 +1995 99 15.32310 15.32310 +1995 100 15.24400 15.24400 +1995 101 15.21490 15.21490 +1995 102 13.70750 13.70750 +1995 103 13.09050 13.09050 +1995 104 12.79270 12.79270 +1995 105 13.88570 13.88570 +1995 106 13.04830 13.04830 +1995 107 12.75450 12.75450 +1995 108 12.62110 12.62110 +1995 109 14.73770 14.73770 +1995 110 15.32210 15.32210 +1995 111 15.44910 15.44910 +1995 112 14.80510 14.80510 +1995 113 13.98670 13.98670 +1995 114 14.40040 14.40040 +1995 115 15.37760 15.37760 +1995 116 14.01460 14.01460 +1995 117 12.51390 12.51390 +1995 118 9.61843 9.61843 +1995 119 8.60077 8.60077 +1995 120 13.53950 13.53950 +1995 121 15.02240 15.02240 +1995 122 14.66790 14.66790 +1995 123 13.77690 13.77690 +1995 124 14.25130 14.25130 +1995 125 13.81840 13.81840 +1995 126 11.25090 11.25090 +1995 127 9.21723 9.21723 +1995 128 8.60664 8.60664 +1995 129 7.66983 7.66983 +1995 130 8.24550 8.24550 +1995 131 10.00410 10.00410 +1995 132 11.60900 11.60900 +1995 133 11.30650 11.30650 +1995 134 11.51850 11.51850 +1995 135 12.21290 12.21290 +1995 136 9.37454 9.37454 +1995 137 9.90464 9.90464 +1995 138 9.11655 9.11655 +1995 139 9.24404 9.24404 +1995 140 8.81935 8.81935 +1995 141 11.10840 11.10840 +1995 142 10.11910 10.11910 +1995 143 7.73770 7.73770 +1995 144 7.37447 7.37447 +1995 145 8.74970 8.74970 +1995 146 12.01680 12.01680 +1995 147 12.32180 12.32180 +1995 148 10.21150 10.21150 +1995 149 9.82493 9.82493 +1995 150 9.50109 9.50109 +1995 151 9.18694 9.18694 +1995 152 7.31365 7.31365 +1995 153 5.78579 5.78579 +1995 154 4.46953 4.46953 +1995 155 5.21190 5.21190 +1995 156 6.96528 6.96528 +1995 157 7.75450 7.75450 +1995 158 7.49905 7.49905 +1995 159 9.86937 9.86937 +1995 160 10.11170 10.11170 +1995 161 8.28098 8.28098 +1995 162 10.58750 10.58750 +1995 163 9.65777 9.65777 +1995 164 9.80853 9.80853 +1995 165 9.17596 9.17596 +1995 166 8.15442 8.15442 +1995 167 6.76716 6.76716 +1995 168 7.06269 7.06269 +1995 169 6.87451 6.87451 +1995 170 6.62084 6.62084 +1995 171 7.06521 7.06521 +1995 172 7.68055 7.68055 +1995 173 6.66349 6.66349 +1995 174 5.44027 5.44027 +1995 175 7.11055 7.11055 +1995 176 8.65921 8.65921 +1995 177 9.58898 9.58898 +1995 178 9.86496 9.86496 +1995 179 10.38930 10.38930 +1995 180 7.57278 7.57278 +1995 181 5.80122 5.80122 +1995 182 6.71279 6.71279 +1995 183 8.14936 8.14936 +1995 184 8.73569 8.73569 +1995 185 7.60359 7.60359 +1995 186 7.68138 7.68138 +1995 187 6.56444 6.56444 +1995 188 6.83724 6.83724 +1995 189 7.36778 7.36778 +1995 190 6.98326 6.98326 +1995 191 7.17734 7.17734 +1995 192 8.39025 8.39025 +1995 193 10.09860 10.09860 +1995 194 9.32609 9.32609 +1995 195 8.43225 8.43225 +1995 196 6.20711 6.20711 +1995 197 4.30538 4.30538 +1995 198 2.29872 2.29872 +1995 199 5.53450 5.53450 +1995 200 7.79674 7.79674 +1995 201 6.25768 6.25768 +1995 202 5.81904 5.81904 +1995 203 7.00709 7.00709 +1995 204 6.65583 6.65583 +1995 205 5.50087 5.50087 +1995 206 4.84077 4.84077 +1995 207 5.56876 5.56876 +1995 208 6.27320 6.27320 +1995 209 6.36062 6.36062 +1995 210 5.13215 5.13215 +1995 211 6.71751 6.71751 +1995 212 5.39619 5.39619 +1995 213 5.47879 5.47879 +1995 214 6.99990 6.99990 +1995 215 6.60907 6.60907 +1995 216 6.95624 6.95624 +1995 217 7.60022 7.60022 +1995 218 6.88547 6.88547 +1995 219 8.47766 8.47766 +1995 220 9.63976 9.63976 +1995 221 7.04544 7.04544 +1995 222 6.02233 6.02233 +1995 223 5.75680 5.75680 +1995 224 6.18001 6.18001 +1995 225 6.72509 6.72509 +1995 226 5.64294 5.64294 +1995 227 5.86680 5.86680 +1995 228 7.72447 7.72447 +1995 229 8.64941 8.64941 +1995 230 7.48791 7.48791 +1995 231 7.65941 7.65941 +1995 232 8.23420 8.23420 +1995 233 8.87431 8.87431 +1995 234 5.06351 5.06351 +1995 235 7.50006 7.50006 +1995 236 6.26684 6.26684 +1995 237 4.36815 4.36815 +1995 238 4.28200 4.28200 +1995 239 5.07683 5.07683 +1995 240 6.49348 6.49348 +1995 241 6.43965 6.43965 +1995 242 8.49063 8.49063 +1995 243 10.99700 10.99700 +1995 244 8.63461 8.63461 +1995 245 6.71482 6.71482 +1995 246 6.57624 6.57624 +1995 247 10.51080 10.51080 +1995 248 12.15990 12.15990 +1995 249 7.98035 7.98035 +1995 250 4.97435 4.97435 +1995 251 4.50238 4.50238 +1995 252 5.12614 5.12614 +1995 253 6.05469 6.05469 +1995 254 6.46410 6.46410 +1995 255 6.64956 6.64956 +1995 256 8.73281 8.73281 +1995 257 8.31701 8.31701 +1995 258 9.01606 9.01606 +1995 259 9.88261 9.88261 +1995 260 9.48299 9.48299 +1995 261 8.08433 8.08433 +1995 262 7.67235 7.67235 +1995 263 8.82765 8.82765 +1995 264 10.63160 10.63160 +1995 265 10.68240 10.68240 +1995 266 9.81896 9.81896 +1995 267 11.51290 11.51290 +1995 268 12.13550 12.13550 +1995 269 12.15040 12.15040 +1995 270 11.38530 11.38530 +1995 271 12.57480 12.57480 +1995 272 13.31690 13.31690 +1995 273 12.12210 12.12210 +1995 274 11.26780 11.26780 +1995 275 10.67890 10.67890 +1995 276 11.29120 11.29120 +1995 277 11.86420 11.86420 +1995 278 10.50800 10.50800 +1995 279 10.43740 10.43740 +1995 280 9.67731 9.67731 +1995 281 11.13310 11.13310 +1995 282 8.51987 8.51987 +1995 283 8.59049 8.59049 +1995 284 10.69710 10.69710 +1995 285 9.97584 9.97584 +1995 286 9.91641 9.91641 +1995 287 9.75930 9.75930 +1995 288 9.98398 9.98398 +1995 289 10.27310 10.27310 +1995 290 9.73396 9.73396 +1995 291 9.98520 9.98520 +1995 292 9.62729 9.62729 +1995 293 11.28350 11.28350 +1995 294 9.60414 9.60414 +1995 295 9.95037 9.95037 +1995 296 11.03650 11.03650 +1995 297 11.13070 11.13070 +1995 298 11.71800 11.71800 +1995 299 12.59800 12.59800 +1995 300 13.00290 13.00290 +1995 301 13.71170 13.71170 +1995 302 13.15060 13.15060 +1995 303 13.44610 13.44610 +1995 304 13.72600 13.72600 +1995 305 10.56050 10.56050 +1995 306 10.23910 10.23910 +1995 307 11.85830 11.85830 +1995 308 11.44030 11.44030 +1995 309 11.01800 11.01800 +1995 310 11.69520 11.69520 +1995 311 12.52720 12.52720 +1995 312 13.81410 13.81410 +1995 313 14.38380 14.38380 +1995 314 12.97190 12.97190 +1995 315 13.43280 13.43280 +1995 316 12.56530 12.56530 +1995 317 11.44340 11.44340 +1995 318 12.23820 12.23820 +1995 319 12.81290 12.81290 +1995 320 13.43500 13.43500 +1995 321 14.13120 14.13120 +1995 322 13.35240 13.35240 +1995 323 12.46400 12.46400 +1995 324 10.99150 10.99150 +1995 325 10.41360 10.41360 +1995 326 11.66770 11.66770 +1995 327 11.65260 11.65260 +1995 328 16.08220 16.08220 +1995 329 13.18790 13.18790 +1995 330 10.08760 10.08760 +1995 331 10.75040 10.75040 +1995 332 12.84900 12.84900 +1995 333 15.26770 15.26770 +1995 334 16.70240 16.70240 +1995 335 19.13420 19.13420 +1995 336 20.10830 20.10830 +1995 337 17.95240 17.95240 +1995 338 18.54230 18.54230 +1995 339 18.59220 18.59220 +1995 340 19.01480 19.01480 +1995 341 17.12090 17.12090 +1995 342 17.53710 17.53710 +1995 343 15.88820 15.88820 +1995 344 14.72280 14.72280 +1995 345 15.44430 15.44430 +1995 346 16.23160 16.23160 +1995 347 17.10070 17.10070 +1995 348 17.47990 17.47990 +1995 349 16.56130 16.56130 +1995 350 15.77550 15.77550 +1995 351 15.25200 15.25200 +1995 352 14.54850 14.54850 +1995 353 14.84500 14.84500 +1995 354 16.45580 16.45580 +1995 355 16.30500 16.30500 +1995 356 16.20720 16.20720 +1995 357 16.50010 16.50010 +1995 358 14.66710 14.66710 +1995 359 12.98770 12.98770 +1995 360 13.33940 13.33940 +1995 361 14.22690 14.22690 +1995 362 15.64530 15.64530 +1995 363 16.85100 16.85100 +1995 364 16.75800 16.75800 +1995 365 15.90580 15.90580 +1996 1 16.77310 16.77310 +1996 2 16.56950 16.56950 +1996 3 18.11580 18.11580 +1996 4 17.44280 17.44280 +1996 5 17.47880 17.47880 +1996 6 17.40110 17.40110 +1996 7 17.33440 17.33440 +1996 8 17.92430 17.92430 +1996 9 17.61770 17.61770 +1996 10 17.14290 17.14290 +1996 11 17.25380 17.25380 +1996 12 15.78050 15.78050 +1996 13 17.67370 17.67370 +1996 14 17.95930 17.95930 +1996 15 17.32290 17.32290 +1996 16 18.11670 18.11670 +1996 17 18.29990 18.29990 +1996 18 17.52550 17.52550 +1996 19 17.46840 17.46840 +1996 20 16.10910 16.10910 +1996 21 16.45280 16.45280 +1996 22 16.80290 16.80290 +1996 23 16.02890 16.02890 +1996 24 14.60020 14.60020 +1996 25 13.04420 13.04420 +1996 26 16.68090 16.68090 +1996 27 17.06120 17.06120 +1996 28 17.93890 17.93890 +1996 29 18.33690 18.33690 +1996 30 17.14170 17.14170 +1996 31 18.14100 18.14100 +1996 32 18.97200 18.97200 +1996 33 19.90430 19.90430 +1996 34 19.68490 19.68490 +1996 35 16.84340 16.84340 +1996 36 17.68490 17.68490 +1996 37 17.78810 17.78810 +1996 38 16.92120 16.92120 +1996 39 17.59850 17.59850 +1996 40 16.38230 16.38230 +1996 41 16.49880 16.49880 +1996 42 17.67440 17.67440 +1996 43 20.42890 20.42890 +1996 44 20.22220 20.22220 +1996 45 18.11670 18.11670 +1996 46 16.44940 16.44940 +1996 47 16.42870 16.42870 +1996 48 17.48080 17.48080 +1996 49 18.84910 18.84910 +1996 50 19.03230 19.03230 +1996 51 15.77050 15.77050 +1996 52 15.49230 15.49230 +1996 53 15.35730 15.35730 +1996 54 13.22910 13.22910 +1996 55 14.01760 14.01760 +1996 56 14.80780 14.80780 +1996 57 15.69060 15.69060 +1996 58 17.47670 17.47670 +1996 59 17.68820 17.68820 +1996 60 17.51650 17.51650 +1996 61 16.68720 16.68720 +1996 62 17.60300 17.60300 +1996 63 16.50160 16.50160 +1996 64 15.01010 15.01010 +1996 65 13.24360 13.24360 +1996 66 13.52420 13.52420 +1996 67 14.18790 14.18790 +1996 68 14.43610 14.43610 +1996 69 14.09820 14.09820 +1996 70 12.71970 12.71970 +1996 71 12.79100 12.79100 +1996 72 13.89710 13.89710 +1996 73 13.73420 13.73420 +1996 74 13.84070 13.84070 +1996 75 10.24900 10.24900 +1996 76 13.10380 13.10380 +1996 77 15.15180 15.15180 +1996 78 15.85420 15.85420 +1996 79 16.04760 16.04760 +1996 80 14.73990 14.73990 +1996 81 15.45230 15.45230 +1996 82 13.69860 13.69860 +1996 83 12.56370 12.56370 +1996 84 12.70440 12.70440 +1996 85 13.45310 13.45310 +1996 86 13.49090 13.49090 +1996 87 13.87470 13.87470 +1996 88 13.34700 13.34700 +1996 89 14.23660 14.23660 +1996 90 13.86800 13.86800 +1996 91 15.22040 15.22040 +1996 92 14.26380 14.26380 +1996 93 14.46360 14.46360 +1996 94 14.05760 14.05760 +1996 95 13.05290 13.05290 +1996 96 12.43350 12.43350 +1996 97 11.45030 11.45030 +1996 98 10.74860 10.74860 +1996 99 12.89620 12.89620 +1996 100 14.76570 14.76570 +1996 101 15.38530 15.38530 +1996 102 15.59410 15.59410 +1996 103 16.62310 16.62310 +1996 104 16.76790 16.76790 +1996 105 15.75590 15.75590 +1996 106 15.81750 15.81750 +1996 107 15.81190 15.81190 +1996 108 14.58490 14.58490 +1996 109 14.45270 14.45270 +1996 110 16.39390 16.39390 +1996 111 15.66860 15.66860 +1996 112 12.49160 12.49160 +1996 113 12.37330 12.37330 +1996 114 11.69510 11.69510 +1996 115 10.56820 10.56820 +1996 116 10.76380 10.76380 +1996 117 11.14060 11.14060 +1996 118 12.32390 12.32390 +1996 119 13.09920 13.09920 +1996 120 13.64780 13.64780 +1996 121 10.59400 10.59400 +1996 122 8.36028 8.36028 +1996 123 9.20053 9.20053 +1996 124 9.71041 9.71041 +1996 125 9.10552 9.10552 +1996 126 9.80002 9.80002 +1996 127 9.53551 9.53551 +1996 128 11.07320 11.07320 +1996 129 11.49330 11.49330 +1996 130 9.12011 9.12011 +1996 131 8.70071 8.70071 +1996 132 11.38900 11.38900 +1996 133 10.64790 10.64790 +1996 134 12.03240 12.03240 +1996 135 12.47900 12.47900 +1996 136 10.62420 10.62420 +1996 137 9.04279 9.04279 +1996 138 7.82635 7.82635 +1996 139 8.00305 8.00305 +1996 140 9.98921 9.98921 +1996 141 12.34520 12.34520 +1996 142 14.43870 14.43870 +1996 143 10.33810 10.33810 +1996 144 10.06430 10.06430 +1996 145 10.64260 10.64260 +1996 146 5.80962 5.80962 +1996 147 7.27991 7.27991 +1996 148 6.14904 6.14904 +1996 149 7.76159 7.76159 +1996 150 8.76217 8.76217 +1996 151 9.37043 9.37043 +1996 152 9.75717 9.75717 +1996 153 4.92701 4.92701 +1996 154 4.85472 4.85472 +1996 155 4.85673 4.85673 +1996 156 5.24059 5.24059 +1996 157 5.91272 5.91272 +1996 158 8.29700 8.29700 +1996 159 7.59851 7.59851 +1996 160 9.51588 9.51588 +1996 161 7.26349 7.26349 +1996 162 5.01876 5.01876 +1996 163 3.76891 3.76891 +1996 164 4.22929 4.22929 +1996 165 4.53902 4.53902 +1996 166 4.34354 4.34354 +1996 167 5.17656 5.17656 +1996 168 4.11261 4.11261 +1996 169 4.17130 4.17130 +1996 170 3.40490 3.40490 +1996 171 5.77990 5.77990 +1996 172 8.75175 8.75175 +1996 173 9.75071 9.75071 +1996 174 10.48030 10.48030 +1996 175 10.42570 10.42570 +1996 176 10.43430 10.43430 +1996 177 8.70759 8.70759 +1996 178 8.11285 8.11285 +1996 179 7.73866 7.73866 +1996 180 7.40324 7.40324 +1996 181 9.33204 9.33204 +1996 182 7.13905 7.13905 +1996 183 4.81719 4.81719 +1996 184 3.84299 3.84299 +1996 185 4.08903 4.08903 +1996 186 5.21073 5.21073 +1996 187 5.95962 5.95962 +1996 188 6.09456 6.09456 +1996 189 5.85729 5.85729 +1996 190 6.30285 6.30285 +1996 191 7.74875 7.74875 +1996 192 8.42183 8.42183 +1996 193 8.30599 8.30599 +1996 194 7.73225 7.73225 +1996 195 8.19345 8.19345 +1996 196 9.11655 9.11655 +1996 197 9.29747 9.29747 +1996 198 9.80864 9.80864 +1996 199 9.17882 9.17882 +1996 200 8.99461 8.99461 +1996 201 8.44651 8.44651 +1996 202 9.33189 9.33189 +1996 203 11.12350 11.12350 +1996 204 9.33515 9.33515 +1996 205 8.90664 8.90664 +1996 206 8.85366 8.85366 +1996 207 8.41154 8.41154 +1996 208 6.82318 6.82318 +1996 209 5.33130 5.33130 +1996 210 6.05014 6.05014 +1996 211 7.67516 7.67516 +1996 212 5.35691 5.35691 +1996 213 7.41084 7.41084 +1996 214 11.64010 11.64010 +1996 215 9.56987 9.56987 +1996 216 9.07412 9.07412 +1996 217 9.31556 9.31556 +1996 218 8.25414 8.25414 +1996 219 6.37072 6.37072 +1996 220 6.99495 6.99495 +1996 221 8.42363 8.42363 +1996 222 7.54556 7.54556 +1996 223 6.62927 6.62927 +1996 224 5.86393 5.86393 +1996 225 6.59423 6.59423 +1996 226 6.95042 6.95042 +1996 227 7.60168 7.60168 +1996 228 7.59926 7.59926 +1996 229 7.47177 7.47177 +1996 230 6.10884 6.10884 +1996 231 6.61162 6.61162 +1996 232 9.15360 9.15360 +1996 233 8.68426 8.68426 +1996 234 6.01248 6.01248 +1996 235 4.47761 4.47761 +1996 236 6.54268 6.54268 +1996 237 7.06619 7.06619 +1996 238 9.18039 9.18039 +1996 239 8.18692 8.18692 +1996 240 7.12762 7.12762 +1996 241 7.03513 7.03513 +1996 242 5.60748 5.60748 +1996 243 4.23742 4.23742 +1996 244 5.98585 5.98585 +1996 245 7.61339 7.61339 +1996 246 9.74564 9.74564 +1996 247 10.51090 10.51090 +1996 248 10.87750 10.87750 +1996 249 9.67383 9.67383 +1996 250 9.58417 9.58417 +1996 251 8.90081 8.90081 +1996 252 10.47330 10.47330 +1996 253 9.72146 9.72146 +1996 254 9.98105 9.98105 +1996 255 11.71500 11.71500 +1996 256 10.61730 10.61730 +1996 257 12.04570 12.04570 +1996 258 10.55400 10.55400 +1996 259 9.62567 9.62567 +1996 260 10.24680 10.24680 +1996 261 11.05390 11.05390 +1996 262 11.38270 11.38270 +1996 263 8.01615 8.01615 +1996 264 9.88284 9.88284 +1996 265 10.60280 10.60280 +1996 266 11.39880 11.39880 +1996 267 11.73860 11.73860 +1996 268 11.03890 11.03890 +1996 269 10.72540 10.72540 +1996 270 10.34850 10.34850 +1996 271 11.60600 11.60600 +1996 272 8.96524 8.96524 +1996 273 9.27767 9.27767 +1996 274 10.47880 10.47880 +1996 275 13.30550 13.30550 +1996 276 11.63650 11.63650 +1996 277 10.96150 10.96150 +1996 278 10.31740 10.31740 +1996 279 10.05210 10.05210 +1996 280 11.28590 11.28590 +1996 281 10.90250 10.90250 +1996 282 8.88331 8.88331 +1996 283 8.99854 8.99854 +1996 284 10.24480 10.24480 +1996 285 12.87650 12.87650 +1996 286 12.16680 12.16680 +1996 287 9.92466 9.92466 +1996 288 9.58862 9.58862 +1996 289 10.81660 10.81660 +1996 290 10.61690 10.61690 +1996 291 11.12630 11.12630 +1996 292 10.99750 10.99750 +1996 293 11.82040 11.82040 +1996 294 12.09560 12.09560 +1996 295 12.23250 12.23250 +1996 296 10.46410 10.46410 +1996 297 10.30010 10.30010 +1996 298 10.70390 10.70390 +1996 299 11.93970 11.93970 +1996 300 13.02050 13.02050 +1996 301 11.64720 11.64720 +1996 302 11.76100 11.76100 +1996 303 13.57110 13.57110 +1996 304 11.96210 11.96210 +1996 305 10.15660 10.15660 +1996 306 9.79175 9.79175 +1996 307 9.05547 9.05547 +1996 308 8.46858 8.46858 +1996 309 9.15043 9.15043 +1996 310 10.76010 10.76010 +1996 311 12.19660 12.19660 +1996 312 10.69620 10.69620 +1996 313 10.94410 10.94410 +1996 314 10.95620 10.95620 +1996 315 11.16840 11.16840 +1996 316 11.45830 11.45830 +1996 317 10.83460 10.83460 +1996 318 11.75580 11.75580 +1996 319 15.69060 15.69060 +1996 320 13.89060 13.89060 +1996 321 13.09260 13.09260 +1996 322 10.28270 10.28270 +1996 323 14.50400 14.50400 +1996 324 11.40360 11.40360 +1996 325 11.75150 11.75150 +1996 326 12.83970 12.83970 +1996 327 12.12210 12.12210 +1996 328 11.43760 11.43760 +1996 329 12.32030 12.32030 +1996 330 14.35440 14.35440 +1996 331 12.89370 12.89370 +1996 332 12.34250 12.34250 +1996 333 13.10240 13.10240 +1996 334 12.98400 12.98400 +1996 335 15.07180 15.07180 +1996 336 15.23080 15.23080 +1996 337 15.94600 15.94600 +1996 338 14.18030 14.18030 +1996 339 12.20350 12.20350 +1996 340 11.79200 11.79200 +1996 341 10.69830 10.69830 +1996 342 11.92910 11.92910 +1996 343 13.79380 13.79380 +1996 344 14.59920 14.59920 +1996 345 15.17020 15.17020 +1996 346 14.81170 14.81170 +1996 347 12.18440 12.18440 +1996 348 15.08390 15.08390 +1996 349 14.47450 14.47450 +1996 350 11.46100 11.46100 +1996 351 11.95220 11.95220 +1996 352 14.13530 14.13530 +1996 353 14.43970 14.43970 +1996 354 15.20840 15.20840 +1996 355 12.93410 12.93410 +1996 356 13.53360 13.53360 +1996 357 14.24820 14.24820 +1996 358 15.57680 15.57680 +1996 359 15.73310 15.73310 +1996 360 15.64390 15.64390 +1996 361 15.26600 15.26600 +1996 362 16.24380 16.24380 +1996 363 14.92840 14.92840 +1996 364 15.08250 15.08250 +1996 365 18.38490 18.38490 +1996 366 17.99940 17.99940 +1997 1 18.24890 18.24890 +1997 2 18.82270 18.82270 +1997 3 16.11590 16.11590 +1997 4 10.84020 10.84020 +1997 5 12.10040 12.10040 +1997 6 15.08300 15.08300 +1997 7 16.28030 16.28030 +1997 8 15.81480 15.81480 +1997 9 14.70270 14.70270 +1997 10 15.88680 15.88680 +1997 11 14.24040 14.24040 +1997 12 13.33370 13.33370 +1997 13 14.14750 14.14750 +1997 14 14.79450 14.79450 +1997 15 14.74460 14.74460 +1997 16 15.50930 15.50930 +1997 17 13.93620 13.93620 +1997 18 12.43630 12.43630 +1997 19 13.91470 13.91470 +1997 20 13.55470 13.55470 +1997 21 14.53660 14.53660 +1997 22 15.55490 15.55490 +1997 23 16.22020 16.22020 +1997 24 16.09480 16.09480 +1997 25 16.21330 16.21330 +1997 26 15.14270 15.14270 +1997 27 14.42710 14.42710 +1997 28 14.45910 14.45910 +1997 29 15.06750 15.06750 +1997 30 15.12530 15.12530 +1997 31 14.77370 14.77370 +1997 32 15.65160 15.65160 +1997 33 15.56300 15.56300 +1997 34 14.95370 14.95370 +1997 35 15.07010 15.07010 +1997 36 15.61600 15.61600 +1997 37 16.45620 16.45620 +1997 38 16.40580 16.40580 +1997 39 16.02620 16.02620 +1997 40 16.95790 16.95790 +1997 41 16.83330 16.83330 +1997 42 17.48760 17.48760 +1997 43 16.64280 16.64280 +1997 44 15.29340 15.29340 +1997 45 15.91510 15.91510 +1997 46 16.35130 16.35130 +1997 47 16.91920 16.91920 +1997 48 16.22540 16.22540 +1997 49 15.23950 15.23950 +1997 50 18.60740 18.60740 +1997 51 18.64160 18.64160 +1997 52 19.94290 19.94290 +1997 53 19.10740 19.10740 +1997 54 20.28760 20.28760 +1997 55 19.19810 19.19810 +1997 56 17.19070 17.19070 +1997 57 15.71850 15.71850 +1997 58 16.99140 16.99140 +1997 59 15.84820 15.84820 +1997 60 19.41550 19.41550 +1997 61 19.96480 19.96480 +1997 62 18.75160 18.75160 +1997 63 18.17490 18.17490 +1997 64 17.66940 17.66940 +1997 65 16.40160 16.40160 +1997 66 16.47260 16.47260 +1997 67 17.56690 17.56690 +1997 68 16.34860 16.34860 +1997 69 11.78660 11.78660 +1997 70 12.07270 12.07270 +1997 71 13.54460 13.54460 +1997 72 13.14420 13.14420 +1997 73 14.84580 14.84580 +1997 74 15.20600 15.20600 +1997 75 12.97430 12.97430 +1997 76 13.28860 13.28860 +1997 77 12.86620 12.86620 +1997 78 13.40560 13.40560 +1997 79 15.19990 15.19990 +1997 80 14.87730 14.87730 +1997 81 13.04440 13.04440 +1997 82 12.91130 12.91130 +1997 83 12.83200 12.83200 +1997 84 12.90590 12.90590 +1997 85 13.65020 13.65020 +1997 86 12.72060 12.72060 +1997 87 12.22170 12.22170 +1997 88 12.36460 12.36460 +1997 89 13.29350 13.29350 +1997 90 12.70050 12.70050 +1997 91 12.25380 12.25380 +1997 92 12.92590 12.92590 +1997 93 13.29970 13.29970 +1997 94 14.37730 14.37730 +1997 95 16.28410 16.28410 +1997 96 16.38140 16.38140 +1997 97 15.92070 15.92070 +1997 98 14.81330 14.81330 +1997 99 11.39140 11.39140 +1997 100 11.38440 11.38440 +1997 101 11.21870 11.21870 +1997 102 11.64190 11.64190 +1997 103 10.68970 10.68970 +1997 104 10.61140 10.61140 +1997 105 10.13020 10.13020 +1997 106 9.89667 9.89667 +1997 107 11.97870 11.97870 +1997 108 10.29570 10.29570 +1997 109 7.76274 7.76274 +1997 110 8.16445 8.16445 +1997 111 8.97361 8.97361 +1997 112 9.93497 9.93497 +1997 113 8.27653 8.27653 +1997 114 9.25228 9.25228 +1997 115 10.04220 10.04220 +1997 116 10.13250 10.13250 +1997 117 11.05590 11.05590 +1997 118 13.81220 13.81220 +1997 119 11.60590 11.60590 +1997 120 10.95330 10.95330 +1997 121 10.77620 10.77620 +1997 122 10.57810 10.57810 +1997 123 9.47197 9.47197 +1997 124 10.52740 10.52740 +1997 125 11.60830 11.60830 +1997 126 9.88896 9.88896 +1997 127 10.04300 10.04300 +1997 128 10.64820 10.64820 +1997 129 10.32280 10.32280 +1997 130 10.09060 10.09060 +1997 131 10.98050 10.98050 +1997 132 10.57110 10.57110 +1997 133 10.98370 10.98370 +1997 134 11.57080 11.57080 +1997 135 10.58510 10.58510 +1997 136 9.62545 9.62545 +1997 137 10.18560 10.18560 +1997 138 10.88240 10.88240 +1997 139 11.76340 11.76340 +1997 140 12.23840 12.23840 +1997 141 11.20830 11.20830 +1997 142 11.28950 11.28950 +1997 143 12.98050 12.98050 +1997 144 13.03760 13.03760 +1997 145 12.24940 12.24940 +1997 146 12.41910 12.41910 +1997 147 10.59130 10.59130 +1997 148 9.41250 9.41250 +1997 149 10.02370 10.02370 +1997 150 11.75680 11.75680 +1997 151 9.13046 9.13046 +1997 152 7.62770 7.62770 +1997 153 6.92496 6.92496 +1997 154 7.51056 7.51056 +1997 155 8.18626 8.18626 +1997 156 6.16685 6.16685 +1997 157 6.71915 6.71915 +1997 158 6.70454 6.70454 +1997 159 7.96395 7.96395 +1997 160 10.22520 10.22520 +1997 161 9.28450 9.28450 +1997 162 8.16983 8.16983 +1997 163 7.69524 7.69524 +1997 164 6.89795 6.89795 +1997 165 6.46996 6.46996 +1997 166 8.88772 8.88772 +1997 167 10.56330 10.56330 +1997 168 11.26970 11.26970 +1997 169 6.00820 6.00820 +1997 170 5.51716 5.51716 +1997 171 8.21958 8.21958 +1997 172 8.60364 8.60364 +1997 173 7.35867 7.35867 +1997 174 7.15738 7.15738 +1997 175 5.60263 5.60263 +1997 176 5.35571 5.35571 +1997 177 5.06353 5.06353 +1997 178 4.35647 4.35647 +1997 179 4.71683 4.71683 +1997 180 7.26472 7.26472 +1997 181 8.51007 8.51007 +1997 182 9.40835 9.40835 +1997 183 8.51296 8.51296 +1997 184 7.43559 7.43559 +1997 185 5.94467 5.94467 +1997 186 5.38280 5.38280 +1997 187 4.91778 4.91778 +1997 188 6.00525 6.00525 +1997 189 8.07949 8.07949 +1997 190 9.42467 9.42467 +1997 191 5.73976 5.73976 +1997 192 4.37420 4.37420 +1997 193 6.78924 6.78924 +1997 194 5.94750 5.94750 +1997 195 5.70817 5.70817 +1997 196 5.79684 5.79684 +1997 197 5.44149 5.44149 +1997 198 7.02123 7.02123 +1997 199 5.06541 5.06541 +1997 200 5.06202 5.06202 +1997 201 5.55869 5.55869 +1997 202 4.93594 4.93594 +1997 203 6.57796 6.57796 +1997 204 7.77960 7.77960 +1997 205 6.06394 6.06394 +1997 206 5.49064 5.49064 +1997 207 5.14840 5.14840 +1997 208 5.48389 5.48389 +1997 209 5.24472 5.24472 +1997 210 6.04861 6.04861 +1997 211 7.37305 7.37305 +1997 212 6.36181 6.36181 +1997 213 4.63909 4.63909 +1997 214 5.74847 5.74847 +1997 215 4.97017 4.97017 +1997 216 5.52285 5.52285 +1997 217 5.38004 5.38004 +1997 218 5.23102 5.23102 +1997 219 5.57591 5.57591 +1997 220 5.37361 5.37361 +1997 221 7.93686 7.93686 +1997 222 9.39284 9.39284 +1997 223 9.25879 9.25879 +1997 224 8.66961 8.66961 +1997 225 6.11882 6.11882 +1997 226 6.90350 6.90350 +1997 227 8.27893 8.27893 +1997 228 9.42587 9.42587 +1997 229 9.60792 9.60792 +1997 230 8.41311 8.41311 +1997 231 7.32803 7.32803 +1997 232 5.65744 5.65744 +1997 233 4.67376 4.67376 +1997 234 6.42136 6.42136 +1997 235 8.78438 8.78438 +1997 236 8.71256 8.71256 +1997 237 8.90153 8.90153 +1997 238 9.01828 9.01828 +1997 239 7.80462 7.80462 +1997 240 6.99954 6.99954 +1997 241 8.56883 8.56883 +1997 242 8.05806 8.05806 +1997 243 7.95895 7.95895 +1997 244 7.85064 7.85064 +1997 245 9.15475 9.15475 +1997 246 7.37588 7.37588 +1997 247 6.73156 6.73156 +1997 248 4.65494 4.65494 +1997 249 5.53181 5.53181 +1997 250 7.06852 7.06852 +1997 251 9.02650 9.02650 +1997 252 9.11936 9.11936 +1997 253 10.63690 10.63690 +1997 254 9.39614 9.39614 +1997 255 7.26647 7.26647 +1997 256 6.81964 6.81964 +1997 257 9.40854 9.40854 +1997 258 7.29506 7.29506 +1997 259 8.56317 8.56317 +1997 260 10.11260 10.11260 +1997 261 8.29778 8.29778 +1997 262 8.34604 8.34604 +1997 263 8.43301 8.43301 +1997 264 8.75362 8.75362 +1997 265 10.26820 10.26820 +1997 266 8.07253 8.07253 +1997 267 7.27772 7.27772 +1997 268 8.28025 8.28025 +1997 269 9.00939 9.00939 +1997 270 11.81460 11.81460 +1997 271 10.93460 10.93460 +1997 272 10.23070 10.23070 +1997 273 9.19450 9.19450 +1997 274 10.31150 10.31150 +1997 275 10.72750 10.72750 +1997 276 11.78180 11.78180 +1997 277 9.93117 9.93117 +1997 278 8.08887 8.08887 +1997 279 7.89955 7.89955 +1997 280 9.83743 9.83743 +1997 281 10.12250 10.12250 +1997 282 11.18530 11.18530 +1997 283 13.31780 13.31780 +1997 284 12.07050 12.07050 +1997 285 13.18040 13.18040 +1997 286 12.26180 12.26180 +1997 287 11.31290 11.31290 +1997 288 10.01730 10.01730 +1997 289 10.52630 10.52630 +1997 290 10.91000 10.91000 +1997 291 8.65776 8.65776 +1997 292 9.07691 9.07691 +1997 293 8.94738 8.94738 +1997 294 9.23178 9.23178 +1997 295 11.25720 11.25720 +1997 296 10.99620 10.99620 +1997 297 11.63590 11.63590 +1997 298 11.39600 11.39600 +1997 299 11.50510 11.50510 +1997 300 10.96860 10.96860 +1997 301 12.57050 12.57050 +1997 302 13.64140 13.64140 +1997 303 14.35670 14.35670 +1997 304 14.57560 14.57560 +1997 305 13.75800 13.75800 +1997 306 13.70930 13.70930 +1997 307 12.93310 12.93310 +1997 308 12.88010 12.88010 +1997 309 11.49610 11.49610 +1997 310 13.04250 13.04250 +1997 311 12.29390 12.29390 +1997 312 8.62833 8.62833 +1997 313 9.83189 9.83189 +1997 314 10.47670 10.47670 +1997 315 12.02560 12.02560 +1997 316 14.48320 14.48320 +1997 317 13.30470 13.30470 +1997 318 13.04470 13.04470 +1997 319 14.11050 14.11050 +1997 320 12.45030 12.45030 +1997 321 11.86270 11.86270 +1997 322 12.23970 12.23970 +1997 323 12.94690 12.94690 +1997 324 11.98870 11.98870 +1997 325 11.23360 11.23360 +1997 326 13.90130 13.90130 +1997 327 15.02340 15.02340 +1997 328 13.72000 13.72000 +1997 329 14.47050 14.47050 +1997 330 15.97400 15.97400 +1997 331 15.37420 15.37420 +1997 332 16.06570 16.06570 +1997 333 14.92350 14.92350 +1997 334 15.14020 15.14020 +1997 335 14.23230 14.23230 +1997 336 17.22480 17.22480 +1997 337 14.11910 14.11910 +1997 338 12.71830 12.71830 +1997 339 12.91990 12.91990 +1997 340 13.08030 13.08030 +1997 341 12.07290 12.07290 +1997 342 11.86240 11.86240 +1997 343 13.34170 13.34170 +1997 344 13.98650 13.98650 +1997 345 12.64200 12.64200 +1997 346 14.17920 14.17920 +1997 347 15.32210 15.32210 +1997 348 16.03030 16.03030 +1997 349 16.64740 16.64740 +1997 350 18.01520 18.01520 +1997 351 16.04620 16.04620 +1997 352 17.03600 17.03600 +1997 353 18.60030 18.60030 +1997 354 18.96320 18.96320 +1997 355 16.41940 16.41940 +1997 356 18.04980 18.04980 +1997 357 19.40540 19.40540 +1997 358 16.99440 16.99440 +1997 359 15.31800 15.31800 +1997 360 14.75140 14.75140 +1997 361 16.48010 16.48010 +1997 362 14.94130 14.94130 +1997 363 14.23400 14.23400 +1997 364 14.34290 14.34290 +1997 365 15.23420 15.23420 +1998 1 17.97730 17.97730 +1998 2 17.69830 17.69830 +1998 3 16.77630 16.77630 +1998 4 17.29570 17.29570 +1998 5 17.19050 17.19050 +1998 6 17.89190 17.89190 +1998 7 16.64920 16.64920 +1998 8 14.78920 14.78920 +1998 9 12.17140 12.17140 +1998 10 13.26860 13.26860 +1998 11 15.62290 15.62290 +1998 12 15.94630 15.94630 +1998 13 17.11150 17.11150 +1998 14 16.42400 16.42400 +1998 15 16.33900 16.33900 +1998 16 15.40470 15.40470 +1998 17 17.31280 17.31280 +1998 18 16.13110 16.13110 +1998 19 18.02280 18.02280 +1998 20 15.58580 15.58580 +1998 21 16.69070 16.69070 +1998 22 16.09620 16.09620 +1998 23 17.43440 17.43440 +1998 24 18.02130 18.02130 +1998 25 19.41450 19.41450 +1998 26 19.42100 19.42100 +1998 27 19.29590 19.29590 +1998 28 19.74780 19.74780 +1998 29 20.40980 20.40980 +1998 30 21.52720 21.52720 +1998 31 20.49150 20.49150 +1998 32 20.64400 20.64400 +1998 33 20.95060 20.95060 +1998 34 21.39110 21.39110 +1998 35 22.57340 22.57340 +1998 36 21.15980 21.15980 +1998 37 20.61320 20.61320 +1998 38 21.36420 21.36420 +1998 39 20.39070 20.39070 +1998 40 19.11520 19.11520 +1998 41 18.21410 18.21410 +1998 42 18.78290 18.78290 +1998 43 18.74450 18.74450 +1998 44 20.08060 20.08060 +1998 45 20.15920 20.15920 +1998 46 20.79440 20.79440 +1998 47 19.62640 19.62640 +1998 48 18.66470 18.66470 +1998 49 18.70910 18.70910 +1998 50 19.44680 19.44680 +1998 51 19.76410 19.76410 +1998 52 18.49400 18.49400 +1998 53 17.26960 17.26960 +1998 54 14.81530 14.81530 +1998 55 13.62580 13.62580 +1998 56 15.80000 15.80000 +1998 57 16.83170 16.83170 +1998 58 18.29680 18.29680 +1998 59 17.88140 17.88140 +1998 60 16.90660 16.90660 +1998 61 17.69400 17.69400 +1998 62 16.81120 16.81120 +1998 63 16.77320 16.77320 +1998 64 17.48500 17.48500 +1998 65 18.13860 18.13860 +1998 66 18.38580 18.38580 +1998 67 18.23520 18.23520 +1998 68 18.09950 18.09950 +1998 69 17.34510 17.34510 +1998 70 17.81000 17.81000 +1998 71 17.67100 17.67100 +1998 72 17.65570 17.65570 +1998 73 16.29140 16.29140 +1998 74 13.21580 13.21580 +1998 75 14.04380 14.04380 +1998 76 14.30020 14.30020 +1998 77 15.52910 15.52910 +1998 78 15.43160 15.43160 +1998 79 15.92510 15.92510 +1998 80 17.05990 17.05990 +1998 81 16.03310 16.03310 +1998 82 17.25680 17.25680 +1998 83 17.50040 17.50040 +1998 84 15.76280 15.76280 +1998 85 16.33690 16.33690 +1998 86 16.58970 16.58970 +1998 87 17.33540 17.33540 +1998 88 15.35900 15.35900 +1998 89 16.26720 16.26720 +1998 90 16.79700 16.79700 +1998 91 12.89010 12.89010 +1998 92 12.28570 12.28570 +1998 93 14.90470 14.90470 +1998 94 12.42530 12.42530 +1998 95 11.68530 11.68530 +1998 96 13.88500 13.88500 +1998 97 14.64410 14.64410 +1998 98 16.63040 16.63040 +1998 99 15.24130 15.24130 +1998 100 13.50360 13.50360 +1998 101 15.51020 15.51020 +1998 102 15.28870 15.28870 +1998 103 15.32740 15.32740 +1998 104 14.82780 14.82780 +1998 105 12.87270 12.87270 +1998 106 12.62050 12.62050 +1998 107 13.94300 13.94300 +1998 108 11.75690 11.75690 +1998 109 11.76630 11.76630 +1998 110 13.51040 13.51040 +1998 111 14.84420 14.84420 +1998 112 15.84440 15.84440 +1998 113 17.05580 17.05580 +1998 114 13.32730 13.32730 +1998 115 14.04950 14.04950 +1998 116 15.89130 15.89130 +1998 117 16.94130 16.94130 +1998 118 14.52360 14.52360 +1998 119 13.12820 13.12820 +1998 120 12.05320 12.05320 +1998 121 13.24580 13.24580 +1998 122 11.25360 11.25360 +1998 123 11.55780 11.55780 +1998 124 10.07010 10.07010 +1998 125 9.88627 9.88627 +1998 126 12.12230 12.12230 +1998 127 14.37130 14.37130 +1998 128 11.78850 11.78850 +1998 129 11.01640 11.01640 +1998 130 10.24630 10.24630 +1998 131 10.09220 10.09220 +1998 132 10.83170 10.83170 +1998 133 8.83955 8.83955 +1998 134 7.61324 7.61324 +1998 135 8.81269 8.81269 +1998 136 11.38610 11.38610 +1998 137 9.24051 9.24051 +1998 138 9.10158 9.10158 +1998 139 9.81133 9.81133 +1998 140 13.24390 13.24390 +1998 141 13.36640 13.36640 +1998 142 12.98520 12.98520 +1998 143 12.47300 12.47300 +1998 144 12.20590 12.20590 +1998 145 11.53290 11.53290 +1998 146 9.81600 9.81600 +1998 147 7.87774 7.87774 +1998 148 9.47177 9.47177 +1998 149 10.63830 10.63830 +1998 150 11.79890 11.79890 +1998 151 8.42767 8.42767 +1998 152 10.18110 10.18110 +1998 153 8.40601 8.40601 +1998 154 6.60807 6.60807 +1998 155 7.50666 7.50666 +1998 156 6.93987 6.93987 +1998 157 11.24970 11.24970 +1998 158 14.14460 14.14460 +1998 159 14.24690 14.24690 +1998 160 12.70140 12.70140 +1998 161 7.88227 7.88227 +1998 162 8.66925 8.66925 +1998 163 12.65800 12.65800 +1998 164 14.45450 14.45450 +1998 165 9.21966 9.21966 +1998 166 6.22145 6.22145 +1998 167 9.57021 9.57021 +1998 168 10.32090 10.32090 +1998 169 8.36737 8.36737 +1998 170 5.95709 5.95709 +1998 171 6.11582 6.11582 +1998 172 7.90995 7.90995 +1998 173 10.04750 10.04750 +1998 174 9.42035 9.42035 +1998 175 11.51450 11.51450 +1998 176 12.20630 12.20630 +1998 177 9.29056 9.29056 +1998 178 6.46394 6.46394 +1998 179 6.58554 6.58554 +1998 180 7.57832 7.57832 +1998 181 11.85170 11.85170 +1998 182 12.81290 12.81290 +1998 183 7.56738 7.56738 +1998 184 7.11269 7.11269 +1998 185 6.74226 6.74226 +1998 186 5.46002 5.46002 +1998 187 9.14809 9.14809 +1998 188 10.36360 10.36360 +1998 189 11.66340 11.66340 +1998 190 12.59210 12.59210 +1998 191 12.20310 12.20310 +1998 192 9.98597 9.98597 +1998 193 8.51658 8.51658 +1998 194 9.66767 9.66767 +1998 195 9.47193 9.47193 +1998 196 9.23473 9.23473 +1998 197 9.32332 9.32332 +1998 198 7.03555 7.03555 +1998 199 6.48717 6.48717 +1998 200 6.68090 6.68090 +1998 201 8.71295 8.71295 +1998 202 10.82630 10.82630 +1998 203 12.04760 12.04760 +1998 204 9.98456 9.98456 +1998 205 8.50575 8.50575 +1998 206 9.41816 9.41816 +1998 207 10.43520 10.43520 +1998 208 10.47300 10.47300 +1998 209 9.58588 9.58588 +1998 210 12.10350 12.10350 +1998 211 10.40860 10.40860 +1998 212 10.28580 10.28580 +1998 213 9.06460 9.06460 +1998 214 6.78012 6.78012 +1998 215 4.70550 4.70550 +1998 216 6.37507 6.37507 +1998 217 7.72109 7.72109 +1998 218 9.66006 9.66006 +1998 219 7.94940 7.94940 +1998 220 6.68640 6.68640 +1998 221 9.85046 9.85046 +1998 222 12.29200 12.29200 +1998 223 10.29830 10.29830 +1998 224 8.56989 8.56989 +1998 225 8.74715 8.74715 +1998 226 7.96161 7.96161 +1998 227 7.17697 7.17697 +1998 228 6.03332 6.03332 +1998 229 7.44812 7.44812 +1998 230 5.58401 5.58401 +1998 231 6.04929 6.04929 +1998 232 4.96691 4.96691 +1998 233 6.76919 6.76919 +1998 234 6.31002 6.31002 +1998 235 9.24405 9.24405 +1998 236 10.31810 10.31810 +1998 237 11.50400 11.50400 +1998 238 11.10400 11.10400 +1998 239 11.68810 11.68810 +1998 240 9.35843 9.35843 +1998 241 7.30088 7.30088 +1998 242 5.55268 5.55268 +1998 243 6.65109 6.65109 +1998 244 8.08677 8.08677 +1998 245 8.60570 8.60570 +1998 246 7.95754 7.95754 +1998 247 7.17319 7.17319 +1998 248 10.38890 10.38890 +1998 249 8.16285 8.16285 +1998 250 8.62494 8.62494 +1998 251 7.86879 7.86879 +1998 252 7.21479 7.21479 +1998 253 9.10255 9.10255 +1998 254 8.39875 8.39875 +1998 255 8.10077 8.10077 +1998 256 9.62933 9.62933 +1998 257 11.97870 11.97870 +1998 258 12.99780 12.99780 +1998 259 13.68090 13.68090 +1998 260 10.71190 10.71190 +1998 261 10.23580 10.23580 +1998 262 10.21680 10.21680 +1998 263 10.48630 10.48630 +1998 264 10.80850 10.80850 +1998 265 10.06160 10.06160 +1998 266 9.84513 9.84513 +1998 267 10.89810 10.89810 +1998 268 10.89020 10.89020 +1998 269 13.12090 13.12090 +1998 270 11.60610 11.60610 +1998 271 11.27830 11.27830 +1998 272 12.32720 12.32720 +1998 273 11.99110 11.99110 +1998 274 10.97880 10.97880 +1998 275 13.69950 13.69950 +1998 276 11.79730 11.79730 +1998 277 11.65110 11.65110 +1998 278 11.12470 11.12470 +1998 279 10.64640 10.64640 +1998 280 12.41490 12.41490 +1998 281 13.28980 13.28980 +1998 282 13.21480 13.21480 +1998 283 12.98040 12.98040 +1998 284 13.62470 13.62470 +1998 285 11.53520 11.53520 +1998 286 12.08200 12.08200 +1998 287 12.57090 12.57090 +1998 288 10.54710 10.54710 +1998 289 10.25640 10.25640 +1998 290 10.95190 10.95190 +1998 291 11.99530 11.99530 +1998 292 14.31400 14.31400 +1998 293 11.70540 11.70540 +1998 294 9.26551 9.26551 +1998 295 10.18130 10.18130 +1998 296 10.62310 10.62310 +1998 297 11.78330 11.78330 +1998 298 13.36450 13.36450 +1998 299 13.84070 13.84070 +1998 300 15.10250 15.10250 +1998 301 14.64730 14.64730 +1998 302 12.23420 12.23420 +1998 303 11.95560 11.95560 +1998 304 12.29190 12.29190 +1998 305 12.15810 12.15810 +1998 306 11.71770 11.71770 +1998 307 13.62900 13.62900 +1998 308 12.88590 12.88590 +1998 309 13.32660 13.32660 +1998 310 14.33570 14.33570 +1998 311 13.32440 13.32440 +1998 312 14.19420 14.19420 +1998 313 14.23290 14.23290 +1998 314 14.18260 14.18260 +1998 315 14.58730 14.58730 +1998 316 12.91570 12.91570 +1998 317 11.97090 11.97090 +1998 318 12.16840 12.16840 +1998 319 12.62400 12.62400 +1998 320 13.50140 13.50140 +1998 321 14.28210 14.28210 +1998 322 14.52230 14.52230 +1998 323 14.58610 14.58610 +1998 324 13.62040 13.62040 +1998 325 14.44710 14.44710 +1998 326 13.20190 13.20190 +1998 327 14.75700 14.75700 +1998 328 14.29600 14.29600 +1998 329 13.52510 13.52510 +1998 330 11.50790 11.50790 +1998 331 10.20840 10.20840 +1998 332 11.54470 11.54470 +1998 333 16.30850 16.30850 +1998 334 14.83240 14.83240 +1998 335 14.63200 14.63200 +1998 336 14.11680 14.11680 +1998 337 12.37110 12.37110 +1998 338 14.00930 14.00930 +1998 339 14.22380 14.22380 +1998 340 13.58620 13.58620 +1998 341 13.68400 13.68400 +1998 342 12.68030 12.68030 +1998 343 12.20160 12.20160 +1998 344 12.75650 12.75650 +1998 345 13.85510 13.85510 +1998 346 15.27490 15.27490 +1998 347 15.88190 15.88190 +1998 348 15.53710 15.53710 +1998 349 16.52020 16.52020 +1998 350 16.33910 16.33910 +1998 351 16.56150 16.56150 +1998 352 17.91050 17.91050 +1998 353 16.98100 16.98100 +1998 354 18.01660 18.01660 +1998 355 18.66330 18.66330 +1998 356 19.33250 19.33250 +1998 357 17.13320 17.13320 +1998 358 14.31550 14.31550 +1998 359 14.90310 14.90310 +1998 360 14.72990 14.72990 +1998 361 15.12250 15.12250 +1998 362 16.16260 16.16260 +1998 363 16.32020 16.32020 +1998 364 18.07630 18.07630 +1998 365 18.46990 18.46990 +1999 1 18.83740 18.83740 +1999 2 17.68730 17.68730 +1999 3 18.03610 18.03610 +1999 4 19.62250 19.62250 +1999 5 20.31380 20.31380 +1999 6 20.96510 20.96510 +1999 7 19.64360 19.64360 +1999 8 19.03000 19.03000 +1999 9 16.60420 16.60420 +1999 10 16.84700 16.84700 +1999 11 16.78090 16.78090 +1999 12 17.46220 17.46220 +1999 13 17.61630 17.61630 +1999 14 18.78920 18.78920 +1999 15 19.41610 19.41610 +1999 16 19.20360 19.20360 +1999 17 18.62420 18.62420 +1999 18 19.79750 19.79750 +1999 19 20.07190 20.07190 +1999 20 20.25330 20.25330 +1999 21 18.99960 18.99960 +1999 22 18.08080 18.08080 +1999 23 18.07530 18.07530 +1999 24 17.57150 17.57150 +1999 25 16.69730 16.69730 +1999 26 17.90910 17.90910 +1999 27 17.70680 17.70680 +1999 28 17.56550 17.56550 +1999 29 16.23090 16.23090 +1999 30 18.91380 18.91380 +1999 31 16.29740 16.29740 +1999 32 14.34580 14.34580 +1999 33 15.57780 15.57780 +1999 34 16.40840 16.40840 +1999 35 17.29870 17.29870 +1999 36 16.85550 16.85550 +1999 37 17.56380 17.56380 +1999 38 17.06160 17.06160 +1999 39 17.62150 17.62150 +1999 40 17.46340 17.46340 +1999 41 16.97850 16.97850 +1999 42 16.24400 16.24400 +1999 43 16.83860 16.83860 +1999 44 16.62030 16.62030 +1999 45 16.70340 16.70340 +1999 46 16.79620 16.79620 +1999 47 18.14380 18.14380 +1999 48 18.28850 18.28850 +1999 49 17.73920 17.73920 +1999 50 18.37650 18.37650 +1999 51 18.01320 18.01320 +1999 52 16.63700 16.63700 +1999 53 18.20950 18.20950 +1999 54 16.07440 16.07440 +1999 55 15.39260 15.39260 +1999 56 16.25360 16.25360 +1999 57 18.61730 18.61730 +1999 58 16.40650 16.40650 +1999 59 15.62560 15.62560 +1999 60 15.25630 15.25630 +1999 61 15.97820 15.97820 +1999 62 16.83900 16.83900 +1999 63 15.66770 15.66770 +1999 64 16.27380 16.27380 +1999 65 17.81620 17.81620 +1999 66 17.77770 17.77770 +1999 67 16.53670 16.53670 +1999 68 15.54540 15.54540 +1999 69 15.52140 15.52140 +1999 70 17.30520 17.30520 +1999 71 16.90150 16.90150 +1999 72 15.49740 15.49740 +1999 73 16.71150 16.71150 +1999 74 17.09380 17.09380 +1999 75 17.68830 17.68830 +1999 76 16.59770 16.59770 +1999 77 16.53160 16.53160 +1999 78 16.46940 16.46940 +1999 79 17.59410 17.59410 +1999 80 17.07110 17.07110 +1999 81 16.89980 16.89980 +1999 82 17.73060 17.73060 +1999 83 16.40840 16.40840 +1999 84 16.67870 16.67870 +1999 85 16.69020 16.69020 +1999 86 16.73820 16.73820 +1999 87 17.36740 17.36740 +1999 88 17.06840 17.06840 +1999 89 16.81660 16.81660 +1999 90 16.24740 16.24740 +1999 91 15.30200 15.30200 +1999 92 14.89450 14.89450 +1999 93 14.91840 14.91840 +1999 94 15.31350 15.31350 +1999 95 15.31520 15.31520 +1999 96 17.52340 17.52340 +1999 97 18.04440 18.04440 +1999 98 14.68420 14.68420 +1999 99 13.11550 13.11550 +1999 100 11.46090 11.46090 +1999 101 11.17140 11.17140 +1999 102 11.64450 11.64450 +1999 103 13.12380 13.12380 +1999 104 13.47530 13.47530 +1999 105 12.80020 12.80020 +1999 106 8.52632 8.52632 +1999 107 9.26654 9.26654 +1999 108 11.37740 11.37740 +1999 109 12.38970 12.38970 +1999 110 12.51660 12.51660 +1999 111 12.63180 12.63180 +1999 112 12.57650 12.57650 +1999 113 13.02940 13.02940 +1999 114 13.12830 13.12830 +1999 115 12.79470 12.79470 +1999 116 12.69050 12.69050 +1999 117 12.64370 12.64370 +1999 118 11.71360 11.71360 +1999 119 11.18530 11.18530 +1999 120 13.63650 13.63650 +1999 121 13.19750 13.19750 +1999 122 11.28360 11.28360 +1999 123 8.77182 8.77182 +1999 124 10.48690 10.48690 +1999 125 7.14227 7.14227 +1999 126 9.73445 9.73445 +1999 127 10.23220 10.23220 +1999 128 9.77668 9.77668 +1999 129 11.99750 11.99750 +1999 130 10.64900 10.64900 +1999 131 10.58180 10.58180 +1999 132 11.20280 11.20280 +1999 133 14.32620 14.32620 +1999 134 15.34300 15.34300 +1999 135 15.49390 15.49390 +1999 136 12.87280 12.87280 +1999 137 9.80537 9.80537 +1999 138 8.87742 8.87742 +1999 139 8.11751 8.11751 +1999 140 8.00239 8.00239 +1999 141 7.72499 7.72499 +1999 142 7.73735 7.73735 +1999 143 8.53686 8.53686 +1999 144 9.00885 9.00885 +1999 145 11.09150 11.09150 +1999 146 13.62330 13.62330 +1999 147 14.22510 14.22510 +1999 148 14.17590 14.17590 +1999 149 13.78760 13.78760 +1999 150 13.07470 13.07470 +1999 151 12.46580 12.46580 +1999 152 12.32230 12.32230 +1999 153 10.11780 10.11780 +1999 154 9.26377 9.26377 +1999 155 9.39518 9.39518 +1999 156 10.36150 10.36150 +1999 157 8.89184 8.89184 +1999 158 9.41574 9.41574 +1999 159 9.22084 9.22084 +1999 160 7.49181 7.49181 +1999 161 7.68029 7.68029 +1999 162 10.76430 10.76430 +1999 163 11.88050 11.88050 +1999 164 10.78120 10.78120 +1999 165 12.07590 12.07590 +1999 166 10.67790 10.67790 +1999 167 9.23876 9.23876 +1999 168 7.34039 7.34039 +1999 169 6.66034 6.66034 +1999 170 6.08939 6.08939 +1999 171 6.81296 6.81296 +1999 172 6.86873 6.86873 +1999 173 5.42043 5.42043 +1999 174 5.93104 5.93104 +1999 175 5.53132 5.53132 +1999 176 6.52190 6.52190 +1999 177 6.45148 6.45148 +1999 178 5.49390 5.49390 +1999 179 5.60897 5.60897 +1999 180 4.54351 4.54351 +1999 181 5.93003 5.93003 +1999 182 8.67612 8.67612 +1999 183 11.48940 11.48940 +1999 184 7.13412 7.13412 +1999 185 6.58225 6.58225 +1999 186 7.01797 7.01797 +1999 187 9.59135 9.59135 +1999 188 8.65482 8.65482 +1999 189 5.81383 5.81383 +1999 190 5.44884 5.44884 +1999 191 4.86497 4.86497 +1999 192 5.81832 5.81832 +1999 193 7.69501 7.69501 +1999 194 7.63720 7.63720 +1999 195 6.90313 6.90313 +1999 196 10.10220 10.10220 +1999 197 12.18910 12.18910 +1999 198 11.50010 11.50010 +1999 199 10.69700 10.69700 +1999 200 9.55297 9.55297 +1999 201 8.50666 8.50666 +1999 202 8.70573 8.70573 +1999 203 7.29360 7.29360 +1999 204 7.46422 7.46422 +1999 205 6.46286 6.46286 +1999 206 7.61773 7.61773 +1999 207 4.66575 4.66575 +1999 208 4.87982 4.87982 +1999 209 5.05624 5.05624 +1999 210 5.51507 5.51507 +1999 211 5.46813 5.46813 +1999 212 4.74082 4.74082 +1999 213 6.06560 6.06560 +1999 214 9.23171 9.23171 +1999 215 6.82489 6.82489 +1999 216 7.28934 7.28934 +1999 217 7.14365 7.14365 +1999 218 6.22966 6.22966 +1999 219 6.31692 6.31692 +1999 220 6.78076 6.78076 +1999 221 6.71206 6.71206 +1999 222 7.32706 7.32706 +1999 223 8.36887 8.36887 +1999 224 7.95901 7.95901 +1999 225 6.94288 6.94288 +1999 226 9.46506 9.46506 +1999 227 9.75593 9.75593 +1999 228 6.75134 6.75134 +1999 229 5.01855 5.01855 +1999 230 5.11005 5.11005 +1999 231 7.18376 7.18376 +1999 232 8.35491 8.35491 +1999 233 7.63616 7.63616 +1999 234 6.84997 6.84997 +1999 235 8.07754 8.07754 +1999 236 9.52635 9.52635 +1999 237 8.51323 8.51323 +1999 238 7.85510 7.85510 +1999 239 7.19560 7.19560 +1999 240 7.50876 7.50876 +1999 241 8.42348 8.42348 +1999 242 9.17925 9.17925 +1999 243 6.18656 6.18656 +1999 244 9.05256 9.05256 +1999 245 8.93423 8.93423 +1999 246 8.98573 8.98573 +1999 247 9.11739 9.11739 +1999 248 9.86074 9.86074 +1999 249 11.90050 11.90050 +1999 250 10.62430 10.62430 +1999 251 7.59530 7.59530 +1999 252 7.17074 7.17074 +1999 253 8.06387 8.06387 +1999 254 10.12360 10.12360 +1999 255 11.30820 11.30820 +1999 256 12.81930 12.81930 +1999 257 10.80910 10.80910 +1999 258 10.04910 10.04910 +1999 259 10.07150 10.07150 +1999 260 9.74118 9.74118 +1999 261 9.70729 9.70729 +1999 262 9.78828 9.78828 +1999 263 7.97730 7.97730 +1999 264 7.81720 7.81720 +1999 265 8.59751 8.59751 +1999 266 8.75537 8.75537 +1999 267 8.67656 8.67656 +1999 268 9.54615 9.54615 +1999 269 9.19991 9.19991 +1999 270 7.87432 7.87432 +1999 271 10.29100 10.29100 +1999 272 10.89900 10.89900 +1999 273 10.93620 10.93620 +1999 274 10.45130 10.45130 +1999 275 11.00740 11.00740 +1999 276 9.87753 9.87753 +1999 277 12.01930 12.01930 +1999 278 11.80420 11.80420 +1999 279 13.13050 13.13050 +1999 280 12.46480 12.46480 +1999 281 13.35310 13.35310 +1999 282 13.17640 13.17640 +1999 283 14.70140 14.70140 +1999 284 12.78430 12.78430 +1999 285 12.94150 12.94150 +1999 286 9.46598 9.46598 +1999 287 7.49546 7.49546 +1999 288 8.85215 8.85215 +1999 289 9.86957 9.86957 +1999 290 9.54004 9.54004 +1999 291 11.40590 11.40590 +1999 292 11.64470 11.64470 +1999 293 12.02620 12.02620 +1999 294 11.71070 11.71070 +1999 295 12.08220 12.08220 +1999 296 11.93110 11.93110 +1999 297 10.80300 10.80300 +1999 298 11.83460 11.83460 +1999 299 12.35010 12.35010 +1999 300 13.09080 13.09080 +1999 301 13.88440 13.88440 +1999 302 13.61290 13.61290 +1999 303 13.99490 13.99490 +1999 304 13.49960 13.49960 +1999 305 13.57460 13.57460 +1999 306 13.93660 13.93660 +1999 307 12.97470 12.97470 +1999 308 14.27600 14.27600 +1999 309 14.79920 14.79920 +1999 310 14.52310 14.52310 +1999 311 14.81430 14.81430 +1999 312 15.70650 15.70650 +1999 313 15.86180 15.86180 +1999 314 15.17850 15.17850 +1999 315 12.28700 12.28700 +1999 316 11.32130 11.32130 +1999 317 12.38180 12.38180 +1999 318 13.07450 13.07450 +1999 319 13.62320 13.62320 +1999 320 13.70610 13.70610 +1999 321 13.20430 13.20430 +1999 322 13.60750 13.60750 +1999 323 11.40060 11.40060 +1999 324 9.91589 9.91589 +1999 325 10.49620 10.49620 +1999 326 12.12020 12.12020 +1999 327 11.97070 11.97070 +1999 328 14.59370 14.59370 +1999 329 13.71460 13.71460 +1999 330 13.97860 13.97860 +1999 331 12.18550 12.18550 +1999 332 11.55120 11.55120 +1999 333 12.10080 12.10080 +1999 334 12.90610 12.90610 +1999 335 13.55730 13.55730 +1999 336 15.05800 15.05800 +1999 337 16.06340 16.06340 +1999 338 16.84990 16.84990 +1999 339 16.23320 16.23320 +1999 340 14.00070 14.00070 +1999 341 12.41670 12.41670 +1999 342 13.39910 13.39910 +1999 343 14.37720 14.37720 +1999 344 14.00630 14.00630 +1999 345 15.52070 15.52070 +1999 346 15.15050 15.15050 +1999 347 11.64960 11.64960 +1999 348 12.33690 12.33690 +1999 349 13.41940 13.41940 +1999 350 14.22850 14.22850 +1999 351 15.12800 15.12800 +1999 352 15.56590 15.56590 +1999 353 16.20410 16.20410 +1999 354 13.02140 13.02140 +1999 355 15.24240 15.24240 +1999 356 14.58070 14.58070 +1999 357 14.87820 14.87820 +1999 358 12.79710 12.79710 +1999 359 11.96710 11.96710 +1999 360 12.14130 12.14130 +1999 361 12.92890 12.92890 +1999 362 13.84870 13.84870 +1999 363 14.45940 14.45940 +1999 364 13.79810 13.79810 +1999 365 15.83350 15.83350 +2000 1 16.78660 16.78660 +2000 2 13.43360 13.43360 +2000 3 12.25590 12.25590 +2000 4 14.60990 14.60990 +2000 5 16.29810 16.29810 +2000 6 15.74860 15.74860 +2000 7 14.80580 14.80580 +2000 8 14.63450 14.63450 +2000 9 14.90320 14.90320 +2000 10 13.30160 13.30160 +2000 11 13.11090 13.11090 +2000 12 14.23960 14.23960 +2000 13 16.45680 16.45680 +2000 14 16.65820 16.65820 +2000 15 15.41780 15.41780 +2000 16 16.68290 16.68290 +2000 17 16.94870 16.94870 +2000 18 16.79140 16.79140 +2000 19 16.87910 16.87910 +2000 20 17.43050 17.43050 +2000 21 18.63010 18.63010 +2000 22 18.89700 18.89700 +2000 23 18.43520 18.43520 +2000 24 16.60850 16.60850 +2000 25 15.20090 15.20090 +2000 26 14.60210 14.60210 +2000 27 15.41820 15.41820 +2000 28 15.41180 15.41180 +2000 29 16.62380 16.62380 +2000 30 14.82780 14.82780 +2000 31 13.80790 13.80790 +2000 32 14.01410 14.01410 +2000 33 13.53840 13.53840 +2000 34 14.01970 14.01970 +2000 35 17.47780 17.47780 +2000 36 16.81580 16.81580 +2000 37 18.48740 18.48740 +2000 38 17.62720 17.62720 +2000 39 18.02790 18.02790 +2000 40 19.06350 19.06350 +2000 41 17.22760 17.22760 +2000 42 16.46110 16.46110 +2000 43 15.92080 15.92080 +2000 44 17.41660 17.41660 +2000 45 17.96640 17.96640 +2000 46 16.17660 16.17660 +2000 47 18.19250 18.19250 +2000 48 17.10820 17.10820 +2000 49 16.65180 16.65180 +2000 50 16.80770 16.80770 +2000 51 17.03110 17.03110 +2000 52 16.28870 16.28870 +2000 53 15.31060 15.31060 +2000 54 15.70070 15.70070 +2000 55 17.26550 17.26550 +2000 56 17.86490 17.86490 +2000 57 17.86160 17.86160 +2000 58 18.78350 18.78350 +2000 59 17.88400 17.88400 +2000 60 17.56490 17.56490 +2000 61 16.57390 16.57390 +2000 62 17.06790 17.06790 +2000 63 16.47470 16.47470 +2000 64 18.39710 18.39710 +2000 65 18.88440 18.88440 +2000 66 18.22330 18.22330 +2000 67 16.80100 16.80100 +2000 68 16.83890 16.83890 +2000 69 16.57700 16.57700 +2000 70 15.00300 15.00300 +2000 71 15.88580 15.88580 +2000 72 14.79260 14.79260 +2000 73 13.67010 13.67010 +2000 74 14.09420 14.09420 +2000 75 14.18830 14.18830 +2000 76 15.12270 15.12270 +2000 77 14.08630 14.08630 +2000 78 14.03500 14.03500 +2000 79 15.74500 15.74500 +2000 80 15.97640 15.97640 +2000 81 11.73530 11.73530 +2000 82 11.34230 11.34230 +2000 83 13.11960 13.11960 +2000 84 14.40450 14.40450 +2000 85 13.72120 13.72120 +2000 86 14.56690 14.56690 +2000 87 13.70030 13.70030 +2000 88 14.57810 14.57810 +2000 89 13.42940 13.42940 +2000 90 14.09080 14.09080 +2000 91 15.30880 15.30880 +2000 92 14.75750 14.75750 +2000 93 14.69370 14.69370 +2000 94 13.35820 13.35820 +2000 95 15.70660 15.70660 +2000 96 16.31120 16.31120 +2000 97 16.33680 16.33680 +2000 98 14.18080 14.18080 +2000 99 13.72350 13.72350 +2000 100 13.52510 13.52510 +2000 101 13.08280 13.08280 +2000 102 12.75930 12.75930 +2000 103 11.91930 11.91930 +2000 104 11.95610 11.95610 +2000 105 12.09470 12.09470 +2000 106 13.97470 13.97470 +2000 107 14.36790 14.36790 +2000 108 14.47080 14.47080 +2000 109 14.54400 14.54400 +2000 110 15.29540 15.29540 +2000 111 14.21380 14.21380 +2000 112 13.24430 13.24430 +2000 113 11.26880 11.26880 +2000 114 11.22420 11.22420 +2000 115 9.40359 9.40359 +2000 116 9.99461 9.99461 +2000 117 11.38160 11.38160 +2000 118 11.84340 11.84340 +2000 119 9.90623 9.90623 +2000 120 9.68597 9.68597 +2000 121 9.97802 9.97802 +2000 122 11.20210 11.20210 +2000 123 11.71130 11.71130 +2000 124 11.59230 11.59230 +2000 125 12.25120 12.25120 +2000 126 11.24960 11.24960 +2000 127 14.02620 14.02620 +2000 128 12.31640 12.31640 +2000 129 10.01730 10.01730 +2000 130 11.37070 11.37070 +2000 131 12.34150 12.34150 +2000 132 14.71820 14.71820 +2000 133 15.29190 15.29190 +2000 134 11.89210 11.89210 +2000 135 10.85370 10.85370 +2000 136 11.18720 11.18720 +2000 137 8.94510 8.94510 +2000 138 9.55978 9.55978 +2000 139 10.53340 10.53340 +2000 140 11.60310 11.60310 +2000 141 11.76660 11.76660 +2000 142 10.01630 10.01630 +2000 143 9.90293 9.90293 +2000 144 9.95349 9.95349 +2000 145 9.44983 9.44983 +2000 146 8.30538 8.30538 +2000 147 7.94522 7.94522 +2000 148 7.73766 7.73766 +2000 149 8.72017 8.72017 +2000 150 11.10890 11.10890 +2000 151 11.22360 11.22360 +2000 152 11.19500 11.19500 +2000 153 10.00820 10.00820 +2000 154 11.07510 11.07510 +2000 155 9.19816 9.19816 +2000 156 9.56178 9.56178 +2000 157 8.92674 8.92674 +2000 158 8.67472 8.67472 +2000 159 7.66454 7.66454 +2000 160 5.76638 5.76638 +2000 161 7.47375 7.47375 +2000 162 9.02927 9.02927 +2000 163 6.07147 6.07147 +2000 164 4.18544 4.18544 +2000 165 5.44766 5.44766 +2000 166 5.66383 5.66383 +2000 167 6.32234 6.32234 +2000 168 8.84367 8.84367 +2000 169 10.71730 10.71730 +2000 170 8.52628 8.52628 +2000 171 7.90499 7.90499 +2000 172 7.47629 7.47629 +2000 173 6.41833 6.41833 +2000 174 7.01148 7.01148 +2000 175 9.27124 9.27124 +2000 176 10.74510 10.74510 +2000 177 10.79600 10.79600 +2000 178 10.55720 10.55720 +2000 179 10.05330 10.05330 +2000 180 10.81530 10.81530 +2000 181 10.57900 10.57900 +2000 182 9.01924 9.01924 +2000 183 10.36680 10.36680 +2000 184 10.68510 10.68510 +2000 185 10.42860 10.42860 +2000 186 9.72539 9.72539 +2000 187 9.82498 9.82498 +2000 188 9.38280 9.38280 +2000 189 8.51230 8.51230 +2000 190 7.39323 7.39323 +2000 191 6.42160 6.42160 +2000 192 5.21108 5.21108 +2000 193 5.51833 5.51833 +2000 194 8.19475 8.19475 +2000 195 9.39445 9.39445 +2000 196 9.12839 9.12839 +2000 197 9.27437 9.27437 +2000 198 8.85677 8.85677 +2000 199 8.88293 8.88293 +2000 200 10.18090 10.18090 +2000 201 11.42090 11.42090 +2000 202 11.07790 11.07790 +2000 203 9.82739 9.82739 +2000 204 8.56185 8.56185 +2000 205 7.73597 7.73597 +2000 206 9.19752 9.19752 +2000 207 10.55410 10.55410 +2000 208 11.02970 11.02970 +2000 209 9.87030 9.87030 +2000 210 7.59583 7.59583 +2000 211 6.47811 6.47811 +2000 212 8.17251 8.17251 +2000 213 7.20905 7.20905 +2000 214 5.60633 5.60633 +2000 215 5.30025 5.30025 +2000 216 6.67567 6.67567 +2000 217 7.35862 7.35862 +2000 218 7.68742 7.68742 +2000 219 6.95808 6.95808 +2000 220 7.34496 7.34496 +2000 221 7.69781 7.69781 +2000 222 8.34834 8.34834 +2000 223 9.78413 9.78413 +2000 224 7.89916 7.89916 +2000 225 6.66949 6.66949 +2000 226 7.97179 7.97179 +2000 227 6.29739 6.29739 +2000 228 6.32890 6.32890 +2000 229 8.25052 8.25052 +2000 230 10.31400 10.31400 +2000 231 8.03403 8.03403 +2000 232 8.90866 8.90866 +2000 233 8.02174 8.02174 +2000 234 6.76754 6.76754 +2000 235 5.59529 5.59529 +2000 236 5.14866 5.14866 +2000 237 6.53623 6.53623 +2000 238 9.27257 9.27257 +2000 239 10.39560 10.39560 +2000 240 9.50800 9.50800 +2000 241 9.56777 9.56777 +2000 242 8.71314 8.71314 +2000 243 9.15852 9.15852 +2000 244 8.40430 8.40430 +2000 245 8.34065 8.34065 +2000 246 7.81011 7.81011 +2000 247 8.19763 8.19763 +2000 248 7.98111 7.98111 +2000 249 10.11160 10.11160 +2000 250 11.55540 11.55540 +2000 251 12.08650 12.08650 +2000 252 12.43840 12.43840 +2000 253 10.06720 10.06720 +2000 254 8.52553 8.52553 +2000 255 7.83729 7.83729 +2000 256 7.96019 7.96019 +2000 257 8.13705 8.13705 +2000 258 7.65860 7.65860 +2000 259 7.66843 7.66843 +2000 260 8.48544 8.48544 +2000 261 8.46843 8.46843 +2000 262 10.10770 10.10770 +2000 263 12.52960 12.52960 +2000 264 13.09580 13.09580 +2000 265 10.90650 10.90650 +2000 266 10.99300 10.99300 +2000 267 11.13600 11.13600 +2000 268 8.04219 8.04219 +2000 269 6.35929 6.35929 +2000 270 6.97045 6.97045 +2000 271 7.85675 7.85675 +2000 272 9.36475 9.36475 +2000 273 12.28310 12.28310 +2000 274 12.93580 12.93580 +2000 275 12.84080 12.84080 +2000 276 10.48900 10.48900 +2000 277 10.07270 10.07270 +2000 278 9.95243 9.95243 +2000 279 11.16610 11.16610 +2000 280 12.77540 12.77540 +2000 281 13.28200 13.28200 +2000 282 12.31210 12.31210 +2000 283 9.92551 9.92551 +2000 284 9.49207 9.49207 +2000 285 8.20832 8.20832 +2000 286 10.09430 10.09430 +2000 287 10.00380 10.00380 +2000 288 10.31170 10.31170 +2000 289 12.52990 12.52990 +2000 290 10.34820 10.34820 +2000 291 8.95364 8.95364 +2000 292 8.18260 8.18260 +2000 293 9.71545 9.71545 +2000 294 10.39960 10.39960 +2000 295 11.29370 11.29370 +2000 296 12.50770 12.50770 +2000 297 12.22690 12.22690 +2000 298 12.51000 12.51000 +2000 299 13.56920 13.56920 +2000 300 12.50950 12.50950 +2000 301 12.59830 12.59830 +2000 302 13.42450 13.42450 +2000 303 14.08800 14.08800 +2000 304 11.88030 11.88030 +2000 305 12.66190 12.66190 +2000 306 11.80780 11.80780 +2000 307 10.69890 10.69890 +2000 308 9.30823 9.30823 +2000 309 10.52630 10.52630 +2000 310 13.24030 13.24030 +2000 311 12.03760 12.03760 +2000 312 10.40100 10.40100 +2000 313 10.12470 10.12470 +2000 314 9.86369 9.86369 +2000 315 10.39260 10.39260 +2000 316 10.78490 10.78490 +2000 317 11.39680 11.39680 +2000 318 11.82150 11.82150 +2000 319 11.33210 11.33210 +2000 320 10.43660 10.43660 +2000 321 12.47000 12.47000 +2000 322 10.75470 10.75470 +2000 323 10.33760 10.33760 +2000 324 9.61685 9.61685 +2000 325 12.41890 12.41890 +2000 326 12.80190 12.80190 +2000 327 12.90550 12.90550 +2000 328 12.20850 12.20850 +2000 329 12.60340 12.60340 +2000 330 12.06410 12.06410 +2000 331 12.01280 12.01280 +2000 332 11.08140 11.08140 +2000 333 11.46230 11.46230 +2000 334 13.95000 13.95000 +2000 335 13.08320 13.08320 +2000 336 14.34520 14.34520 +2000 337 14.25490 14.25490 +2000 338 12.27080 12.27080 +2000 339 13.74210 13.74210 +2000 340 13.86360 13.86360 +2000 341 14.21630 14.21630 +2000 342 15.39890 15.39890 +2000 343 14.58130 14.58130 +2000 344 13.92470 13.92470 +2000 345 13.49140 13.49140 +2000 346 13.38980 13.38980 +2000 347 14.90440 14.90440 +2000 348 15.45830 15.45830 +2000 349 15.23590 15.23590 +2000 350 15.51740 15.51740 +2000 351 15.82050 15.82050 +2000 352 16.44280 16.44280 +2000 353 15.32180 15.32180 +2000 354 15.32000 15.32000 +2000 355 16.76640 16.76640 +2000 356 15.25840 15.25840 +2000 357 14.99040 14.99040 +2000 358 16.56000 16.56000 +2000 359 18.34240 18.34240 +2000 360 18.60250 18.60250 +2000 361 18.82670 18.82670 +2000 362 18.52680 18.52680 +2000 363 16.95190 16.95190 +2000 364 14.44110 14.44110 +2000 365 13.14100 13.14100 +2000 366 12.37560 12.37560 +2001 1 13.32200 13.32200 +2001 2 14.25020 14.25020 +2001 3 15.96270 15.96270 +2001 4 16.46510 16.46510 +2001 5 16.76540 16.76540 +2001 6 16.76480 16.76480 +2001 7 16.37040 16.37040 +2001 8 16.26270 16.26270 +2001 9 15.77900 15.77900 +2001 10 15.39320 15.39320 +2001 11 16.13440 16.13440 +2001 12 16.42000 16.42000 +2001 13 15.94860 15.94860 +2001 14 13.92510 13.92510 +2001 15 15.16110 15.16110 +2001 16 14.23420 14.23420 +2001 17 15.37980 15.37980 +2001 18 16.16220 16.16220 +2001 19 15.74890 15.74890 +2001 20 14.74150 14.74150 +2001 21 17.20630 17.20630 +2001 22 17.40810 17.40810 +2001 23 17.21010 17.21010 +2001 24 18.91800 18.91800 +2001 25 16.38360 16.38360 +2001 26 13.67950 13.67950 +2001 27 14.07540 14.07540 +2001 28 15.18080 15.18080 +2001 29 16.51830 16.51830 +2001 30 15.46330 15.46330 +2001 31 17.45910 17.45910 +2001 32 16.99650 16.99650 +2001 33 16.50610 16.50610 +2001 34 16.89890 16.89890 +2001 35 16.94300 16.94300 +2001 36 18.11260 18.11260 +2001 37 13.91600 13.91600 +2001 38 14.78910 14.78910 +2001 39 16.56790 16.56790 +2001 40 17.75840 17.75840 +2001 41 16.68940 16.68940 +2001 42 16.43520 16.43520 +2001 43 18.35130 18.35130 +2001 44 18.33870 18.33870 +2001 45 19.83710 19.83710 +2001 46 19.75780 19.75780 +2001 47 18.23740 18.23740 +2001 48 18.71970 18.71970 +2001 49 18.54290 18.54290 +2001 50 18.32060 18.32060 +2001 51 19.65840 19.65840 +2001 52 18.94820 18.94820 +2001 53 16.22070 16.22070 +2001 54 16.58510 16.58510 +2001 55 17.85990 17.85990 +2001 56 17.93810 17.93810 +2001 57 17.01940 17.01940 +2001 58 17.69130 17.69130 +2001 59 16.58690 16.58690 +2001 60 16.44630 16.44630 +2001 61 16.90910 16.90910 +2001 62 16.08500 16.08500 +2001 63 15.71470 15.71470 +2001 64 15.01840 15.01840 +2001 65 14.77480 14.77480 +2001 66 15.70300 15.70300 +2001 67 15.03570 15.03570 +2001 68 13.22220 13.22220 +2001 69 11.96810 11.96810 +2001 70 13.31480 13.31480 +2001 71 14.61620 14.61620 +2001 72 15.82250 15.82250 +2001 73 15.10250 15.10250 +2001 74 14.17580 14.17580 +2001 75 14.03110 14.03110 +2001 76 13.46250 13.46250 +2001 77 13.87530 13.87530 +2001 78 13.81230 13.81230 +2001 79 13.79590 13.79590 +2001 80 14.41230 14.41230 +2001 81 14.49130 14.49130 +2001 82 14.78490 14.78490 +2001 83 15.01210 15.01210 +2001 84 15.16190 15.16190 +2001 85 15.45210 15.45210 +2001 86 16.07410 16.07410 +2001 87 15.12480 15.12480 +2001 88 12.59160 12.59160 +2001 89 12.30370 12.30370 +2001 90 12.35010 12.35010 +2001 91 14.58740 14.58740 +2001 92 16.22390 16.22390 +2001 93 12.30580 12.30580 +2001 94 12.38140 12.38140 +2001 95 13.65970 13.65970 +2001 96 13.76290 13.76290 +2001 97 11.73770 11.73770 +2001 98 11.70470 11.70470 +2001 99 12.76220 12.76220 +2001 100 14.13660 14.13660 +2001 101 13.96340 13.96340 +2001 102 16.78820 16.78820 +2001 103 11.77190 11.77190 +2001 104 11.66250 11.66250 +2001 105 12.04010 12.04010 +2001 106 11.97630 11.97630 +2001 107 12.55100 12.55100 +2001 108 13.25750 13.25750 +2001 109 13.99600 13.99600 +2001 110 13.83320 13.83320 +2001 111 12.73800 12.73800 +2001 112 11.36840 11.36840 +2001 113 11.11180 11.11180 +2001 114 9.67802 9.67802 +2001 115 9.76283 9.76283 +2001 116 9.21707 9.21707 +2001 117 10.95430 10.95430 +2001 118 12.70920 12.70920 +2001 119 12.99510 12.99510 +2001 120 13.49220 13.49220 +2001 121 12.84390 12.84390 +2001 122 15.52180 15.52180 +2001 123 14.42000 14.42000 +2001 124 14.45130 14.45130 +2001 125 14.79610 14.79610 +2001 126 13.63360 13.63360 +2001 127 13.20730 13.20730 +2001 128 11.64770 11.64770 +2001 129 12.01160 12.01160 +2001 130 14.58120 14.58120 +2001 131 14.41790 14.41790 +2001 132 13.96610 13.96610 +2001 133 12.36570 12.36570 +2001 134 10.74970 10.74970 +2001 135 7.74871 7.74871 +2001 136 7.83122 7.83122 +2001 137 10.93650 10.93650 +2001 138 11.80420 11.80420 +2001 139 10.49060 10.49060 +2001 140 11.84320 11.84320 +2001 141 9.22036 9.22036 +2001 142 7.81009 7.81009 +2001 143 10.76660 10.76660 +2001 144 11.23670 11.23670 +2001 145 8.62342 8.62342 +2001 146 8.43491 8.43491 +2001 147 6.52910 6.52910 +2001 148 5.28577 5.28577 +2001 149 5.12946 5.12946 +2001 150 6.22534 6.22534 +2001 151 5.56810 5.56810 +2001 152 5.44202 5.44202 +2001 153 6.00491 6.00491 +2001 154 5.52322 5.52322 +2001 155 5.70552 5.70552 +2001 156 6.01656 6.01656 +2001 157 7.10979 7.10979 +2001 158 8.21766 8.21766 +2001 159 8.08437 8.08437 +2001 160 10.82610 10.82610 +2001 161 5.02458 5.02458 +2001 162 4.31306 4.31306 +2001 163 5.18992 5.18992 +2001 164 8.14864 8.14864 +2001 165 11.82450 11.82450 +2001 166 12.85670 12.85670 +2001 167 11.31600 11.31600 +2001 168 8.36752 8.36752 +2001 169 5.65132 5.65132 +2001 170 5.47979 5.47979 +2001 171 5.76755 5.76755 +2001 172 8.41052 8.41052 +2001 173 9.99205 9.99205 +2001 174 8.47721 8.47721 +2001 175 6.65634 6.65634 +2001 176 8.59616 8.59616 +2001 177 8.88903 8.88903 +2001 178 8.03155 8.03155 +2001 179 7.27513 7.27513 +2001 180 6.66737 6.66737 +2001 181 4.23090 4.23090 +2001 182 4.65087 4.65087 +2001 183 4.28413 4.28413 +2001 184 3.65937 3.65937 +2001 185 6.13632 6.13632 +2001 186 7.84894 7.84894 +2001 187 7.59274 7.59274 +2001 188 7.64047 7.64047 +2001 189 6.22427 6.22427 +2001 190 4.58967 4.58967 +2001 191 3.56711 3.56711 +2001 192 3.74249 3.74249 +2001 193 3.99594 3.99594 +2001 194 4.85627 4.85627 +2001 195 5.49721 5.49721 +2001 196 8.30939 8.30939 +2001 197 8.59966 8.59966 +2001 198 7.85358 7.85358 +2001 199 6.16992 6.16992 +2001 200 5.30432 5.30432 +2001 201 5.62130 5.62130 +2001 202 6.66895 6.66895 +2001 203 6.83995 6.83995 +2001 204 5.35867 5.35867 +2001 205 5.18482 5.18482 +2001 206 5.29982 5.29982 +2001 207 7.21607 7.21607 +2001 208 6.21177 6.21177 +2001 209 8.43010 8.43010 +2001 210 9.24357 9.24357 +2001 211 7.38684 7.38684 +2001 212 7.35972 7.35972 +2001 213 7.40443 7.40443 +2001 214 7.95278 7.95278 +2001 215 6.56564 6.56564 +2001 216 7.49199 7.49199 +2001 217 7.73584 7.73584 +2001 218 7.57413 7.57413 +2001 219 10.02500 10.02500 +2001 220 10.97200 10.97200 +2001 221 10.06630 10.06630 +2001 222 9.00346 9.00346 +2001 223 7.62977 7.62977 +2001 224 5.83223 5.83223 +2001 225 6.36012 6.36012 +2001 226 5.34453 5.34453 +2001 227 6.04722 6.04722 +2001 228 6.24900 6.24900 +2001 229 6.58093 6.58093 +2001 230 8.45473 8.45473 +2001 231 7.83293 7.83293 +2001 232 9.45694 9.45694 +2001 233 9.71124 9.71124 +2001 234 9.73859 9.73859 +2001 235 9.09515 9.09515 +2001 236 8.54798 8.54798 +2001 237 7.42036 7.42036 +2001 238 7.15390 7.15390 +2001 239 6.81276 6.81276 +2001 240 7.39112 7.39112 +2001 241 8.26141 8.26141 +2001 242 7.59590 7.59590 +2001 243 7.17307 7.17307 +2001 244 7.88867 7.88867 +2001 245 7.93344 7.93344 +2001 246 8.37665 8.37665 +2001 247 10.64790 10.64790 +2001 248 11.14130 11.14130 +2001 249 9.77290 9.77290 +2001 250 9.80411 9.80411 +2001 251 7.99941 7.99941 +2001 252 7.25700 7.25700 +2001 253 7.24232 7.24232 +2001 254 7.86059 7.86059 +2001 255 8.26717 8.26717 +2001 256 9.04771 9.04771 +2001 257 10.33810 10.33810 +2001 258 11.90550 11.90550 +2001 259 10.25520 10.25520 +2001 260 10.79100 10.79100 +2001 261 9.82637 9.82637 +2001 262 10.15810 10.15810 +2001 263 10.56090 10.56090 +2001 264 10.65450 10.65450 +2001 265 9.21378 9.21378 +2001 266 9.31287 9.31287 +2001 267 8.08369 8.08369 +2001 268 9.39873 9.39873 +2001 269 10.40630 10.40630 +2001 270 10.78920 10.78920 +2001 271 11.18610 11.18610 +2001 272 11.19010 11.19010 +2001 273 12.00000 12.00000 +2001 274 12.37330 12.37330 +2001 275 11.52100 11.52100 +2001 276 11.61420 11.61420 +2001 277 12.84000 12.84000 +2001 278 13.28500 13.28500 +2001 279 12.81210 12.81210 +2001 280 11.56430 11.56430 +2001 281 10.91990 10.91990 +2001 282 11.42930 11.42930 +2001 283 11.33750 11.33750 +2001 284 10.88740 10.88740 +2001 285 10.55910 10.55910 +2001 286 12.11490 12.11490 +2001 287 13.13810 13.13810 +2001 288 13.02310 13.02310 +2001 289 12.50350 12.50350 +2001 290 11.90510 11.90510 +2001 291 12.59040 12.59040 +2001 292 14.32830 14.32830 +2001 293 12.98340 12.98340 +2001 294 12.57070 12.57070 +2001 295 12.37000 12.37000 +2001 296 9.81017 9.81017 +2001 297 9.00437 9.00437 +2001 298 11.90440 11.90440 +2001 299 14.16760 14.16760 +2001 300 12.42030 12.42030 +2001 301 12.28360 12.28360 +2001 302 13.53330 13.53330 +2001 303 14.38400 14.38400 +2001 304 13.00130 13.00130 +2001 305 11.97860 11.97860 +2001 306 10.38440 10.38440 +2001 307 10.03680 10.03680 +2001 308 10.22550 10.22550 +2001 309 11.04010 11.04010 +2001 310 12.64040 12.64040 +2001 311 13.29350 13.29350 +2001 312 12.89700 12.89700 +2001 313 13.69180 13.69180 +2001 314 14.35810 14.35810 +2001 315 13.76860 13.76860 +2001 316 13.08660 13.08660 +2001 317 14.28240 14.28240 +2001 318 13.09740 13.09740 +2001 319 12.18920 12.18920 +2001 320 12.33300 12.33300 +2001 321 11.95800 11.95800 +2001 322 12.91340 12.91340 +2001 323 15.33030 15.33030 +2001 324 14.84160 14.84160 +2001 325 14.95750 14.95750 +2001 326 14.86560 14.86560 +2001 327 12.15120 12.15120 +2001 328 11.86210 11.86210 +2001 329 11.67320 11.67320 +2001 330 12.05320 12.05320 +2001 331 13.66020 13.66020 +2001 332 15.28780 15.28780 +2001 333 15.93920 15.93920 +2001 334 15.77260 15.77260 +2001 335 15.73060 15.73060 +2001 336 15.99160 15.99160 +2001 337 16.11540 16.11540 +2001 338 16.42220 16.42220 +2001 339 16.42810 16.42810 +2001 340 16.19890 16.19890 +2001 341 15.82420 15.82420 +2001 342 17.50780 17.50780 +2001 343 14.89980 14.89980 +2001 344 15.00370 15.00370 +2001 345 15.19280 15.19280 +2001 346 13.81850 13.81850 +2001 347 14.44380 14.44380 +2001 348 14.68340 14.68340 +2001 349 16.53650 16.53650 +2001 350 16.33740 16.33740 +2001 351 15.34440 15.34440 +2001 352 15.52800 15.52800 +2001 353 16.36840 16.36840 +2001 354 15.97250 15.97250 +2001 355 15.88950 15.88950 +2001 356 15.78640 15.78640 +2001 357 15.79560 15.79560 +2001 358 16.14480 16.14480 +2001 359 16.16990 16.16990 +2001 360 16.19870 16.19870 +2001 361 14.53230 14.53230 +2001 362 13.24320 13.24320 +2001 363 13.83740 13.83740 +2001 364 15.89820 15.89820 +2001 365 17.95220 17.95220 +2002 1 18.05170 18.05170 +2002 2 17.81690 17.81690 +2002 3 16.57420 16.57420 +2002 4 14.46480 14.46480 +2002 5 13.45960 13.45960 +2002 6 13.66790 13.66790 +2002 7 14.26980 14.26980 +2002 8 14.36390 14.36390 +2002 9 17.09970 17.09970 +2002 10 15.61990 15.61990 +2002 11 15.49530 15.49530 +2002 12 16.41250 16.41250 +2002 13 16.28420 16.28420 +2002 14 16.55850 16.55850 +2002 15 16.80600 16.80600 +2002 16 16.48640 16.48640 +2002 17 16.89150 16.89150 +2002 18 17.05640 17.05640 +2002 19 14.26820 14.26820 +2002 20 15.19660 15.19660 +2002 21 16.46920 16.46920 +2002 22 17.10070 17.10070 +2002 23 17.57620 17.57620 +2002 24 17.25440 17.25440 +2002 25 17.28540 17.28540 +2002 26 16.75420 16.75420 +2002 27 17.03700 17.03700 +2002 28 17.12560 17.12560 +2002 29 17.18450 17.18450 +2002 30 17.81590 17.81590 +2002 31 18.18900 18.18900 +2002 32 14.73580 14.73580 +2002 33 16.86180 16.86180 +2002 34 17.02050 17.02050 +2002 35 15.65010 15.65010 +2002 36 14.41210 14.41210 +2002 37 14.18100 14.18100 +2002 38 14.19570 14.19570 +2002 39 15.22730 15.22730 +2002 40 16.30050 16.30050 +2002 41 18.06490 18.06490 +2002 42 18.70690 18.70690 +2002 43 17.09600 17.09600 +2002 44 13.86740 13.86740 +2002 45 13.74970 13.74970 +2002 46 14.13280 14.13280 +2002 47 14.69640 14.69640 +2002 48 15.92160 15.92160 +2002 49 15.87060 15.87060 +2002 50 16.03600 16.03600 +2002 51 14.42330 14.42330 +2002 52 15.83630 15.83630 +2002 53 16.30100 16.30100 +2002 54 15.34140 15.34140 +2002 55 15.42740 15.42740 +2002 56 15.91220 15.91220 +2002 57 16.07570 16.07570 +2002 58 16.35850 16.35850 +2002 59 16.60530 16.60530 +2002 60 16.09850 16.09850 +2002 61 16.63370 16.63370 +2002 62 15.67260 15.67260 +2002 63 15.02880 15.02880 +2002 64 14.51120 14.51120 +2002 65 14.54100 14.54100 +2002 66 15.67350 15.67350 +2002 67 15.75430 15.75430 +2002 68 15.41480 15.41480 +2002 69 15.64500 15.64500 +2002 70 14.94900 14.94900 +2002 71 14.37300 14.37300 +2002 72 15.99410 15.99410 +2002 73 15.98750 15.98750 +2002 74 14.78930 14.78930 +2002 75 14.53840 14.53840 +2002 76 14.49930 14.49930 +2002 77 13.27740 13.27740 +2002 78 16.17690 16.17690 +2002 79 17.19300 17.19300 +2002 80 16.70540 16.70540 +2002 81 16.24250 16.24250 +2002 82 15.96990 15.96990 +2002 83 17.31230 17.31230 +2002 84 16.35240 16.35240 +2002 85 14.74010 14.74010 +2002 86 15.45850 15.45850 +2002 87 16.47970 16.47970 +2002 88 16.59540 16.59540 +2002 89 14.18310 14.18310 +2002 90 9.51154 9.51154 +2002 91 9.19109 9.19109 +2002 92 9.43824 9.43824 +2002 93 12.47120 12.47120 +2002 94 13.04200 13.04200 +2002 95 12.48560 12.48560 +2002 96 11.93880 11.93880 +2002 97 11.00460 11.00460 +2002 98 11.49490 11.49490 +2002 99 11.64590 11.64590 +2002 100 12.32260 12.32260 +2002 101 12.65260 12.65260 +2002 102 13.18080 13.18080 +2002 103 13.13380 13.13380 +2002 104 11.77080 11.77080 +2002 105 12.66570 12.66570 +2002 106 12.40690 12.40690 +2002 107 11.74410 11.74410 +2002 108 12.33290 12.33290 +2002 109 11.72750 11.72750 +2002 110 12.56790 12.56790 +2002 111 12.54070 12.54070 +2002 112 13.27380 13.27380 +2002 113 12.90140 12.90140 +2002 114 14.76240 14.76240 +2002 115 15.81740 15.81740 +2002 116 15.86170 15.86170 +2002 117 15.09160 15.09160 +2002 118 11.23060 11.23060 +2002 119 9.23093 9.23093 +2002 120 10.34810 10.34810 +2002 121 10.94080 10.94080 +2002 122 12.24670 12.24670 +2002 123 13.94700 13.94700 +2002 124 13.23190 13.23190 +2002 125 10.94780 10.94780 +2002 126 12.06250 12.06250 +2002 127 12.19620 12.19620 +2002 128 10.87250 10.87250 +2002 129 11.08030 11.08030 +2002 130 11.67730 11.67730 +2002 131 11.40800 11.40800 +2002 132 11.89540 11.89540 +2002 133 10.38850 10.38850 +2002 134 10.80550 10.80550 +2002 135 9.80397 9.80397 +2002 136 9.33329 9.33329 +2002 137 9.16082 9.16082 +2002 138 9.59567 9.59567 +2002 139 11.21670 11.21670 +2002 140 13.12450 13.12450 +2002 141 12.06640 12.06640 +2002 142 11.91090 11.91090 +2002 143 8.62127 8.62127 +2002 144 8.19753 8.19753 +2002 145 9.37796 9.37796 +2002 146 9.06126 9.06126 +2002 147 7.99181 7.99181 +2002 148 7.13429 7.13429 +2002 149 7.99251 7.99251 +2002 150 8.06888 8.06888 +2002 151 6.52735 6.52735 +2002 152 7.21467 7.21467 +2002 153 10.04780 10.04780 +2002 154 9.99436 9.99436 +2002 155 10.48830 10.48830 +2002 156 9.60846 9.60846 +2002 157 7.99246 7.99246 +2002 158 11.11140 11.11140 +2002 159 11.31250 11.31250 +2002 160 11.37870 11.37870 +2002 161 11.62800 11.62800 +2002 162 11.52130 11.52130 +2002 163 11.50670 11.50670 +2002 164 12.26980 12.26980 +2002 165 10.61790 10.61790 +2002 166 9.05428 9.05428 +2002 167 9.67493 9.67493 +2002 168 12.89020 12.89020 +2002 169 10.93100 10.93100 +2002 170 7.55213 7.55213 +2002 171 12.14130 12.14130 +2002 172 9.92812 9.92812 +2002 173 9.49155 9.49155 +2002 174 8.10209 8.10209 +2002 175 8.76974 8.76974 +2002 176 9.60082 9.60082 +2002 177 9.15484 9.15484 +2002 178 10.72480 10.72480 +2002 179 11.80250 11.80250 +2002 180 10.50290 10.50290 +2002 181 8.18418 8.18418 +2002 182 6.96234 6.96234 +2002 183 7.48423 7.48423 +2002 184 8.00673 8.00673 +2002 185 9.34556 9.34556 +2002 186 9.31254 9.31254 +2002 187 9.80691 9.80691 +2002 188 7.76978 7.76978 +2002 189 8.54852 8.54852 +2002 190 9.35318 9.35318 +2002 191 8.52375 8.52375 +2002 192 8.78767 8.78767 +2002 193 7.43150 7.43150 +2002 194 4.98366 4.98366 +2002 195 6.43577 6.43577 +2002 196 6.77054 6.77054 +2002 197 5.16359 5.16359 +2002 198 4.65630 4.65630 +2002 199 5.54710 5.54710 +2002 200 9.21335 9.21335 +2002 201 9.03974 9.03974 +2002 202 9.69430 9.69430 +2002 203 10.32820 10.32820 +2002 204 11.11980 11.11980 +2002 205 8.95061 8.95061 +2002 206 8.08266 8.08266 +2002 207 7.13728 7.13728 +2002 208 7.17607 7.17607 +2002 209 7.34109 7.34109 +2002 210 7.70033 7.70033 +2002 211 7.76008 7.76008 +2002 212 6.71912 6.71912 +2002 213 7.17345 7.17345 +2002 214 7.18110 7.18110 +2002 215 10.73880 10.73880 +2002 216 8.45288 8.45288 +2002 217 9.41953 9.41953 +2002 218 11.25320 11.25320 +2002 219 8.73971 8.73971 +2002 220 6.61217 6.61217 +2002 221 6.66026 6.66026 +2002 222 9.67424 9.67424 +2002 223 10.81750 10.81750 +2002 224 10.90980 10.90980 +2002 225 9.22507 9.22507 +2002 226 8.28813 8.28813 +2002 227 7.60156 7.60156 +2002 228 7.34359 7.34359 +2002 229 7.14988 7.14988 +2002 230 6.10849 6.10849 +2002 231 7.31028 7.31028 +2002 232 7.72914 7.72914 +2002 233 7.71623 7.71623 +2002 234 6.87460 6.87460 +2002 235 8.57860 8.57860 +2002 236 8.39127 8.39127 +2002 237 6.67141 6.67141 +2002 238 5.24014 5.24014 +2002 239 5.65178 5.65178 +2002 240 6.18244 6.18244 +2002 241 6.90411 6.90411 +2002 242 7.23294 7.23294 +2002 243 6.90839 6.90839 +2002 244 8.53674 8.53674 +2002 245 8.96158 8.96158 +2002 246 9.85542 9.85542 +2002 247 11.26500 11.26500 +2002 248 12.01110 12.01110 +2002 249 9.39339 9.39339 +2002 250 10.76450 10.76450 +2002 251 11.38630 11.38630 +2002 252 10.70830 10.70830 +2002 253 11.14590 11.14590 +2002 254 9.09693 9.09693 +2002 255 7.71574 7.71574 +2002 256 7.29637 7.29637 +2002 257 7.60305 7.60305 +2002 258 9.78406 9.78406 +2002 259 10.15890 10.15890 +2002 260 9.40668 9.40668 +2002 261 10.81750 10.81750 +2002 262 7.89890 7.89890 +2002 263 7.26078 7.26078 +2002 264 8.89213 8.89213 +2002 265 11.33390 11.33390 +2002 266 11.05600 11.05600 +2002 267 8.33210 8.33210 +2002 268 7.32504 7.32504 +2002 269 11.19420 11.19420 +2002 270 10.58410 10.58410 +2002 271 11.52090 11.52090 +2002 272 10.95370 10.95370 +2002 273 10.17740 10.17740 +2002 274 10.22480 10.22480 +2002 275 10.39620 10.39620 +2002 276 8.16161 8.16161 +2002 277 7.59894 7.59894 +2002 278 8.47527 8.47527 +2002 279 7.04421 7.04421 +2002 280 7.82016 7.82016 +2002 281 9.23911 9.23911 +2002 282 9.98415 9.98415 +2002 283 10.28210 10.28210 +2002 284 10.46720 10.46720 +2002 285 8.81384 8.81384 +2002 286 6.98275 6.98275 +2002 287 7.56199 7.56199 +2002 288 9.51442 9.51442 +2002 289 11.66320 11.66320 +2002 290 13.06730 13.06730 +2002 291 10.78350 10.78350 +2002 292 10.75350 10.75350 +2002 293 11.25520 11.25520 +2002 294 10.75960 10.75960 +2002 295 10.83870 10.83870 +2002 296 11.13900 11.13900 +2002 297 11.94750 11.94750 +2002 298 10.55160 10.55160 +2002 299 12.24170 12.24170 +2002 300 9.11134 9.11134 +2002 301 8.69239 8.69239 +2002 302 10.02410 10.02410 +2002 303 10.33150 10.33150 +2002 304 11.53030 11.53030 +2002 305 11.39880 11.39880 +2002 306 9.51145 9.51145 +2002 307 10.54300 10.54300 +2002 308 12.03960 12.03960 +2002 309 11.23900 11.23900 +2002 310 10.64970 10.64970 +2002 311 11.17220 11.17220 +2002 312 11.75830 11.75830 +2002 313 13.08120 13.08120 +2002 314 11.64400 11.64400 +2002 315 9.06167 9.06167 +2002 316 9.28551 9.28551 +2002 317 11.41060 11.41060 +2002 318 12.74270 12.74270 +2002 319 12.50160 12.50160 +2002 320 8.55400 8.55400 +2002 321 8.18832 8.18832 +2002 322 7.64211 7.64211 +2002 323 10.74080 10.74080 +2002 324 14.11850 14.11850 +2002 325 13.31790 13.31790 +2002 326 12.12540 12.12540 +2002 327 11.96060 11.96060 +2002 328 12.78980 12.78980 +2002 329 13.24490 13.24490 +2002 330 12.87740 12.87740 +2002 331 15.61030 15.61030 +2002 332 16.10850 16.10850 +2002 333 14.93970 14.93970 +2002 334 16.46150 16.46150 +2002 335 16.67490 16.67490 +2002 336 16.67160 16.67160 +2002 337 16.51820 16.51820 +2002 338 16.65160 16.65160 +2002 339 15.90690 15.90690 +2002 340 15.98350 15.98350 +2002 341 13.63480 13.63480 +2002 342 13.03730 13.03730 +2002 343 14.37950 14.37950 +2002 344 14.62490 14.62490 +2002 345 14.50880 14.50880 +2002 346 14.78610 14.78610 +2002 347 14.15240 14.15240 +2002 348 12.89000 12.89000 +2002 349 13.25240 13.25240 +2002 350 13.59960 13.59960 +2002 351 13.09990 13.09990 +2002 352 14.59940 14.59940 +2002 353 14.81710 14.81710 +2002 354 15.83920 15.83920 +2002 355 15.25510 15.25510 +2002 356 14.48260 14.48260 +2002 357 16.31560 16.31560 +2002 358 16.51610 16.51610 +2002 359 15.81750 15.81750 +2002 360 13.38300 13.38300 +2002 361 13.85670 13.85670 +2002 362 15.05420 15.05420 +2002 363 13.86560 13.86560 +2002 364 15.70540 15.70540 +2002 365 17.07830 17.07830 +2003 1 17.19330 17.19330 +2003 2 17.29360 17.29360 +2003 3 17.26340 17.26340 +2003 4 17.23710 17.23710 +2003 5 17.00290 17.00290 +2003 6 18.10060 18.10060 +2003 7 15.43160 15.43160 +2003 8 14.96140 14.96140 +2003 9 15.18130 15.18130 +2003 10 16.07140 16.07140 +2003 11 16.71990 16.71990 +2003 12 14.08980 14.08980 +2003 13 12.10670 12.10670 +2003 14 12.50730 12.50730 +2003 15 15.24190 15.24190 +2003 16 16.03200 16.03200 +2003 17 16.68730 16.68730 +2003 18 16.26800 16.26800 +2003 19 16.34020 16.34020 +2003 20 17.71840 17.71840 +2003 21 16.76050 16.76050 +2003 22 16.19060 16.19060 +2003 23 14.36960 14.36960 +2003 24 13.48530 13.48530 +2003 25 13.16000 13.16000 +2003 26 15.73480 15.73480 +2003 27 15.22700 15.22700 +2003 28 15.48520 15.48520 +2003 29 15.94090 15.94090 +2003 30 17.04590 17.04590 +2003 31 17.80220 17.80220 +2003 32 17.33200 17.33200 +2003 33 17.77410 17.77410 +2003 34 17.47250 17.47250 +2003 35 16.11750 16.11750 +2003 36 16.38810 16.38810 +2003 37 17.43580 17.43580 +2003 38 17.06160 17.06160 +2003 39 17.15720 17.15720 +2003 40 18.07990 18.07990 +2003 41 18.10940 18.10940 +2003 42 18.76450 18.76450 +2003 43 17.46190 17.46190 +2003 44 17.78740 17.78740 +2003 45 16.98300 16.98300 +2003 46 16.54820 16.54820 +2003 47 17.10190 17.10190 +2003 48 17.45810 17.45810 +2003 49 16.29870 16.29870 +2003 50 15.47190 15.47190 +2003 51 13.91310 13.91310 +2003 52 12.58960 12.58960 +2003 53 12.91440 12.91440 +2003 54 15.16410 15.16410 +2003 55 15.63980 15.63980 +2003 56 15.54920 15.54920 +2003 57 15.54550 15.54550 +2003 58 17.57150 17.57150 +2003 59 18.34120 18.34120 +2003 60 18.14810 18.14810 +2003 61 17.02310 17.02310 +2003 62 14.69070 14.69070 +2003 63 14.61010 14.61010 +2003 64 16.28660 16.28660 +2003 65 16.10660 16.10660 +2003 66 15.46410 15.46410 +2003 67 16.18710 16.18710 +2003 68 15.84750 15.84750 +2003 69 13.59320 13.59320 +2003 70 15.42470 15.42470 +2003 71 14.36060 14.36060 +2003 72 14.23660 14.23660 +2003 73 14.64340 14.64340 +2003 74 14.99300 14.99300 +2003 75 15.89680 15.89680 +2003 76 15.33690 15.33690 +2003 77 14.14540 14.14540 +2003 78 14.28100 14.28100 +2003 79 14.28700 14.28700 +2003 80 15.12180 15.12180 +2003 81 15.14680 15.14680 +2003 82 14.97640 14.97640 +2003 83 15.35810 15.35810 +2003 84 15.11910 15.11910 +2003 85 15.29990 15.29990 +2003 86 15.26740 15.26740 +2003 87 17.29350 17.29350 +2003 88 17.12080 17.12080 +2003 89 15.98510 15.98510 +2003 90 15.68180 15.68180 +2003 91 15.84580 15.84580 +2003 92 15.30410 15.30410 +2003 93 14.99420 14.99420 +2003 94 15.29280 15.29280 +2003 95 16.17010 16.17010 +2003 96 15.01980 15.01980 +2003 97 12.27050 12.27050 +2003 98 12.69180 12.69180 +2003 99 12.48100 12.48100 +2003 100 12.24770 12.24770 +2003 101 11.81160 11.81160 +2003 102 11.54440 11.54440 +2003 103 12.47660 12.47660 +2003 104 14.37280 14.37280 +2003 105 15.31860 15.31860 +2003 106 15.26160 15.26160 +2003 107 13.87310 13.87310 +2003 108 12.46370 12.46370 +2003 109 12.57520 12.57520 +2003 110 12.66320 12.66320 +2003 111 12.88480 12.88480 +2003 112 11.63930 11.63930 +2003 113 12.19690 12.19690 +2003 114 9.97728 9.97728 +2003 115 9.46064 9.46064 +2003 116 11.46070 11.46070 +2003 117 10.45670 10.45670 +2003 118 10.70690 10.70690 +2003 119 11.33630 11.33630 +2003 120 11.93470 11.93470 +2003 121 14.17670 14.17670 +2003 122 13.87520 13.87520 +2003 123 11.21910 11.21910 +2003 124 11.03190 11.03190 +2003 125 11.25770 11.25770 +2003 126 10.64680 10.64680 +2003 127 10.22340 10.22340 +2003 128 9.42921 9.42921 +2003 129 10.07800 10.07800 +2003 130 11.29020 11.29020 +2003 131 11.46640 11.46640 +2003 132 10.16820 10.16820 +2003 133 9.76062 9.76062 +2003 134 9.93232 9.93232 +2003 135 8.70527 8.70527 +2003 136 9.45550 9.45550 +2003 137 8.66335 8.66335 +2003 138 12.66090 12.66090 +2003 139 14.91820 14.91820 +2003 140 15.58020 15.58020 +2003 141 14.38140 14.38140 +2003 142 11.70040 11.70040 +2003 143 10.17370 10.17370 +2003 144 10.48730 10.48730 +2003 145 9.94176 9.94176 +2003 146 8.68109 8.68109 +2003 147 7.41306 7.41306 +2003 148 7.54284 7.54284 +2003 149 11.14620 11.14620 +2003 150 12.37760 12.37760 +2003 151 11.01310 11.01310 +2003 152 11.62640 11.62640 +2003 153 11.77600 11.77600 +2003 154 11.72630 11.72630 +2003 155 12.77330 12.77330 +2003 156 13.42700 13.42700 +2003 157 11.95250 11.95250 +2003 158 11.22460 11.22460 +2003 159 11.22380 11.22380 +2003 160 9.34166 9.34166 +2003 161 7.62754 7.62754 +2003 162 8.49732 8.49732 +2003 163 7.99441 7.99441 +2003 164 6.56668 6.56668 +2003 165 9.90067 9.90067 +2003 166 9.81111 9.81111 +2003 167 9.08028 9.08028 +2003 168 9.71946 9.71946 +2003 169 9.47997 9.47997 +2003 170 10.40130 10.40130 +2003 171 9.92820 9.92820 +2003 172 8.70740 8.70740 +2003 173 10.80460 10.80460 +2003 174 10.14590 10.14590 +2003 175 7.90276 7.90276 +2003 176 6.06082 6.06082 +2003 177 5.47329 5.47329 +2003 178 9.12843 9.12843 +2003 179 11.60740 11.60740 +2003 180 12.60210 12.60210 +2003 181 10.28800 10.28800 +2003 182 7.38695 7.38695 +2003 183 8.19892 8.19892 +2003 184 7.03257 7.03257 +2003 185 5.06042 5.06042 +2003 186 3.95716 3.95716 +2003 187 4.69764 4.69764 +2003 188 7.62399 7.62399 +2003 189 6.67685 6.67685 +2003 190 7.73404 7.73404 +2003 191 7.36351 7.36351 +2003 192 5.83691 5.83691 +2003 193 5.80148 5.80148 +2003 194 5.15872 5.15872 +2003 195 7.21429 7.21429 +2003 196 6.96721 6.96721 +2003 197 9.31730 9.31730 +2003 198 5.50407 5.50407 +2003 199 5.51036 5.51036 +2003 200 4.88586 4.88586 +2003 201 5.17142 5.17142 +2003 202 4.26614 4.26614 +2003 203 5.48401 5.48401 +2003 204 5.56986 5.56986 +2003 205 4.82643 4.82643 +2003 206 5.97405 5.97405 +2003 207 6.65732 6.65732 +2003 208 8.27697 8.27697 +2003 209 8.21182 8.21182 +2003 210 7.60210 7.60210 +2003 211 7.08598 7.08598 +2003 212 8.10045 8.10045 +2003 213 9.05236 9.05236 +2003 214 8.80509 8.80509 +2003 215 6.84489 6.84489 +2003 216 6.56907 6.56907 +2003 217 6.26188 6.26188 +2003 218 6.47017 6.47017 +2003 219 6.98436 6.98436 +2003 220 6.81287 6.81287 +2003 221 7.36062 7.36062 +2003 222 8.91601 8.91601 +2003 223 9.49683 9.49683 +2003 224 8.69075 8.69075 +2003 225 7.45468 7.45468 +2003 226 7.58899 7.58899 +2003 227 7.43625 7.43625 +2003 228 7.47468 7.47468 +2003 229 7.42433 7.42433 +2003 230 6.58189 6.58189 +2003 231 7.43839 7.43839 +2003 232 9.08622 9.08622 +2003 233 9.16663 9.16663 +2003 234 9.74697 9.74697 +2003 235 9.69217 9.69217 +2003 236 8.88505 8.88505 +2003 237 8.14663 8.14663 +2003 238 8.48774 8.48774 +2003 239 8.28285 8.28285 +2003 240 7.57390 7.57390 +2003 241 7.77588 7.77588 +2003 242 6.97453 6.97453 +2003 243 7.77792 7.77792 +2003 244 8.65640 8.65640 +2003 245 8.47850 8.47850 +2003 246 9.24591 9.24591 +2003 247 8.09571 8.09571 +2003 248 9.08390 9.08390 +2003 249 8.66984 8.66984 +2003 250 7.44417 7.44417 +2003 251 7.85392 7.85392 +2003 252 8.60136 8.60136 +2003 253 7.44809 7.44809 +2003 254 7.30816 7.30816 +2003 255 8.64360 8.64360 +2003 256 10.74050 10.74050 +2003 257 10.05560 10.05560 +2003 258 11.82490 11.82490 +2003 259 9.36839 9.36839 +2003 260 11.10710 11.10710 +2003 261 11.41460 11.41460 +2003 262 10.47670 10.47670 +2003 263 11.09400 11.09400 +2003 264 9.65093 9.65093 +2003 265 9.88335 9.88335 +2003 266 12.66960 12.66960 +2003 267 12.46960 12.46960 +2003 268 12.04340 12.04340 +2003 269 14.28830 14.28830 +2003 270 13.22360 13.22360 +2003 271 8.82059 8.82059 +2003 272 9.24435 9.24435 +2003 273 7.61055 7.61055 +2003 274 9.57747 9.57747 +2003 275 10.27910 10.27910 +2003 276 10.62450 10.62450 +2003 277 7.16641 7.16641 +2003 278 6.32533 6.32533 +2003 279 8.34899 8.34899 +2003 280 9.09889 9.09889 +2003 281 9.60655 9.60655 +2003 282 11.68590 11.68590 +2003 283 11.67800 11.67800 +2003 284 11.96350 11.96350 +2003 285 10.23420 10.23420 +2003 286 8.61463 8.61463 +2003 287 9.25511 9.25511 +2003 288 10.41070 10.41070 +2003 289 11.57860 11.57860 +2003 290 12.43540 12.43540 +2003 291 12.77190 12.77190 +2003 292 12.15250 12.15250 +2003 293 12.10470 12.10470 +2003 294 12.43440 12.43440 +2003 295 13.49930 13.49930 +2003 296 13.88710 13.88710 +2003 297 10.73330 10.73330 +2003 298 8.74390 8.74390 +2003 299 9.19308 9.19308 +2003 300 11.63540 11.63540 +2003 301 12.01440 12.01440 +2003 302 10.90820 10.90820 +2003 303 12.17340 12.17340 +2003 304 12.43270 12.43270 +2003 305 11.95840 11.95840 +2003 306 9.68207 9.68207 +2003 307 9.88544 9.88544 +2003 308 10.43850 10.43850 +2003 309 11.24950 11.24950 +2003 310 11.39580 11.39580 +2003 311 11.93420 11.93420 +2003 312 11.93710 11.93710 +2003 313 12.61620 12.61620 +2003 314 11.74160 11.74160 +2003 315 13.91030 13.91030 +2003 316 11.62450 11.62450 +2003 317 9.45910 9.45910 +2003 318 10.23620 10.23620 +2003 319 13.69480 13.69480 +2003 320 14.14780 14.14780 +2003 321 10.58830 10.58830 +2003 322 12.13580 12.13580 +2003 323 12.60620 12.60620 +2003 324 13.86720 13.86720 +2003 325 14.85420 14.85420 +2003 326 14.72700 14.72700 +2003 327 14.57710 14.57710 +2003 328 11.96010 11.96010 +2003 329 13.54070 13.54070 +2003 330 13.69130 13.69130 +2003 331 10.83110 10.83110 +2003 332 11.37960 11.37960 +2003 333 12.10950 12.10950 +2003 334 13.82610 13.82610 +2003 335 13.70740 13.70740 +2003 336 14.29770 14.29770 +2003 337 15.86480 15.86480 +2003 338 15.36460 15.36460 +2003 339 15.74150 15.74150 +2003 340 16.24540 16.24540 +2003 341 14.65220 14.65220 +2003 342 15.72070 15.72070 +2003 343 15.82970 15.82970 +2003 344 18.62480 18.62480 +2003 345 18.80390 18.80390 +2003 346 18.49160 18.49160 +2003 347 18.43840 18.43840 +2003 348 16.00260 16.00260 +2003 349 14.08550 14.08550 +2003 350 13.09030 13.09030 +2003 351 14.42290 14.42290 +2003 352 16.24050 16.24050 +2003 353 15.88160 15.88160 +2003 354 14.96620 14.96620 +2003 355 17.16040 17.16040 +2003 356 15.68870 15.68870 +2003 357 16.17410 16.17410 +2003 358 13.57420 13.57420 +2003 359 15.23100 15.23100 +2003 360 18.28040 18.28040 +2003 361 17.01840 17.01840 +2003 362 14.77710 14.77710 +2003 363 12.85880 12.85880 +2003 364 15.05330 15.05330 +2003 365 17.37860 17.37860 +2004 1 18.83770 18.83770 +2004 2 19.21270 19.21270 +2004 3 19.55160 19.55160 +2004 4 18.55130 18.55130 +2004 5 16.85980 16.85980 +2004 6 17.03220 17.03220 +2004 7 19.26050 19.26050 +2004 8 19.18140 19.18140 +2004 9 17.83990 17.83990 +2004 10 18.97210 18.97210 +2004 11 20.15120 20.15120 +2004 12 19.57680 19.57680 +2004 13 18.19220 18.19220 +2004 14 18.40730 18.40730 +2004 15 19.09050 19.09050 +2004 16 18.29470 18.29470 +2004 17 16.81340 16.81340 +2004 18 16.53270 16.53270 +2004 19 12.19510 12.19510 +2004 20 13.46540 13.46540 +2004 21 16.36420 16.36420 +2004 22 15.71070 15.71070 +2004 23 18.21300 18.21300 +2004 24 17.28760 17.28760 +2004 25 17.94460 17.94460 +2004 26 18.38820 18.38820 +2004 27 17.51570 17.51570 +2004 28 18.00620 18.00620 +2004 29 17.38500 17.38500 +2004 30 18.67460 18.67460 +2004 31 18.60660 18.60660 +2004 32 17.31360 17.31360 +2004 33 18.34780 18.34780 +2004 34 16.35310 16.35310 +2004 35 17.15720 17.15720 +2004 36 15.83720 15.83720 +2004 37 16.22920 16.22920 +2004 38 15.23270 15.23270 +2004 39 14.89180 14.89180 +2004 40 17.63950 17.63950 +2004 41 18.51470 18.51470 +2004 42 16.83170 16.83170 +2004 43 15.26350 15.26350 +2004 44 17.31480 17.31480 +2004 45 13.83640 13.83640 +2004 46 12.83980 12.83980 +2004 47 13.82670 13.82670 +2004 48 13.67610 13.67610 +2004 49 15.73260 15.73260 +2004 50 12.81820 12.81820 +2004 51 14.65300 14.65300 +2004 52 15.96030 15.96030 +2004 53 15.11950 15.11950 +2004 54 15.94860 15.94860 +2004 55 12.82280 12.82280 +2004 56 12.88090 12.88090 +2004 57 13.50020 13.50020 +2004 58 15.17040 15.17040 +2004 59 16.78210 16.78210 +2004 60 14.83240 14.83240 +2004 61 14.89360 14.89360 +2004 62 13.20650 13.20650 +2004 63 11.74100 11.74100 +2004 64 13.06560 13.06560 +2004 65 13.64350 13.64350 +2004 66 15.47300 15.47300 +2004 67 15.68190 15.68190 +2004 68 15.65360 15.65360 +2004 69 16.63960 16.63960 +2004 70 15.03460 15.03460 +2004 71 14.26880 14.26880 +2004 72 14.16930 14.16930 +2004 73 12.97800 12.97800 +2004 74 13.57550 13.57550 +2004 75 14.56450 14.56450 +2004 76 14.56530 14.56530 +2004 77 15.01430 15.01430 +2004 78 13.21660 13.21660 +2004 79 14.01640 14.01640 +2004 80 14.56330 14.56330 +2004 81 15.01340 15.01340 +2004 82 13.51530 13.51530 +2004 83 13.61850 13.61850 +2004 84 12.60780 12.60780 +2004 85 13.40060 13.40060 +2004 86 12.27120 12.27120 +2004 87 11.84740 11.84740 +2004 88 10.55260 10.55260 +2004 89 11.67040 11.67040 +2004 90 12.34800 12.34800 +2004 91 12.31890 12.31890 +2004 92 13.47900 13.47900 +2004 93 14.70590 14.70590 +2004 94 12.53570 12.53570 +2004 95 11.91940 11.91940 +2004 96 9.21966 9.21966 +2004 97 7.56090 7.56090 +2004 98 9.21010 9.21010 +2004 99 11.62700 11.62700 +2004 100 10.04290 10.04290 +2004 101 10.10110 10.10110 +2004 102 10.76660 10.76660 +2004 103 10.37770 10.37770 +2004 104 10.39050 10.39050 +2004 105 11.19000 11.19000 +2004 106 11.93230 11.93230 +2004 107 13.42160 13.42160 +2004 108 13.53850 13.53850 +2004 109 14.04600 14.04600 +2004 110 12.21460 12.21460 +2004 111 11.99910 11.99910 +2004 112 12.81420 12.81420 +2004 113 12.26040 12.26040 +2004 114 12.08890 12.08890 +2004 115 11.27070 11.27070 +2004 116 11.37790 11.37790 +2004 117 12.30110 12.30110 +2004 118 12.31450 12.31450 +2004 119 12.17980 12.17980 +2004 120 13.43400 13.43400 +2004 121 13.71820 13.71820 +2004 122 16.41690 16.41690 +2004 123 15.70580 15.70580 +2004 124 11.16500 11.16500 +2004 125 12.39110 12.39110 +2004 126 11.23750 11.23750 +2004 127 11.87400 11.87400 +2004 128 12.32070 12.32070 +2004 129 11.60370 11.60370 +2004 130 12.02230 12.02230 +2004 131 13.08850 13.08850 +2004 132 14.77160 14.77160 +2004 133 13.75140 13.75140 +2004 134 11.08710 11.08710 +2004 135 10.29070 10.29070 +2004 136 8.62769 8.62769 +2004 137 8.56622 8.56622 +2004 138 9.02333 9.02333 +2004 139 9.90938 9.90938 +2004 140 10.13410 10.13410 +2004 141 9.22234 9.22234 +2004 142 7.86881 7.86881 +2004 143 10.02690 10.02690 +2004 144 8.44581 8.44581 +2004 145 7.82344 7.82344 +2004 146 9.05719 9.05719 +2004 147 9.93056 9.93056 +2004 148 11.63320 11.63320 +2004 149 11.00300 11.00300 +2004 150 9.44282 9.44282 +2004 151 8.43206 8.43206 +2004 152 9.32293 9.32293 +2004 153 10.93140 10.93140 +2004 154 11.66760 11.66760 +2004 155 11.70810 11.70810 +2004 156 10.04870 10.04870 +2004 157 7.23001 7.23001 +2004 158 7.56598 7.56598 +2004 159 6.22967 6.22967 +2004 160 5.18628 5.18628 +2004 161 5.05848 5.05848 +2004 162 5.11714 5.11714 +2004 163 6.55123 6.55123 +2004 164 6.35959 6.35959 +2004 165 7.15608 7.15608 +2004 166 8.34214 8.34214 +2004 167 9.51296 9.51296 +2004 168 10.83990 10.83990 +2004 169 12.28790 12.28790 +2004 170 10.67380 10.67380 +2004 171 12.07730 12.07730 +2004 172 10.91100 10.91100 +2004 173 6.62738 6.62738 +2004 174 5.57845 5.57845 +2004 175 6.01439 6.01439 +2004 176 8.62639 8.62639 +2004 177 8.54054 8.54054 +2004 178 9.15551 9.15551 +2004 179 9.88839 9.88839 +2004 180 7.71627 7.71627 +2004 181 8.75819 8.75819 +2004 182 8.70967 8.70967 +2004 183 8.70753 8.70753 +2004 184 7.33031 7.33031 +2004 185 5.70783 5.70783 +2004 186 5.62751 5.62751 +2004 187 8.30442 8.30442 +2004 188 7.38299 7.38299 +2004 189 7.31127 7.31127 +2004 190 4.70590 4.70590 +2004 191 6.52980 6.52980 +2004 192 6.46078 6.46078 +2004 193 4.57685 4.57685 +2004 194 5.09789 5.09789 +2004 195 5.43984 5.43984 +2004 196 8.81379 8.81379 +2004 197 8.28088 8.28088 +2004 198 9.14816 9.14816 +2004 199 7.92357 7.92357 +2004 200 6.66172 6.66172 +2004 201 5.94123 5.94123 +2004 202 7.75095 7.75095 +2004 203 5.95919 5.95919 +2004 204 4.65345 4.65345 +2004 205 4.67175 4.67175 +2004 206 5.73862 5.73862 +2004 207 4.85082 4.85082 +2004 208 8.61128 8.61128 +2004 209 8.97827 8.97827 +2004 210 10.21370 10.21370 +2004 211 7.63747 7.63747 +2004 212 5.76475 5.76475 +2004 213 5.90809 5.90809 +2004 214 5.36020 5.36020 +2004 215 4.57534 4.57534 +2004 216 4.77267 4.77267 +2004 217 9.27466 9.27466 +2004 218 8.86686 8.86686 +2004 219 7.64170 7.64170 +2004 220 7.38024 7.38024 +2004 221 7.07425 7.07425 +2004 222 6.93630 6.93630 +2004 223 6.85291 6.85291 +2004 224 8.36828 8.36828 +2004 225 8.87942 8.87942 +2004 226 8.96923 8.96923 +2004 227 9.60757 9.60757 +2004 228 6.09199 6.09199 +2004 229 4.21435 4.21435 +2004 230 6.32298 6.32298 +2004 231 8.77382 8.77382 +2004 232 6.96799 6.96799 +2004 233 6.78159 6.78159 +2004 234 7.56566 7.56566 +2004 235 7.69070 7.69070 +2004 236 4.86348 4.86348 +2004 237 4.68853 4.68853 +2004 238 4.37488 4.37488 +2004 239 4.07538 4.07538 +2004 240 3.70496 3.70496 +2004 241 3.34834 3.34834 +2004 242 4.38186 4.38186 +2004 243 5.36941 5.36941 +2004 244 7.02684 7.02684 +2004 245 7.91386 7.91386 +2004 246 6.76661 6.76661 +2004 247 5.10338 5.10338 +2004 248 7.33507 7.33507 +2004 249 7.33839 7.33839 +2004 250 6.59205 6.59205 +2004 251 7.47285 7.47285 +2004 252 7.62252 7.62252 +2004 253 7.80795 7.80795 +2004 254 9.79317 9.79317 +2004 255 10.89830 10.89830 +2004 256 10.43610 10.43610 +2004 257 7.94668 7.94668 +2004 258 7.54930 7.54930 +2004 259 8.32753 8.32753 +2004 260 7.25465 7.25465 +2004 261 7.82066 7.82066 +2004 262 7.39764 7.39764 +2004 263 7.19353 7.19353 +2004 264 9.15102 9.15102 +2004 265 8.58821 8.58821 +2004 266 9.86007 9.86007 +2004 267 11.81000 11.81000 +2004 268 8.08965 8.08965 +2004 269 9.00803 9.00803 +2004 270 8.52552 8.52552 +2004 271 9.26754 9.26754 +2004 272 7.91944 7.91944 +2004 273 7.95023 7.95023 +2004 274 11.17770 11.17770 +2004 275 9.00922 9.00922 +2004 276 7.18655 7.18655 +2004 277 9.03039 9.03039 +2004 278 10.31880 10.31880 +2004 279 8.87933 8.87933 +2004 280 8.60524 8.60524 +2004 281 11.11920 11.11920 +2004 282 11.05760 11.05760 +2004 283 11.19890 11.19890 +2004 284 10.97510 10.97510 +2004 285 10.68850 10.68850 +2004 286 12.68980 12.68980 +2004 287 14.33280 14.33280 +2004 288 13.84290 13.84290 +2004 289 12.91370 12.91370 +2004 290 11.32800 11.32800 +2004 291 9.43436 9.43436 +2004 292 8.55256 8.55256 +2004 293 9.21967 9.21967 +2004 294 9.97818 9.97818 +2004 295 11.17970 11.17970 +2004 296 11.46910 11.46910 +2004 297 13.81980 13.81980 +2004 298 14.67110 14.67110 +2004 299 12.88580 12.88580 +2004 300 13.20990 13.20990 +2004 301 11.64520 11.64520 +2004 302 14.02790 14.02790 +2004 303 11.92280 11.92280 +2004 304 9.88019 9.88019 +2004 305 11.34510 11.34510 +2004 306 11.24430 11.24430 +2004 307 11.48340 11.48340 +2004 308 11.72350 11.72350 +2004 309 13.10750 13.10750 +2004 310 13.92370 13.92370 +2004 311 15.76910 15.76910 +2004 312 13.74180 13.74180 +2004 313 14.57930 14.57930 +2004 314 14.09660 14.09660 +2004 315 14.13600 14.13600 +2004 316 13.85960 13.85960 +2004 317 14.09320 14.09320 +2004 318 14.46810 14.46810 +2004 319 12.29490 12.29490 +2004 320 12.46170 12.46170 +2004 321 11.10650 11.10650 +2004 322 12.32760 12.32760 +2004 323 13.21570 13.21570 +2004 324 13.39940 13.39940 +2004 325 14.38960 14.38960 +2004 326 13.49820 13.49820 +2004 327 12.12230 12.12230 +2004 328 13.11170 13.11170 +2004 329 11.70810 11.70810 +2004 330 9.40938 9.40938 +2004 331 9.61603 9.61603 +2004 332 12.52720 12.52720 +2004 333 13.17010 13.17010 +2004 334 12.28010 12.28010 +2004 335 13.41700 13.41700 +2004 336 15.81040 15.81040 +2004 337 12.70670 12.70670 +2004 338 10.93700 10.93700 +2004 339 9.34789 9.34789 +2004 340 11.95000 11.95000 +2004 341 12.54140 12.54140 +2004 342 12.74910 12.74910 +2004 343 11.50560 11.50560 +2004 344 11.49600 11.49600 +2004 345 10.84100 10.84100 +2004 346 11.23320 11.23320 +2004 347 13.07470 13.07470 +2004 348 13.66260 13.66260 +2004 349 12.90710 12.90710 +2004 350 14.71980 14.71980 +2004 351 12.60560 12.60560 +2004 352 9.59306 9.59306 +2004 353 9.77287 9.77287 +2004 354 10.64610 10.64610 +2004 355 11.80940 11.80940 +2004 356 11.47580 11.47580 +2004 357 11.58520 11.58520 +2004 358 11.55670 11.55670 +2004 359 12.33120 12.33120 +2004 360 12.06580 12.06580 +2004 361 14.27170 14.27170 +2004 362 14.24490 14.24490 +2004 363 15.42230 15.42230 +2004 364 15.86890 15.86890 +2004 365 15.73040 15.73040 +2004 366 14.33110 14.33110 +2005 1 14.70010 14.70010 +2005 2 14.52720 14.52720 +2005 3 15.24900 15.24900 +2005 4 15.48100 15.48100 +2005 5 16.89110 16.89110 +2005 6 15.95240 15.95240 +2005 7 15.93320 15.93320 +2005 8 14.11940 14.11940 +2005 9 13.92020 13.92020 +2005 10 14.54590 14.54590 +2005 11 15.09210 15.09210 +2005 12 16.22820 16.22820 +2005 13 16.24340 16.24340 +2005 14 17.41720 17.41720 +2005 15 18.24910 18.24910 +2005 16 17.09890 17.09890 +2005 17 16.43540 16.43540 +2005 18 15.12400 15.12400 +2005 19 14.75700 14.75700 +2005 20 16.40760 16.40760 +2005 21 16.07630 16.07630 +2005 22 16.99210 16.99210 +2005 23 17.45250 17.45250 +2005 24 18.61090 18.61090 +2005 25 18.78850 18.78850 +2005 26 16.23380 16.23380 +2005 27 16.85380 16.85380 +2005 28 17.65540 17.65540 +2005 29 17.76590 17.76590 +2005 30 19.12410 19.12410 +2005 31 19.91320 19.91320 +2005 32 19.55680 19.55680 +2005 33 19.44520 19.44520 +2005 34 19.37480 19.37480 +2005 35 18.71370 18.71370 +2005 36 18.22270 18.22270 +2005 37 17.47830 17.47830 +2005 38 18.88310 18.88310 +2005 39 20.08450 20.08450 +2005 40 20.72380 20.72380 +2005 41 18.72290 18.72290 +2005 42 16.97910 16.97910 +2005 43 16.66560 16.66560 +2005 44 15.93580 15.93580 +2005 45 16.46150 16.46150 +2005 46 15.91330 15.91330 +2005 47 15.94390 15.94390 +2005 48 17.26330 17.26330 +2005 49 16.97550 16.97550 +2005 50 16.93110 16.93110 +2005 51 17.83090 17.83090 +2005 52 16.25300 16.25300 +2005 53 17.25370 17.25370 +2005 54 17.63380 17.63380 +2005 55 17.92640 17.92640 +2005 56 17.90180 17.90180 +2005 57 18.04290 18.04290 +2005 58 16.67120 16.67120 +2005 59 15.01180 15.01180 +2005 60 15.19460 15.19460 +2005 61 16.52520 16.52520 +2005 62 17.28590 17.28590 +2005 63 16.17560 16.17560 +2005 64 17.33510 17.33510 +2005 65 16.33360 16.33360 +2005 66 14.69170 14.69170 +2005 67 16.27540 16.27540 +2005 68 16.24610 16.24610 +2005 69 16.58500 16.58500 +2005 70 15.36790 15.36790 +2005 71 14.63770 14.63770 +2005 72 14.97180 14.97180 +2005 73 16.13630 16.13630 +2005 74 16.30050 16.30050 +2005 75 14.55750 14.55750 +2005 76 17.05940 17.05940 +2005 77 17.27040 17.27040 +2005 78 17.84440 17.84440 +2005 79 17.62580 17.62580 +2005 80 16.71930 16.71930 +2005 81 16.78910 16.78910 +2005 82 16.58630 16.58630 +2005 83 17.45260 17.45260 +2005 84 16.82500 16.82500 +2005 85 15.58580 15.58580 +2005 86 13.68240 13.68240 +2005 87 14.15360 14.15360 +2005 88 14.69170 14.69170 +2005 89 13.48900 13.48900 +2005 90 14.29280 14.29280 +2005 91 14.99370 14.99370 +2005 92 14.64400 14.64400 +2005 93 15.23280 15.23280 +2005 94 15.41890 15.41890 +2005 95 14.20630 14.20630 +2005 96 15.05610 15.05610 +2005 97 14.91320 14.91320 +2005 98 14.52300 14.52300 +2005 99 14.09310 14.09310 +2005 100 13.31650 13.31650 +2005 101 15.53420 15.53420 +2005 102 13.92430 13.92430 +2005 103 10.80460 10.80460 +2005 104 11.80890 11.80890 +2005 105 11.67560 11.67560 +2005 106 12.38800 12.38800 +2005 107 12.48520 12.48520 +2005 108 11.12220 11.12220 +2005 109 11.71760 11.71760 +2005 110 12.15160 12.15160 +2005 111 10.26500 10.26500 +2005 112 11.90920 11.90920 +2005 113 9.86068 9.86068 +2005 114 6.37993 6.37993 +2005 115 8.60885 8.60885 +2005 116 11.81410 11.81410 +2005 117 10.73780 10.73780 +2005 118 8.95228 8.95228 +2005 119 12.20340 12.20340 +2005 120 13.25340 13.25340 +2005 121 13.43550 13.43550 +2005 122 13.25370 13.25370 +2005 123 13.31970 13.31970 +2005 124 12.89430 12.89430 +2005 125 11.21310 11.21310 +2005 126 10.20270 10.20270 +2005 127 10.02800 10.02800 +2005 128 7.96255 7.96255 +2005 129 8.14969 8.14969 +2005 130 9.47499 9.47499 +2005 131 11.71060 11.71060 +2005 132 11.14170 11.14170 +2005 133 10.08580 10.08580 +2005 134 10.04510 10.04510 +2005 135 10.41380 10.41380 +2005 136 11.62760 11.62760 +2005 137 13.63130 13.63130 +2005 138 13.82060 13.82060 +2005 139 14.25420 14.25420 +2005 140 14.14000 14.14000 +2005 141 13.30480 13.30480 +2005 142 12.82420 12.82420 +2005 143 11.72100 11.72100 +2005 144 9.86555 9.86555 +2005 145 9.33208 9.33208 +2005 146 10.88400 10.88400 +2005 147 10.58780 10.58780 +2005 148 10.62940 10.62940 +2005 149 8.01779 8.01779 +2005 150 7.52642 7.52642 +2005 151 10.28220 10.28220 +2005 152 8.37471 8.37471 +2005 153 7.05190 7.05190 +2005 154 7.49287 7.49287 +2005 155 8.18779 8.18779 +2005 156 8.66264 8.66264 +2005 157 5.72283 5.72283 +2005 158 7.67469 7.67469 +2005 159 6.06650 6.06650 +2005 160 7.61796 7.61796 +2005 161 7.90643 7.90643 +2005 162 8.17855 8.17855 +2005 163 8.37524 8.37524 +2005 164 7.91055 7.91055 +2005 165 8.54603 8.54603 +2005 166 9.20429 9.20429 +2005 167 9.03594 9.03594 +2005 168 10.83290 10.83290 +2005 169 10.19590 10.19590 +2005 170 8.26812 8.26812 +2005 171 9.89481 9.89481 +2005 172 10.65430 10.65430 +2005 173 9.15791 9.15791 +2005 174 9.10498 9.10498 +2005 175 7.33127 7.33127 +2005 176 4.97077 4.97077 +2005 177 4.68451 4.68451 +2005 178 7.00402 7.00402 +2005 179 9.03229 9.03229 +2005 180 6.89356 6.89356 +2005 181 5.16921 5.16921 +2005 182 5.32490 5.32490 +2005 183 5.94629 5.94629 +2005 184 8.82699 8.82699 +2005 185 10.40800 10.40800 +2005 186 10.10910 10.10910 +2005 187 10.44550 10.44550 +2005 188 11.29920 11.29920 +2005 189 8.59489 8.59489 +2005 190 6.82676 6.82676 +2005 191 6.75361 6.75361 +2005 192 8.73033 8.73033 +2005 193 7.52667 7.52667 +2005 194 8.96566 8.96566 +2005 195 10.28250 10.28250 +2005 196 8.32813 8.32813 +2005 197 6.85350 6.85350 +2005 198 7.52887 7.52887 +2005 199 7.03898 7.03898 +2005 200 6.83662 6.83662 +2005 201 6.35894 6.35894 +2005 202 5.35793 5.35793 +2005 203 6.90660 6.90660 +2005 204 8.88103 8.88103 +2005 205 8.93385 8.93385 +2005 206 8.65736 8.65736 +2005 207 10.22140 10.22140 +2005 208 9.98707 9.98707 +2005 209 9.25599 9.25599 +2005 210 7.50931 7.50931 +2005 211 8.48250 8.48250 +2005 212 8.89025 8.89025 +2005 213 7.31352 7.31352 +2005 214 6.61147 6.61147 +2005 215 6.69059 6.69059 +2005 216 6.08460 6.08460 +2005 217 6.68288 6.68288 +2005 218 7.72420 7.72420 +2005 219 8.70113 8.70113 +2005 220 7.50414 7.50414 +2005 221 7.75393 7.75393 +2005 222 7.88293 7.88293 +2005 223 9.12138 9.12138 +2005 224 8.22821 8.22821 +2005 225 6.94784 6.94784 +2005 226 6.18369 6.18369 +2005 227 6.84966 6.84966 +2005 228 7.91779 7.91779 +2005 229 8.08638 8.08638 +2005 230 8.35930 8.35930 +2005 231 8.06954 8.06954 +2005 232 7.42841 7.42841 +2005 233 8.89136 8.89136 +2005 234 9.09751 9.09751 +2005 235 9.75056 9.75056 +2005 236 8.67518 8.67518 +2005 237 9.82823 9.82823 +2005 238 8.08877 8.08877 +2005 239 7.89569 7.89569 +2005 240 8.18650 8.18650 +2005 241 8.71149 8.71149 +2005 242 9.67329 9.67329 +2005 243 10.51540 10.51540 +2005 244 10.51720 10.51720 +2005 245 10.01830 10.01830 +2005 246 11.16100 11.16100 +2005 247 9.75956 9.75956 +2005 248 10.15930 10.15930 +2005 249 9.64518 9.64518 +2005 250 8.97859 8.97859 +2005 251 9.48985 9.48985 +2005 252 9.69259 9.69259 +2005 253 11.42060 11.42060 +2005 254 12.76870 12.76870 +2005 255 12.01080 12.01080 +2005 256 11.59640 11.59640 +2005 257 10.35380 10.35380 +2005 258 9.78117 9.78117 +2005 259 10.85720 10.85720 +2005 260 11.32470 11.32470 +2005 261 6.68348 6.68348 +2005 262 5.39893 5.39893 +2005 263 6.94064 6.94064 +2005 264 8.01542 8.01542 +2005 265 9.24311 9.24311 +2005 266 9.56353 9.56353 +2005 267 9.65499 9.65499 +2005 268 11.47040 11.47040 +2005 269 12.01260 12.01260 +2005 270 12.14430 12.14430 +2005 271 9.96250 9.96250 +2005 272 10.98250 10.98250 +2005 273 11.76970 11.76970 +2005 274 11.85530 11.85530 +2005 275 11.22530 11.22530 +2005 276 11.32300 11.32300 +2005 277 9.39804 9.39804 +2005 278 8.74110 8.74110 +2005 279 9.45159 9.45159 +2005 280 8.34858 8.34858 +2005 281 9.50886 9.50886 +2005 282 11.24560 11.24560 +2005 283 11.16480 11.16480 +2005 284 10.66630 10.66630 +2005 285 11.30700 11.30700 +2005 286 11.60760 11.60760 +2005 287 11.36360 11.36360 +2005 288 12.20960 12.20960 +2005 289 11.85820 11.85820 +2005 290 11.68050 11.68050 +2005 291 12.07690 12.07690 +2005 292 11.37960 11.37960 +2005 293 10.51810 10.51810 +2005 294 9.80337 9.80337 +2005 295 10.21440 10.21440 +2005 296 11.49540 11.49540 +2005 297 11.36690 11.36690 +2005 298 12.62180 12.62180 +2005 299 12.89090 12.89090 +2005 300 12.22830 12.22830 +2005 301 12.52830 12.52830 +2005 302 12.47730 12.47730 +2005 303 12.41850 12.41850 +2005 304 13.13770 13.13770 +2005 305 13.20240 13.20240 +2005 306 12.63810 12.63810 +2005 307 15.57010 15.57010 +2005 308 14.55750 14.55750 +2005 309 13.93200 13.93200 +2005 310 11.67450 11.67450 +2005 311 14.26100 14.26100 +2005 312 13.90660 13.90660 +2005 313 14.82540 14.82540 +2005 314 14.69000 14.69000 +2005 315 15.36290 15.36290 +2005 316 13.63270 13.63270 +2005 317 11.41750 11.41750 +2005 318 11.72040 11.72040 +2005 319 11.80800 11.80800 +2005 320 12.20410 12.20410 +2005 321 13.58420 13.58420 +2005 322 14.20770 14.20770 +2005 323 13.76450 13.76450 +2005 324 13.44950 13.44950 +2005 325 11.31160 11.31160 +2005 326 11.48590 11.48590 +2005 327 11.38670 11.38670 +2005 328 11.07160 11.07160 +2005 329 7.93657 7.93657 +2005 330 9.09063 9.09063 +2005 331 10.86530 10.86530 +2005 332 12.99700 12.99700 +2005 333 13.11250 13.11250 +2005 334 14.89930 14.89930 +2005 335 15.05880 15.05880 +2005 336 13.62200 13.62200 +2005 337 15.34010 15.34010 +2005 338 15.34120 15.34120 +2005 339 15.60760 15.60760 +2005 340 15.42620 15.42620 +2005 341 15.49570 15.49570 +2005 342 18.27290 18.27290 +2005 343 17.48990 17.48990 +2005 344 16.39370 16.39370 +2005 345 16.37230 16.37230 +2005 346 17.52950 17.52950 +2005 347 16.97700 16.97700 +2005 348 15.79000 15.79000 +2005 349 16.04540 16.04540 +2005 350 15.75820 15.75820 +2005 351 17.13690 17.13690 +2005 352 15.57040 15.57040 +2005 353 16.29750 16.29750 +2005 354 14.14080 14.14080 +2005 355 14.63690 14.63690 +2005 356 14.90150 14.90150 +2005 357 14.31820 14.31820 +2005 358 14.57580 14.57580 +2005 359 16.70330 16.70330 +2005 360 16.21640 16.21640 +2005 361 15.68440 15.68440 +2005 362 15.63370 15.63370 +2005 363 15.77630 15.77630 +2005 364 17.74390 17.74390 +2005 365 16.96170 16.96170 +2006 1 16.50200 16.50200 +2006 2 15.46320 15.46320 +2006 3 15.82210 15.82210 +2006 4 13.10750 13.10750 +2006 5 12.68890 12.68890 +2006 6 13.50430 13.50430 +2006 7 15.12830 15.12830 +2006 8 17.48020 17.48020 +2006 9 17.04570 17.04570 +2006 10 17.38340 17.38340 +2006 11 17.66680 17.66680 +2006 12 17.06440 17.06440 +2006 13 19.19030 19.19030 +2006 14 17.42360 17.42360 +2006 15 16.76930 16.76930 +2006 16 17.00540 17.00540 +2006 17 16.48270 16.48270 +2006 18 16.42630 16.42630 +2006 19 15.26940 15.26940 +2006 20 15.44030 15.44030 +2006 21 16.70350 16.70350 +2006 22 16.65630 16.65630 +2006 23 17.08930 17.08930 +2006 24 18.72770 18.72770 +2006 25 16.78750 16.78750 +2006 26 17.79390 17.79390 +2006 27 19.74950 19.74950 +2006 28 20.02240 20.02240 +2006 29 19.81230 19.81230 +2006 30 19.77820 19.77820 +2006 31 19.49920 19.49920 +2006 32 18.99590 18.99590 +2006 33 19.55610 19.55610 +2006 34 18.55180 18.55180 +2006 35 18.87550 18.87550 +2006 36 15.99890 15.99890 +2006 37 16.20980 16.20980 +2006 38 15.14870 15.14870 +2006 39 14.19900 14.19900 +2006 40 15.64380 15.64380 +2006 41 17.88540 17.88540 +2006 42 18.39060 18.39060 +2006 43 16.97640 16.97640 +2006 44 15.98980 15.98980 +2006 45 17.18410 17.18410 +2006 46 17.19890 17.19890 +2006 47 17.88750 17.88750 +2006 48 18.24220 18.24220 +2006 49 18.22260 18.22260 +2006 50 18.21250 18.21250 +2006 51 16.39770 16.39770 +2006 52 17.19600 17.19600 +2006 53 15.95880 15.95880 +2006 54 13.58450 13.58450 +2006 55 15.07500 15.07500 +2006 56 15.87330 15.87330 +2006 57 15.08210 15.08210 +2006 58 16.61530 16.61530 +2006 59 15.33220 15.33220 +2006 60 14.25120 14.25120 +2006 61 13.60380 13.60380 +2006 62 11.41050 11.41050 +2006 63 12.03350 12.03350 +2006 64 15.18980 15.18980 +2006 65 15.62960 15.62960 +2006 66 15.68180 15.68180 +2006 67 12.63560 12.63560 +2006 68 11.98840 11.98840 +2006 69 15.35640 15.35640 +2006 70 15.08110 15.08110 +2006 71 13.13070 13.13070 +2006 72 12.53600 12.53600 +2006 73 15.47800 15.47800 +2006 74 15.59470 15.59470 +2006 75 16.38440 16.38440 +2006 76 15.18370 15.18370 +2006 77 16.43220 16.43220 +2006 78 16.19950 16.19950 +2006 79 15.41030 15.41030 +2006 80 14.90300 14.90300 +2006 81 14.86050 14.86050 +2006 82 14.08270 14.08270 +2006 83 13.39880 13.39880 +2006 84 12.64100 12.64100 +2006 85 16.03850 16.03850 +2006 86 16.41810 16.41810 +2006 87 14.98830 14.98830 +2006 88 12.53470 12.53470 +2006 89 13.71290 13.71290 +2006 90 15.18710 15.18710 +2006 91 15.77110 15.77110 +2006 92 17.09620 17.09620 +2006 93 15.11330 15.11330 +2006 94 14.80290 14.80290 +2006 95 13.47200 13.47200 +2006 96 14.92950 14.92950 +2006 97 13.98060 13.98060 +2006 98 13.64750 13.64750 +2006 99 12.83990 12.83990 +2006 100 12.15450 12.15450 +2006 101 11.45290 11.45290 +2006 102 11.76180 11.76180 +2006 103 12.27650 12.27650 +2006 104 11.43110 11.43110 +2006 105 12.19600 12.19600 +2006 106 13.03740 13.03740 +2006 107 13.52780 13.52780 +2006 108 13.37460 13.37460 +2006 109 12.05880 12.05880 +2006 110 13.29620 13.29620 +2006 111 14.55320 14.55320 +2006 112 15.41970 15.41970 +2006 113 15.11770 15.11770 +2006 114 15.08860 15.08860 +2006 115 13.15420 13.15420 +2006 116 12.43140 12.43140 +2006 117 13.43270 13.43270 +2006 118 13.49350 13.49350 +2006 119 12.81970 12.81970 +2006 120 12.40290 12.40290 +2006 121 11.69160 11.69160 +2006 122 13.07980 13.07980 +2006 123 12.57870 12.57870 +2006 124 9.80228 9.80228 +2006 125 11.64950 11.64950 +2006 126 10.92810 10.92810 +2006 127 10.34420 10.34420 +2006 128 9.04795 9.04795 +2006 129 10.16960 10.16960 +2006 130 9.38278 9.38278 +2006 131 8.67820 8.67820 +2006 132 8.07189 8.07189 +2006 133 8.55296 8.55296 +2006 134 6.60851 6.60851 +2006 135 6.84089 6.84089 +2006 136 7.63664 7.63664 +2006 137 8.24835 8.24835 +2006 138 9.68261 9.68261 +2006 139 8.73151 8.73151 +2006 140 9.44813 9.44813 +2006 141 10.80890 10.80890 +2006 142 11.10380 11.10380 +2006 143 12.25380 12.25380 +2006 144 13.77780 13.77780 +2006 145 13.35620 13.35620 +2006 146 13.84940 13.84940 +2006 147 11.35700 11.35700 +2006 148 10.11580 10.11580 +2006 149 9.12962 9.12962 +2006 150 7.70545 7.70545 +2006 151 7.25843 7.25843 +2006 152 6.04232 6.04232 +2006 153 7.22223 7.22223 +2006 154 11.30490 11.30490 +2006 155 7.12632 7.12632 +2006 156 4.55570 4.55570 +2006 157 4.84982 4.84982 +2006 158 5.78040 5.78040 +2006 159 7.84866 7.84866 +2006 160 8.79418 8.79418 +2006 161 9.10165 9.10165 +2006 162 10.73830 10.73830 +2006 163 6.65166 6.65166 +2006 164 4.72094 4.72094 +2006 165 8.04061 8.04061 +2006 166 7.68076 7.68076 +2006 167 6.04276 6.04276 +2006 168 4.35607 4.35607 +2006 169 4.67690 4.67690 +2006 170 6.84795 6.84795 +2006 171 6.65062 6.65062 +2006 172 5.83825 5.83825 +2006 173 4.67600 4.67600 +2006 174 6.41578 6.41578 +2006 175 5.86422 5.86422 +2006 176 5.18068 5.18068 +2006 177 5.73947 5.73947 +2006 178 5.01039 5.01039 +2006 179 4.05604 4.05604 +2006 180 5.12052 5.12052 +2006 181 6.76822 6.76822 +2006 182 6.03311 6.03311 +2006 183 5.16453 5.16453 +2006 184 8.74936 8.74936 +2006 185 7.28469 7.28469 +2006 186 6.68588 6.68588 +2006 187 7.90108 7.90108 +2006 188 8.45082 8.45082 +2006 189 9.41848 9.41848 +2006 190 8.38467 8.38467 +2006 191 7.92963 7.92963 +2006 192 9.79163 9.79163 +2006 193 8.94232 8.94232 +2006 194 7.60332 7.60332 +2006 195 9.78766 9.78766 +2006 196 10.15840 10.15840 +2006 197 8.57388 8.57388 +2006 198 7.19783 7.19783 +2006 199 8.12014 8.12014 +2006 200 8.84308 8.84308 +2006 201 6.41429 6.41429 +2006 202 4.17139 4.17139 +2006 203 5.49312 5.49312 +2006 204 7.01113 7.01113 +2006 205 7.13913 7.13913 +2006 206 6.83596 6.83596 +2006 207 5.77184 5.77184 +2006 208 5.78708 5.78708 +2006 209 5.76232 5.76232 +2006 210 7.49756 7.49756 +2006 211 10.09480 10.09480 +2006 212 10.43190 10.43190 +2006 213 11.11900 11.11900 +2006 214 9.44549 9.44549 +2006 215 8.72794 8.72794 +2006 216 8.54892 8.54892 +2006 217 10.92620 10.92620 +2006 218 11.35430 11.35430 +2006 219 8.40237 8.40237 +2006 220 6.81816 6.81816 +2006 221 5.95656 5.95656 +2006 222 6.78700 6.78700 +2006 223 6.38276 6.38276 +2006 224 6.65540 6.65540 +2006 225 5.97035 5.97035 +2006 226 5.11935 5.11935 +2006 227 5.46025 5.46025 +2006 228 5.84218 5.84218 +2006 229 6.48882 6.48882 +2006 230 7.88063 7.88063 +2006 231 8.22093 8.22093 +2006 232 7.75162 7.75162 +2006 233 4.86054 4.86054 +2006 234 4.31509 4.31509 +2006 235 5.54407 5.54407 +2006 236 8.51759 8.51759 +2006 237 8.95691 8.95691 +2006 238 7.85948 7.85948 +2006 239 6.17973 6.17973 +2006 240 8.04616 8.04616 +2006 241 8.82503 8.82503 +2006 242 8.07214 8.07214 +2006 243 10.55140 10.55140 +2006 244 8.67014 8.67014 +2006 245 10.56670 10.56670 +2006 246 10.33030 10.33030 +2006 247 9.77461 9.77461 +2006 248 10.89980 10.89980 +2006 249 8.99971 8.99971 +2006 250 7.90717 7.90717 +2006 251 7.96633 7.96633 +2006 252 10.03030 10.03030 +2006 253 9.31506 9.31506 +2006 254 7.74844 7.74844 +2006 255 8.62153 8.62153 +2006 256 8.33033 8.33033 +2006 257 8.49001 8.49001 +2006 258 8.80416 8.80416 +2006 259 9.33894 9.33894 +2006 260 8.03373 8.03373 +2006 261 8.27864 8.27864 +2006 262 10.57090 10.57090 +2006 263 11.16810 11.16810 +2006 264 12.69590 12.69590 +2006 265 12.02020 12.02020 +2006 266 13.25100 13.25100 +2006 267 13.07370 13.07370 +2006 268 11.67110 11.67110 +2006 269 11.72500 11.72500 +2006 270 11.92290 11.92290 +2006 271 11.79320 11.79320 +2006 272 11.89500 11.89500 +2006 273 12.24520 12.24520 +2006 274 10.83850 10.83850 +2006 275 10.66480 10.66480 +2006 276 10.72220 10.72220 +2006 277 7.88068 7.88068 +2006 278 7.32540 7.32540 +2006 279 8.83087 8.83087 +2006 280 11.28820 11.28820 +2006 281 11.10120 11.10120 +2006 282 7.48495 7.48495 +2006 283 8.82515 8.82515 +2006 284 11.88470 11.88470 +2006 285 13.93930 13.93930 +2006 286 13.48980 13.48980 +2006 287 13.20520 13.20520 +2006 288 10.55180 10.55180 +2006 289 8.98509 8.98509 +2006 290 8.98397 8.98397 +2006 291 9.33461 9.33461 +2006 292 13.76650 13.76650 +2006 293 12.31720 12.31720 +2006 294 12.50590 12.50590 +2006 295 11.16520 11.16520 +2006 296 10.12510 10.12510 +2006 297 9.32483 9.32483 +2006 298 10.69490 10.69490 +2006 299 9.68890 9.68890 +2006 300 11.99110 11.99110 +2006 301 11.86390 11.86390 +2006 302 10.43960 10.43960 +2006 303 10.31980 10.31980 +2006 304 10.84080 10.84080 +2006 305 11.07240 11.07240 +2006 306 11.78250 11.78250 +2006 307 13.04540 13.04540 +2006 308 12.77540 12.77540 +2006 309 13.94700 13.94700 +2006 310 13.95330 13.95330 +2006 311 12.69780 12.69780 +2006 312 8.34835 8.34835 +2006 313 8.66557 8.66557 +2006 314 11.49630 11.49630 +2006 315 12.48190 12.48190 +2006 316 13.46530 13.46530 +2006 317 15.71780 15.71780 +2006 318 15.78830 15.78830 +2006 319 15.69080 15.69080 +2006 320 16.53520 16.53520 +2006 321 13.50670 13.50670 +2006 322 11.56350 11.56350 +2006 323 11.51070 11.51070 +2006 324 11.45700 11.45700 +2006 325 12.26110 12.26110 +2006 326 15.14430 15.14430 +2006 327 14.69930 14.69930 +2006 328 12.73910 12.73910 +2006 329 13.79480 13.79480 +2006 330 11.61570 11.61570 +2006 331 10.03240 10.03240 +2006 332 12.85040 12.85040 +2006 333 13.05690 13.05690 +2006 334 10.29590 10.29590 +2006 335 10.88370 10.88370 +2006 336 13.95630 13.95630 +2006 337 14.72080 14.72080 +2006 338 13.55900 13.55900 +2006 339 12.75110 12.75110 +2006 340 13.88200 13.88200 +2006 341 12.52940 12.52940 +2006 342 10.45780 10.45780 +2006 343 10.51370 10.51370 +2006 344 14.20760 14.20760 +2006 345 14.50060 14.50060 +2006 346 14.39170 14.39170 +2006 347 13.85130 13.85130 +2006 348 14.66020 14.66020 +2006 349 14.82310 14.82310 +2006 350 14.26930 14.26930 +2006 351 14.08770 14.08770 +2006 352 14.79470 14.79470 +2006 353 14.66380 14.66380 +2006 354 10.78660 10.78660 +2006 355 10.52760 10.52760 +2006 356 10.29960 10.29960 +2006 357 11.38300 11.38300 +2006 358 15.03310 15.03310 +2006 359 17.31800 17.31800 +2006 360 15.15220 15.15220 +2006 361 14.71770 14.71770 +2006 362 14.25860 14.25860 +2006 363 12.55390 12.55390 +2006 364 11.98910 11.98910 +2006 365 10.48150 10.48150 +2007 1 11.15560 11.15560 +2007 2 12.72050 12.72050 +2007 3 13.80400 13.80400 +2007 4 15.60350 15.60350 +2007 5 14.08280 14.08280 +2007 6 16.01750 16.01750 +2007 7 15.18650 15.18650 +2007 8 15.00050 15.00050 +2007 9 17.66940 17.66940 +2007 10 17.76410 17.76410 +2007 11 17.43620 17.43620 +2007 12 17.46340 17.46340 +2007 13 18.07570 18.07570 +2007 14 18.64490 18.64490 +2007 15 18.21610 18.21610 +2007 16 16.37170 16.37170 +2007 17 14.76590 14.76590 +2007 18 16.31550 16.31550 +2007 19 16.22060 16.22060 +2007 20 17.32080 17.32080 +2007 21 18.59540 18.59540 +2007 22 18.24230 18.24230 +2007 23 18.18110 18.18110 +2007 24 19.73880 19.73880 +2007 25 17.76740 17.76740 +2007 26 17.40980 17.40980 +2007 27 18.13810 18.13810 +2007 28 18.16210 18.16210 +2007 29 15.41740 15.41740 +2007 30 15.55410 15.55410 +2007 31 16.31610 16.31610 +2007 32 15.72970 15.72970 +2007 33 14.88590 14.88590 +2007 34 15.63100 15.63100 +2007 35 16.80620 16.80620 +2007 36 17.61510 17.61510 +2007 37 17.46440 17.46440 +2007 38 17.99230 17.99230 +2007 39 17.94020 17.94020 +2007 40 17.43190 17.43190 +2007 41 15.88280 15.88280 +2007 42 15.15150 15.15150 +2007 43 14.87780 14.87780 +2007 44 16.25770 16.25770 +2007 45 16.70870 16.70870 +2007 46 16.05140 16.05140 +2007 47 15.13900 15.13900 +2007 48 17.21320 17.21320 +2007 49 18.22830 18.22830 +2007 50 17.16220 17.16220 +2007 51 18.40590 18.40590 +2007 52 17.65780 17.65780 +2007 53 17.51930 17.51930 +2007 54 17.47140 17.47140 +2007 55 16.69230 16.69230 +2007 56 17.45710 17.45710 +2007 57 19.26170 19.26170 +2007 58 16.84090 16.84090 +2007 59 15.31080 15.31080 +2007 60 17.07840 17.07840 +2007 61 17.52200 17.52200 +2007 62 16.76810 16.76810 +2007 63 17.86830 17.86830 +2007 64 17.29150 17.29150 +2007 65 17.13000 17.13000 +2007 66 17.88130 17.88130 +2007 67 16.66660 16.66660 +2007 68 17.69190 17.69190 +2007 69 17.14890 17.14890 +2007 70 17.06740 17.06740 +2007 71 15.77870 15.77870 +2007 72 11.85900 11.85900 +2007 73 11.41590 11.41590 +2007 74 14.33560 14.33560 +2007 75 15.06660 15.06660 +2007 76 14.80980 14.80980 +2007 77 13.46540 13.46540 +2007 78 14.28830 14.28830 +2007 79 14.32110 14.32110 +2007 80 15.93370 15.93370 +2007 81 14.94260 14.94260 +2007 82 14.49050 14.49050 +2007 83 15.49430 15.49430 +2007 84 15.71870 15.71870 +2007 85 16.15140 16.15140 +2007 86 15.35190 15.35190 +2007 87 15.84860 15.84860 +2007 88 17.25100 17.25100 +2007 89 17.29890 17.29890 +2007 90 16.16400 16.16400 +2007 91 15.02210 15.02210 +2007 92 14.19340 14.19340 +2007 93 13.55580 13.55580 +2007 94 13.08990 13.08990 +2007 95 13.08460 13.08460 +2007 96 11.96970 11.96970 +2007 97 13.91250 13.91250 +2007 98 13.77460 13.77460 +2007 99 14.11870 14.11870 +2007 100 13.25190 13.25190 +2007 101 10.43520 10.43520 +2007 102 10.41160 10.41160 +2007 103 10.84450 10.84450 +2007 104 12.56970 12.56970 +2007 105 12.05070 12.05070 +2007 106 12.66750 12.66750 +2007 107 11.67280 11.67280 +2007 108 9.89134 9.89134 +2007 109 10.03070 10.03070 +2007 110 10.58680 10.58680 +2007 111 11.31890 11.31890 +2007 112 10.41240 10.41240 +2007 113 11.63370 11.63370 +2007 114 11.34840 11.34840 +2007 115 12.05210 12.05210 +2007 116 11.36270 11.36270 +2007 117 12.18230 12.18230 +2007 118 11.73130 11.73130 +2007 119 13.54420 13.54420 +2007 120 15.14820 15.14820 +2007 121 13.13880 13.13880 +2007 122 12.81270 12.81270 +2007 123 12.36850 12.36850 +2007 124 12.27610 12.27610 +2007 125 11.82750 11.82750 +2007 126 13.30590 13.30590 +2007 127 12.17690 12.17690 +2007 128 9.89193 9.89193 +2007 129 10.62310 10.62310 +2007 130 10.84460 10.84460 +2007 131 11.14790 11.14790 +2007 132 9.88239 9.88239 +2007 133 10.47960 10.47960 +2007 134 12.37830 12.37830 +2007 135 12.47770 12.47770 +2007 136 12.64970 12.64970 +2007 137 11.46500 11.46500 +2007 138 10.73500 10.73500 +2007 139 11.86570 11.86570 +2007 140 13.12470 13.12470 +2007 141 12.73500 12.73500 +2007 142 13.65730 13.65730 +2007 143 12.36870 12.36870 +2007 144 10.62000 10.62000 +2007 145 11.09280 11.09280 +2007 146 10.86180 10.86180 +2007 147 9.24796 9.24796 +2007 148 8.38679 8.38679 +2007 149 8.95740 8.95740 +2007 150 8.81817 8.81817 +2007 151 9.28859 9.28859 +2007 152 11.15170 11.15170 +2007 153 8.95787 8.95787 +2007 154 7.56181 7.56181 +2007 155 9.83358 9.83358 +2007 156 10.75060 10.75060 +2007 157 10.31970 10.31970 +2007 158 9.74122 9.74122 +2007 159 8.73166 8.73166 +2007 160 7.16649 7.16649 +2007 161 9.86824 9.86824 +2007 162 9.79826 9.79826 +2007 163 8.34918 8.34918 +2007 164 8.87491 8.87491 +2007 165 7.37720 7.37720 +2007 166 5.26862 5.26862 +2007 167 7.06069 7.06069 +2007 168 6.33364 6.33364 +2007 169 4.26960 4.26960 +2007 170 6.01147 6.01147 +2007 171 10.38560 10.38560 +2007 172 8.30505 8.30505 +2007 173 7.85854 7.85854 +2007 174 8.49735 8.49735 +2007 175 8.11423 8.11423 +2007 176 4.43178 4.43178 +2007 177 4.17519 4.17519 +2007 178 4.55833 4.55833 +2007 179 7.86255 7.86255 +2007 180 11.53280 11.53280 +2007 181 11.65280 11.65280 +2007 182 9.75490 9.75490 +2007 183 8.64187 8.64187 +2007 184 8.81865 8.81865 +2007 185 9.91645 9.91645 +2007 186 9.21405 9.21405 +2007 187 5.82062 5.82062 +2007 188 5.51942 5.51942 +2007 189 6.42015 6.42015 +2007 190 7.01368 7.01368 +2007 191 6.03095 6.03095 +2007 192 6.90490 6.90490 +2007 193 5.82647 5.82647 +2007 194 4.90961 4.90961 +2007 195 5.71235 5.71235 +2007 196 7.07968 7.07968 +2007 197 8.66344 8.66344 +2007 198 8.61580 8.61580 +2007 199 8.51244 8.51244 +2007 200 8.22700 8.22700 +2007 201 7.91801 7.91801 +2007 202 5.87715 5.87715 +2007 203 5.34533 5.34533 +2007 204 7.89582 7.89582 +2007 205 8.16920 8.16920 +2007 206 9.16238 9.16238 +2007 207 9.39325 9.39325 +2007 208 8.51002 8.51002 +2007 209 10.31240 10.31240 +2007 210 10.34150 10.34150 +2007 211 9.93737 9.93737 +2007 212 9.02176 9.02176 +2007 213 7.96152 7.96152 +2007 214 8.96119 8.96119 +2007 215 8.41362 8.41362 +2007 216 8.56834 8.56834 +2007 217 7.50725 7.50725 +2007 218 6.71687 6.71687 +2007 219 5.97571 5.97571 +2007 220 8.69186 8.69186 +2007 221 9.86195 9.86195 +2007 222 10.73850 10.73850 +2007 223 9.55560 9.55560 +2007 224 7.15811 7.15811 +2007 225 5.22553 5.22553 +2007 226 5.96440 5.96440 +2007 227 8.01883 8.01883 +2007 228 10.12100 10.12100 +2007 229 9.93973 9.93973 +2007 230 9.96331 9.96331 +2007 231 6.84618 6.84618 +2007 232 6.13626 6.13626 +2007 233 7.55543 7.55543 +2007 234 6.82272 6.82272 +2007 235 6.70165 6.70165 +2007 236 7.02814 7.02814 +2007 237 7.37359 7.37359 +2007 238 8.39739 8.39739 +2007 239 10.25650 10.25650 +2007 240 8.56089 8.56089 +2007 241 9.55259 9.55259 +2007 242 9.32659 9.32659 +2007 243 9.65578 9.65578 +2007 244 9.83222 9.83222 +2007 245 8.83715 8.83715 +2007 246 9.82462 9.82462 +2007 247 7.03743 7.03743 +2007 248 5.64230 5.64230 +2007 249 5.62739 5.62739 +2007 250 7.90374 7.90374 +2007 251 7.90798 7.90798 +2007 252 9.31369 9.31369 +2007 253 7.99000 7.99000 +2007 254 7.80864 7.80864 +2007 255 8.69755 8.69755 +2007 256 9.93487 9.93487 +2007 257 10.51360 10.51360 +2007 258 11.72910 11.72910 +2007 259 11.41980 11.41980 +2007 260 11.18650 11.18650 +2007 261 11.58790 11.58790 +2007 262 11.50310 11.50310 +2007 263 9.90333 9.90333 +2007 264 9.95252 9.95252 +2007 265 12.02380 12.02380 +2007 266 11.70660 11.70660 +2007 267 9.42575 9.42575 +2007 268 8.21539 8.21539 +2007 269 7.18276 7.18276 +2007 270 7.62166 7.62166 +2007 271 9.37515 9.37515 +2007 272 10.62300 10.62300 +2007 273 11.57680 11.57680 +2007 274 9.58622 9.58622 +2007 275 7.48511 7.48511 +2007 276 7.97413 7.97413 +2007 277 10.37970 10.37970 +2007 278 10.87790 10.87790 +2007 279 12.33270 12.33270 +2007 280 14.08200 14.08200 +2007 281 12.44670 12.44670 +2007 282 13.24260 13.24260 +2007 283 12.22040 12.22040 +2007 284 10.01300 10.01300 +2007 285 11.14960 11.14960 +2007 286 9.70506 9.70506 +2007 287 9.00584 9.00584 +2007 288 10.87320 10.87320 +2007 289 13.25030 13.25030 +2007 290 9.38252 9.38252 +2007 291 7.30378 7.30378 +2007 292 7.74987 7.74987 +2007 293 10.99840 10.99840 +2007 294 11.46810 11.46810 +2007 295 12.47790 12.47790 +2007 296 12.13260 12.13260 +2007 297 11.48250 11.48250 +2007 298 11.32770 11.32770 +2007 299 9.96900 9.96900 +2007 300 8.91624 8.91624 +2007 301 10.91610 10.91610 +2007 302 11.63300 11.63300 +2007 303 11.96150 11.96150 +2007 304 12.04390 12.04390 +2007 305 13.49320 13.49320 +2007 306 13.63190 13.63190 +2007 307 13.53790 13.53790 +2007 308 14.09920 14.09920 +2007 309 11.30020 11.30020 +2007 310 12.08420 12.08420 +2007 311 10.85030 10.85030 +2007 312 12.08390 12.08390 +2007 313 12.16940 12.16940 +2007 314 12.53110 12.53110 +2007 315 12.57010 12.57010 +2007 316 11.07030 11.07030 +2007 317 10.36480 10.36480 +2007 318 10.55100 10.55100 +2007 319 11.71170 11.71170 +2007 320 13.03630 13.03630 +2007 321 12.33820 12.33820 +2007 322 14.55250 14.55250 +2007 323 14.74160 14.74160 +2007 324 16.03050 16.03050 +2007 325 14.77480 14.77480 +2007 326 14.82080 14.82080 +2007 327 15.43140 15.43140 +2007 328 18.18070 18.18070 +2007 329 17.51600 17.51600 +2007 330 17.02510 17.02510 +2007 331 13.89690 13.89690 +2007 332 12.13200 12.13200 +2007 333 13.40370 13.40370 +2007 334 13.44970 13.44970 +2007 335 15.01550 15.01550 +2007 336 15.53480 15.53480 +2007 337 15.99010 15.99010 +2007 338 14.63050 14.63050 +2007 339 15.37420 15.37420 +2007 340 13.50860 13.50860 +2007 341 15.98680 15.98680 +2007 342 15.50480 15.50480 +2007 343 15.16270 15.16270 +2007 344 15.21340 15.21340 +2007 345 15.85740 15.85740 +2007 346 16.35800 16.35800 +2007 347 16.88780 16.88780 +2007 348 16.12400 16.12400 +2007 349 15.45840 15.45840 +2007 350 16.42330 16.42330 +2007 351 17.04760 17.04760 +2007 352 16.64180 16.64180 +2007 353 15.75170 15.75170 +2007 354 15.39480 15.39480 +2007 355 14.23670 14.23670 +2007 356 13.80090 13.80090 +2007 357 14.82460 14.82460 +2007 358 16.12350 16.12350 +2007 359 12.96020 12.96020 +2007 360 12.85780 12.85780 +2007 361 14.95320 14.95320 +2007 362 16.28670 16.28670 +2007 363 16.23820 16.23820 +2007 364 17.02430 17.02430 +2007 365 15.90890 15.90890 +2008 1 16.63050 16.63050 +2008 2 17.35480 17.35480 +2008 3 17.25260 17.25260 +2008 4 17.33110 17.33110 +2008 5 17.47080 17.47080 +2008 6 18.49570 18.49570 +2008 7 17.68760 17.68760 +2008 8 18.33540 18.33540 +2008 9 18.36530 18.36530 +2008 10 15.18880 15.18880 +2008 11 16.36390 16.36390 +2008 12 17.82260 17.82260 +2008 13 18.09410 18.09410 +2008 14 19.78070 19.78070 +2008 15 19.18240 19.18240 +2008 16 20.04320 20.04320 +2008 17 19.67920 19.67920 +2008 18 17.45720 17.45720 +2008 19 17.97820 17.97820 +2008 20 19.37530 19.37530 +2008 21 20.39350 20.39350 +2008 22 18.69000 18.69000 +2008 23 17.97370 17.97370 +2008 24 17.18840 17.18840 +2008 25 16.55550 16.55550 +2008 26 16.78130 16.78130 +2008 27 17.66010 17.66010 +2008 28 18.88810 18.88810 +2008 29 19.17030 19.17030 +2008 30 18.36670 18.36670 +2008 31 18.22140 18.22140 +2008 32 18.70090 18.70090 +2008 33 18.04240 18.04240 +2008 34 19.66770 19.66770 +2008 35 15.08250 15.08250 +2008 36 14.29560 14.29560 +2008 37 15.13150 15.13150 +2008 38 16.63800 16.63800 +2008 39 17.57200 17.57200 +2008 40 17.74280 17.74280 +2008 41 19.26710 19.26710 +2008 42 15.94630 15.94630 +2008 43 16.89200 16.89200 +2008 44 16.11630 16.11630 +2008 45 16.06480 16.06480 +2008 46 14.18250 14.18250 +2008 47 15.24420 15.24420 +2008 48 17.01060 17.01060 +2008 49 16.87930 16.87930 +2008 50 16.05450 16.05450 +2008 51 16.34450 16.34450 +2008 52 15.81760 15.81760 +2008 53 16.27680 16.27680 +2008 54 16.93900 16.93900 +2008 55 18.07610 18.07610 +2008 56 16.54100 16.54100 +2008 57 16.02540 16.02540 +2008 58 16.79600 16.79600 +2008 59 17.38780 17.38780 +2008 60 17.70280 17.70280 +2008 61 17.65200 17.65200 +2008 62 15.90080 15.90080 +2008 63 14.19490 14.19490 +2008 64 15.56850 15.56850 +2008 65 14.35850 14.35850 +2008 66 14.77720 14.77720 +2008 67 15.70150 15.70150 +2008 68 15.13680 15.13680 +2008 69 15.34920 15.34920 +2008 70 15.86450 15.86450 +2008 71 16.00150 16.00150 +2008 72 15.87230 15.87230 +2008 73 15.75330 15.75330 +2008 74 15.42220 15.42220 +2008 75 16.01380 16.01380 +2008 76 15.42500 15.42500 +2008 77 16.59540 16.59540 +2008 78 16.41380 16.41380 +2008 79 17.13230 17.13230 +2008 80 17.29250 17.29250 +2008 81 17.30680 17.30680 +2008 82 16.83600 16.83600 +2008 83 16.71310 16.71310 +2008 84 16.10990 16.10990 +2008 85 16.00860 16.00860 +2008 86 16.13430 16.13430 +2008 87 16.15470 16.15470 +2008 88 15.88100 15.88100 +2008 89 16.45270 16.45270 +2008 90 16.96020 16.96020 +2008 91 16.93790 16.93790 +2008 92 14.78170 14.78170 +2008 93 13.47720 13.47720 +2008 94 13.77320 13.77320 +2008 95 14.41910 14.41910 +2008 96 14.74610 14.74610 +2008 97 14.24350 14.24350 +2008 98 12.81010 12.81010 +2008 99 11.81980 11.81980 +2008 100 12.04950 12.04950 +2008 101 13.21750 13.21750 +2008 102 13.00750 13.00750 +2008 103 13.10460 13.10460 +2008 104 12.91740 12.91740 +2008 105 15.52120 15.52120 +2008 106 16.40440 16.40440 +2008 107 15.84700 15.84700 +2008 108 14.06660 14.06660 +2008 109 10.68070 10.68070 +2008 110 8.60726 8.60726 +2008 111 9.35088 9.35088 +2008 112 11.09780 11.09780 +2008 113 12.11220 12.11220 +2008 114 12.02460 12.02460 +2008 115 11.17660 11.17660 +2008 116 12.48440 12.48440 +2008 117 14.03740 14.03740 +2008 118 15.55250 15.55250 +2008 119 15.52200 15.52200 +2008 120 14.62380 14.62380 +2008 121 12.12130 12.12130 +2008 122 9.82620 9.82620 +2008 123 8.33941 8.33941 +2008 124 7.29626 7.29626 +2008 125 9.40008 9.40008 +2008 126 9.12370 9.12370 +2008 127 8.79075 8.79075 +2008 128 10.19070 10.19070 +2008 129 11.45150 11.45150 +2008 130 11.65990 11.65990 +2008 131 11.73780 11.73780 +2008 132 9.29846 9.29846 +2008 133 7.65911 7.65911 +2008 134 9.40793 9.40793 +2008 135 9.31915 9.31915 +2008 136 7.60295 7.60295 +2008 137 7.97388 7.97388 +2008 138 7.81663 7.81663 +2008 139 8.42267 8.42267 +2008 140 9.67383 9.67383 +2008 141 9.44202 9.44202 +2008 142 9.20428 9.20428 +2008 143 8.77950 8.77950 +2008 144 9.94796 9.94796 +2008 145 9.38275 9.38275 +2008 146 8.41760 8.41760 +2008 147 8.10599 8.10599 +2008 148 7.96585 7.96585 +2008 149 6.84200 6.84200 +2008 150 6.93193 6.93193 +2008 151 7.88921 7.88921 +2008 152 9.30456 9.30456 +2008 153 9.40232 9.40232 +2008 154 8.10606 8.10606 +2008 155 8.26219 8.26219 +2008 156 5.77062 5.77062 +2008 157 7.97985 7.97985 +2008 158 9.51838 9.51838 +2008 159 6.52127 6.52127 +2008 160 8.55458 8.55458 +2008 161 8.24031 8.24031 +2008 162 6.86237 6.86237 +2008 163 7.70591 7.70591 +2008 164 9.10170 9.10170 +2008 165 8.44584 8.44584 +2008 166 10.41640 10.41640 +2008 167 11.98030 11.98030 +2008 168 11.64590 11.64590 +2008 169 7.53778 7.53778 +2008 170 6.02840 6.02840 +2008 171 6.36903 6.36903 +2008 172 8.40561 8.40561 +2008 173 11.34140 11.34140 +2008 174 9.26531 9.26531 +2008 175 6.11384 6.11384 +2008 176 6.82272 6.82272 +2008 177 8.29815 8.29815 +2008 178 8.58502 8.58502 +2008 179 6.01475 6.01475 +2008 180 5.43004 5.43004 +2008 181 5.83383 5.83383 +2008 182 5.39499 5.39499 +2008 183 7.76350 7.76350 +2008 184 9.39269 9.39269 +2008 185 7.68077 7.68077 +2008 186 3.98759 3.98759 +2008 187 4.24523 4.24523 +2008 188 4.70512 4.70512 +2008 189 3.98816 3.98816 +2008 190 4.70552 4.70552 +2008 191 4.79787 4.79787 +2008 192 9.54072 9.54072 +2008 193 11.12970 11.12970 +2008 194 9.03567 9.03567 +2008 195 6.79557 6.79557 +2008 196 6.30124 6.30124 +2008 197 6.16732 6.16732 +2008 198 8.87235 8.87235 +2008 199 10.25770 10.25770 +2008 200 11.25250 11.25250 +2008 201 8.97520 8.97520 +2008 202 8.22337 8.22337 +2008 203 8.26512 8.26512 +2008 204 8.42178 8.42178 +2008 205 7.92279 7.92279 +2008 206 5.95696 5.95696 +2008 207 5.11262 5.11262 +2008 208 7.75079 7.75079 +2008 209 7.00758 7.00758 +2008 210 7.42203 7.42203 +2008 211 9.86561 9.86561 +2008 212 10.01980 10.01980 +2008 213 8.55300 8.55300 +2008 214 9.08215 9.08215 +2008 215 9.52169 9.52169 +2008 216 7.86051 7.86051 +2008 217 6.11921 6.11921 +2008 218 7.78841 7.78841 +2008 219 8.20940 8.20940 +2008 220 8.78667 8.78667 +2008 221 5.38146 5.38146 +2008 222 3.76138 3.76138 +2008 223 5.03772 5.03772 +2008 224 8.56496 8.56496 +2008 225 7.32826 7.32826 +2008 226 6.37557 6.37557 +2008 227 7.60646 7.60646 +2008 228 6.32863 6.32863 +2008 229 6.16837 6.16837 +2008 230 4.53968 4.53968 +2008 231 5.74001 5.74001 +2008 232 4.17967 4.17967 +2008 233 7.73552 7.73552 +2008 234 9.00318 9.00318 +2008 235 9.79528 9.79528 +2008 236 9.55130 9.55130 +2008 237 9.32339 9.32339 +2008 238 8.79740 8.79740 +2008 239 9.50930 9.50930 +2008 240 8.92422 8.92422 +2008 241 8.66848 8.66848 +2008 242 7.74476 7.74476 +2008 243 7.27291 7.27291 +2008 244 8.75742 8.75742 +2008 245 9.47322 9.47322 +2008 246 9.42227 9.42227 +2008 247 10.02050 10.02050 +2008 248 9.55203 9.55203 +2008 249 8.96773 8.96773 +2008 250 7.68833 7.68833 +2008 251 10.42830 10.42830 +2008 252 11.83150 11.83150 +2008 253 9.12619 9.12619 +2008 254 9.55797 9.55797 +2008 255 9.29629 9.29629 +2008 256 8.83831 8.83831 +2008 257 8.98250 8.98250 +2008 258 9.73583 9.73583 +2008 259 10.56350 10.56350 +2008 260 9.42638 9.42638 +2008 261 8.31565 8.31565 +2008 262 9.35668 9.35668 +2008 263 9.64266 9.64266 +2008 264 9.36140 9.36140 +2008 265 11.58590 11.58590 +2008 266 11.06750 11.06750 +2008 267 12.04770 12.04770 +2008 268 12.16480 12.16480 +2008 269 9.69357 9.69357 +2008 270 9.25979 9.25979 +2008 271 9.78628 9.78628 +2008 272 9.51249 9.51249 +2008 273 10.69820 10.69820 +2008 274 8.27850 8.27850 +2008 275 8.84317 8.84317 +2008 276 10.41770 10.41770 +2008 277 12.48060 12.48060 +2008 278 12.95230 12.95230 +2008 279 12.70850 12.70850 +2008 280 12.67230 12.67230 +2008 281 10.06390 10.06390 +2008 282 9.12610 9.12610 +2008 283 8.58222 8.58222 +2008 284 10.39980 10.39980 +2008 285 11.82280 11.82280 +2008 286 10.90500 10.90500 +2008 287 11.12250 11.12250 +2008 288 11.04120 11.04120 +2008 289 11.61920 11.61920 +2008 290 10.61580 10.61580 +2008 291 10.97930 10.97930 +2008 292 9.12506 9.12506 +2008 293 9.96150 9.96150 +2008 294 10.55700 10.55700 +2008 295 12.43220 12.43220 +2008 296 12.81560 12.81560 +2008 297 12.94430 12.94430 +2008 298 12.80530 12.80530 +2008 299 9.73885 9.73885 +2008 300 9.55731 9.55731 +2008 301 12.74590 12.74590 +2008 302 11.75980 11.75980 +2008 303 10.26090 10.26090 +2008 304 10.18420 10.18420 +2008 305 10.10180 10.10180 +2008 306 12.66710 12.66710 +2008 307 11.55760 11.55760 +2008 308 11.69990 11.69990 +2008 309 10.59950 10.59950 +2008 310 9.06121 9.06121 +2008 311 9.37564 9.37564 +2008 312 9.49588 9.49588 +2008 313 10.77930 10.77930 +2008 314 11.40270 11.40270 +2008 315 13.51920 13.51920 +2008 316 14.17490 14.17490 +2008 317 15.42560 15.42560 +2008 318 15.71050 15.71050 +2008 319 14.86250 14.86250 +2008 320 12.95710 12.95710 +2008 321 12.17410 12.17410 +2008 322 10.99350 10.99350 +2008 323 11.28600 11.28600 +2008 324 12.66310 12.66310 +2008 325 13.12440 13.12440 +2008 326 13.59000 13.59000 +2008 327 14.94280 14.94280 +2008 328 15.06820 15.06820 +2008 329 16.74030 16.74030 +2008 330 14.68950 14.68950 +2008 331 14.79940 14.79940 +2008 332 15.26690 15.26690 +2008 333 16.07170 16.07170 +2008 334 16.65420 16.65420 +2008 335 14.83290 14.83290 +2008 336 14.74090 14.74090 +2008 337 17.05930 17.05930 +2008 338 16.97240 16.97240 +2008 339 16.25090 16.25090 +2008 340 15.71000 15.71000 +2008 341 15.03950 15.03950 +2008 342 15.02310 15.02310 +2008 343 14.52340 14.52340 +2008 344 17.13930 17.13930 +2008 345 15.47690 15.47690 +2008 346 14.22900 14.22900 +2008 347 14.77170 14.77170 +2008 348 14.89650 14.89650 +2008 349 15.22560 15.22560 +2008 350 17.54290 17.54290 +2008 351 14.34140 14.34140 +2008 352 14.14340 14.14340 +2008 353 15.27730 15.27730 +2008 354 15.68100 15.68100 +2008 355 15.26230 15.26230 +2008 356 15.22010 15.22010 +2008 357 13.94050 13.94050 +2008 358 14.39310 14.39310 +2008 359 15.13130 15.13130 +2008 360 14.68930 14.68930 +2008 361 15.42090 15.42090 +2008 362 16.56490 16.56490 +2008 363 15.64090 15.64090 +2008 364 17.90800 17.90800 +2008 365 17.40390 17.40390 +2008 366 18.49970 18.49970 +2009 1 19.12210 19.12210 +2009 2 17.77670 17.77670 +2009 3 15.54520 15.54520 +2009 4 15.77270 15.77270 +2009 5 16.70480 16.70480 +2009 6 17.89190 17.89190 +2009 7 18.82120 18.82120 +2009 8 18.37290 18.37290 +2009 9 18.70810 18.70810 +2009 10 17.46500 17.46500 +2009 11 17.80830 17.80830 +2009 12 17.37170 17.37170 +2009 13 16.91120 16.91120 +2009 14 17.83690 17.83690 +2009 15 18.95210 18.95210 +2009 16 17.88600 17.88600 +2009 17 15.06590 15.06590 +2009 18 14.60230 14.60230 +2009 19 14.63310 14.63310 +2009 20 16.55240 16.55240 +2009 21 17.46690 17.46690 +2009 22 18.48860 18.48860 +2009 23 19.35950 19.35950 +2009 24 19.86320 19.86320 +2009 25 19.69040 19.69040 +2009 26 18.90030 18.90030 +2009 27 16.89520 16.89520 +2009 28 17.48000 17.48000 +2009 29 18.24220 18.24220 +2009 30 19.76280 19.76280 +2009 31 19.44960 19.44960 +2009 32 18.45490 18.45490 +2009 33 17.70670 17.70670 +2009 34 18.73750 18.73750 +2009 35 18.17090 18.17090 +2009 36 17.89310 17.89310 +2009 37 20.09660 20.09660 +2009 38 21.66090 21.66090 +2009 39 21.78690 21.78690 +2009 40 20.80880 20.80880 +2009 41 21.28410 21.28410 +2009 42 20.66230 20.66230 +2009 43 18.93840 18.93840 +2009 44 14.94020 14.94020 +2009 45 14.53860 14.53860 +2009 46 16.63080 16.63080 +2009 47 16.63670 16.63670 +2009 48 18.12410 18.12410 +2009 49 18.44040 18.44040 +2009 50 18.35120 18.35120 +2009 51 19.15930 19.15930 +2009 52 17.67380 17.67380 +2009 53 16.08630 16.08630 +2009 54 14.91890 14.91890 +2009 55 14.88560 14.88560 +2009 56 15.62000 15.62000 +2009 57 16.42050 16.42050 +2009 58 16.28240 16.28240 +2009 59 18.14100 18.14100 +2009 60 17.62650 17.62650 +2009 61 16.69920 16.69920 +2009 62 15.37100 15.37100 +2009 63 15.66520 15.66520 +2009 64 16.53360 16.53360 +2009 65 17.88570 17.88570 +2009 66 15.34700 15.34700 +2009 67 14.00450 14.00450 +2009 68 12.89360 12.89360 +2009 69 12.27030 12.27030 +2009 70 11.26960 11.26960 +2009 71 14.29320 14.29320 +2009 72 13.36110 13.36110 +2009 73 12.68290 12.68290 +2009 74 14.01000 14.01000 +2009 75 15.02430 15.02430 +2009 76 16.46460 16.46460 +2009 77 16.49900 16.49900 +2009 78 14.47960 14.47960 +2009 79 14.43230 14.43230 +2009 80 13.26840 13.26840 +2009 81 11.87060 11.87060 +2009 82 12.22960 12.22960 +2009 83 12.57910 12.57910 +2009 84 13.91900 13.91900 +2009 85 12.79090 12.79090 +2009 86 13.40850 13.40850 +2009 87 13.25360 13.25360 +2009 88 13.80520 13.80520 +2009 89 13.51380 13.51380 +2009 90 12.00160 12.00160 +2009 91 11.28450 11.28450 +2009 92 10.68920 10.68920 +2009 93 12.08720 12.08720 +2009 94 12.79440 12.79440 +2009 95 13.24080 13.24080 +2009 96 14.35250 14.35250 +2009 97 12.60780 12.60780 +2009 98 8.43157 8.43157 +2009 99 8.90731 8.90731 +2009 100 10.74660 10.74660 +2009 101 12.15920 12.15920 +2009 102 11.67370 11.67370 +2009 103 13.38710 13.38710 +2009 104 12.17650 12.17650 +2009 105 12.86360 12.86360 +2009 106 12.06100 12.06100 +2009 107 11.64440 11.64440 +2009 108 12.03540 12.03540 +2009 109 12.30370 12.30370 +2009 110 9.42403 9.42403 +2009 111 9.80168 9.80168 +2009 112 9.31492 9.31492 +2009 113 11.72730 11.72730 +2009 114 13.13580 13.13580 +2009 115 14.39580 14.39580 +2009 116 15.11920 15.11920 +2009 117 15.08090 15.08090 +2009 118 14.70770 14.70770 +2009 119 12.73720 12.73720 +2009 120 10.11650 10.11650 +2009 121 8.91034 8.91034 +2009 122 9.57388 9.57388 +2009 123 9.26840 9.26840 +2009 124 8.85936 8.85936 +2009 125 9.29904 9.29904 +2009 126 7.98555 7.98555 +2009 127 8.98528 8.98528 +2009 128 7.29853 7.29853 +2009 129 8.14054 8.14054 +2009 130 6.24658 6.24658 +2009 131 6.66253 6.66253 +2009 132 7.45153 7.45153 +2009 133 9.00612 9.00612 +2009 134 9.72472 9.72472 +2009 135 12.29190 12.29190 +2009 136 12.33450 12.33450 +2009 137 10.27330 10.27330 +2009 138 9.05859 9.05859 +2009 139 6.85610 6.85610 +2009 140 4.47675 4.47675 +2009 141 4.55986 4.55986 +2009 142 5.27558 5.27558 +2009 143 7.19204 7.19204 +2009 144 9.77177 9.77177 +2009 145 10.10750 10.10750 +2009 146 10.19290 10.19290 +2009 147 8.08236 8.08236 +2009 148 7.66039 7.66039 +2009 149 6.63789 6.63789 +2009 150 5.97250 5.97250 +2009 151 4.95444 4.95444 +2009 152 5.88018 5.88018 +2009 153 4.31110 4.31110 +2009 154 4.28924 4.28924 +2009 155 4.87260 4.87260 +2009 156 7.14786 7.14786 +2009 157 4.87011 4.87011 +2009 158 4.30254 4.30254 +2009 159 7.93272 7.93272 +2009 160 10.48820 10.48820 +2009 161 10.95180 10.95180 +2009 162 10.89780 10.89780 +2009 163 10.82540 10.82540 +2009 164 8.69224 8.69224 +2009 165 9.04361 9.04361 +2009 166 6.51840 6.51840 +2009 167 2.79482 2.79482 +2009 168 3.22646 3.22646 +2009 169 3.63960 3.63960 +2009 170 4.99504 4.99504 +2009 171 4.63717 4.63717 +2009 172 4.96475 4.96475 +2009 173 4.12031 4.12031 +2009 174 2.76354 2.76354 +2009 175 3.28227 3.28227 +2009 176 7.62462 7.62462 +2009 177 9.32549 9.32549 +2009 178 8.29508 8.29508 +2009 179 7.05498 7.05498 +2009 180 6.88900 6.88900 +2009 181 6.30754 6.30754 +2009 182 5.57938 5.57938 +2009 183 7.71065 7.71065 +2009 184 6.27016 6.27016 +2009 185 7.38397 7.38397 +2009 186 6.87806 6.87806 +2009 187 6.21179 6.21179 +2009 188 6.89688 6.89688 +2009 189 4.48712 4.48712 +2009 190 3.78997 3.78997 +2009 191 4.89594 4.89594 +2009 192 5.35180 5.35180 +2009 193 5.13189 5.13189 +2009 194 4.65456 4.65456 +2009 195 8.96986 8.96986 +2009 196 7.58540 7.58540 +2009 197 6.75340 6.75340 +2009 198 7.31462 7.31462 +2009 199 8.54772 8.54772 +2009 200 7.94992 7.94992 +2009 201 6.83229 6.83229 +2009 202 9.70219 9.70219 +2009 203 8.38136 8.38136 +2009 204 8.60222 8.60222 +2009 205 4.69504 4.69504 +2009 206 4.12107 4.12107 +2009 207 3.93427 3.93427 +2009 208 4.81824 4.81824 +2009 209 8.10069 8.10069 +2009 210 7.15626 7.15626 +2009 211 7.86180 7.86180 +2009 212 8.78997 8.78997 +2009 213 7.71169 7.71169 +2009 214 7.43709 7.43709 +2009 215 7.15158 7.15158 +2009 216 7.45715 7.45715 +2009 217 7.96678 7.96678 +2009 218 6.70392 6.70392 +2009 219 6.01824 6.01824 +2009 220 5.41371 5.41371 +2009 221 7.64378 7.64378 +2009 222 7.88681 7.88681 +2009 223 8.35023 8.35023 +2009 224 9.03693 9.03693 +2009 225 9.59357 9.59357 +2009 226 10.86680 10.86680 +2009 227 9.80570 9.80570 +2009 228 9.53259 9.53259 +2009 229 8.97505 8.97505 +2009 230 7.87900 7.87900 +2009 231 8.09816 8.09816 +2009 232 8.94441 8.94441 +2009 233 8.11967 8.11967 +2009 234 8.09017 8.09017 +2009 235 9.31490 9.31490 +2009 236 9.23628 9.23628 +2009 237 10.95190 10.95190 +2009 238 10.10580 10.10580 +2009 239 10.39400 10.39400 +2009 240 10.82850 10.82850 +2009 241 10.72250 10.72250 +2009 242 9.81842 9.81842 +2009 243 9.07642 9.07642 +2009 244 9.38377 9.38377 +2009 245 7.73786 7.73786 +2009 246 5.36469 5.36469 +2009 247 5.99685 5.99685 +2009 248 7.46793 7.46793 +2009 249 7.72257 7.72257 +2009 250 8.75786 8.75786 +2009 251 9.21566 9.21566 +2009 252 8.49598 8.49598 +2009 253 10.54700 10.54700 +2009 254 10.99020 10.99020 +2009 255 11.76170 11.76170 +2009 256 11.51060 11.51060 +2009 257 10.10940 10.10940 +2009 258 10.86130 10.86130 +2009 259 10.82630 10.82630 +2009 260 10.64930 10.64930 +2009 261 8.88922 8.88922 +2009 262 7.41648 7.41648 +2009 263 7.80143 7.80143 +2009 264 9.26833 9.26833 +2009 265 10.53220 10.53220 +2009 266 9.62693 9.62693 +2009 267 10.79220 10.79220 +2009 268 10.49640 10.49640 +2009 269 9.65158 9.65158 +2009 270 10.21070 10.21070 +2009 271 10.42860 10.42860 +2009 272 10.75410 10.75410 +2009 273 10.54730 10.54730 +2009 274 10.83730 10.83730 +2009 275 12.38190 12.38190 +2009 276 10.11610 10.11610 +2009 277 5.39075 5.39075 +2009 278 6.07481 6.07481 +2009 279 7.62873 7.62873 +2009 280 8.22860 8.22860 +2009 281 9.25998 9.25998 +2009 282 7.22369 7.22369 +2009 283 8.25848 8.25848 +2009 284 9.69746 9.69746 +2009 285 9.79455 9.79455 +2009 286 10.69530 10.69530 +2009 287 12.71640 12.71640 +2009 288 12.80550 12.80550 +2009 289 12.18740 12.18740 +2009 290 10.04910 10.04910 +2009 291 9.48638 9.48638 +2009 292 9.36832 9.36832 +2009 293 8.61532 8.61532 +2009 294 10.74230 10.74230 +2009 295 9.58522 9.58522 +2009 296 8.85855 8.85855 +2009 297 9.52048 9.52048 +2009 298 10.74800 10.74800 +2009 299 11.87190 11.87190 +2009 300 11.81340 11.81340 +2009 301 9.17832 9.17832 +2009 302 8.59180 8.59180 +2009 303 9.69115 9.69115 +2009 304 11.18440 11.18440 +2009 305 11.33120 11.33120 +2009 306 12.65060 12.65060 +2009 307 11.25940 11.25940 +2009 308 13.27140 13.27140 +2009 309 12.95630 12.95630 +2009 310 12.02760 12.02760 +2009 311 12.32070 12.32070 +2009 312 10.78620 10.78620 +2009 313 10.92330 10.92330 +2009 314 10.97730 10.97730 +2009 315 10.83470 10.83470 +2009 316 10.14100 10.14100 +2009 317 10.59500 10.59500 +2009 318 12.55510 12.55510 +2009 319 12.02730 12.02730 +2009 320 12.17820 12.17820 +2009 321 13.66820 13.66820 +2009 322 13.17010 13.17010 +2009 323 12.37510 12.37510 +2009 324 13.80530 13.80530 +2009 325 16.53230 16.53230 +2009 326 15.20290 15.20290 +2009 327 18.15040 18.15040 +2009 328 15.23360 15.23360 +2009 329 14.16890 14.16890 +2009 330 14.02800 14.02800 +2009 331 14.45230 14.45230 +2009 332 16.36300 16.36300 +2009 333 14.06720 14.06720 +2009 334 16.23820 16.23820 +2009 335 15.84770 15.84770 +2009 336 14.03730 14.03730 +2009 337 11.55660 11.55660 +2009 338 12.15820 12.15820 +2009 339 14.25240 14.25240 +2009 340 14.36130 14.36130 +2009 341 15.10040 15.10040 +2009 342 16.53890 16.53890 +2009 343 17.35780 17.35780 +2009 344 17.70960 17.70960 +2009 345 16.17800 16.17800 +2009 346 14.67820 14.67820 +2009 347 15.16960 15.16960 +2009 348 12.39620 12.39620 +2009 349 11.82200 11.82200 +2009 350 13.99730 13.99730 +2009 351 15.01010 15.01010 +2009 352 15.91890 15.91890 +2009 353 15.82280 15.82280 +2009 354 13.54030 13.54030 +2009 355 13.38460 13.38460 +2009 356 14.87800 14.87800 +2009 357 16.07680 16.07680 +2009 358 16.92940 16.92940 +2009 359 17.11400 17.11400 +2009 360 17.09080 17.09080 +2009 361 18.13160 18.13160 +2009 362 17.85990 17.85990 +2009 363 16.05560 16.05560 +2009 364 13.58670 13.58670 +2009 365 15.66230 15.66230 +2010 1 16.26740 16.26740 +2010 2 17.72580 17.72580 +2010 3 16.62140 16.62140 +2010 4 15.62960 15.62960 +2010 5 16.11620 16.11620 +2010 6 16.44060 16.44060 +2010 7 15.15010 15.15010 +2010 8 14.59180 14.59180 +2010 9 15.27830 15.27830 +2010 10 13.81170 13.81170 +2010 11 13.38760 13.38760 +2010 12 14.65410 14.65410 +2010 13 15.83280 15.83280 +2010 14 16.65080 16.65080 +2010 15 16.72330 16.72330 +2010 16 15.97850 15.97850 +2010 17 16.14870 16.14870 +2010 18 17.63310 17.63310 +2010 19 17.46280 17.46280 +2010 20 16.74270 16.74270 +2010 21 15.78240 15.78240 +2010 22 15.90230 15.90230 +2010 23 16.37960 16.37960 +2010 24 17.09740 17.09740 +2010 25 17.24330 17.24330 +2010 26 17.19090 17.19090 +2010 27 17.50410 17.50410 +2010 28 17.71840 17.71840 +2010 29 16.94550 16.94550 +2010 30 17.46020 17.46020 +2010 31 18.55480 18.55480 +2010 32 18.49380 18.49380 +2010 33 17.74880 17.74880 +2010 34 17.70570 17.70570 +2010 35 17.35050 17.35050 +2010 36 17.63720 17.63720 +2010 37 18.80940 18.80940 +2010 38 17.83810 17.83810 +2010 39 18.35250 18.35250 +2010 40 16.89170 16.89170 +2010 41 17.15150 17.15150 +2010 42 17.85920 17.85920 +2010 43 19.02580 19.02580 +2010 44 19.16290 19.16290 +2010 45 18.08570 18.08570 +2010 46 16.59710 16.59710 +2010 47 18.42250 18.42250 +2010 48 19.12660 19.12660 +2010 49 18.53500 18.53500 +2010 50 17.04090 17.04090 +2010 51 16.49360 16.49360 +2010 52 17.80170 17.80170 +2010 53 16.81330 16.81330 +2010 54 17.62780 17.62780 +2010 55 18.08380 18.08380 +2010 56 16.77880 16.77880 +2010 57 16.25890 16.25890 +2010 58 16.48890 16.48890 +2010 59 17.29910 17.29910 +2010 60 17.88780 17.88780 +2010 61 17.16880 17.16880 +2010 62 17.44720 17.44720 +2010 63 18.17840 18.17840 +2010 64 16.36010 16.36010 +2010 65 14.37240 14.37240 +2010 66 14.80590 14.80590 +2010 67 16.41220 16.41220 +2010 68 17.08370 17.08370 +2010 69 16.97590 16.97590 +2010 70 14.64950 14.64950 +2010 71 12.55250 12.55250 +2010 72 15.90910 15.90910 +2010 73 16.25970 16.25970 +2010 74 14.87040 14.87040 +2010 75 13.26660 13.26660 +2010 76 11.80540 11.80540 +2010 77 14.66190 14.66190 +2010 78 16.43420 16.43420 +2010 79 17.57160 17.57160 +2010 80 16.21790 16.21790 +2010 81 15.70780 15.70780 +2010 82 14.49740 14.49740 +2010 83 13.15820 13.15820 +2010 84 15.61380 15.61380 +2010 85 15.75820 15.75820 +2010 86 15.54750 15.54750 +2010 87 13.66920 13.66920 +2010 88 13.12070 13.12070 +2010 89 13.79940 13.79940 +2010 90 14.00630 14.00630 +2010 91 14.14050 14.14050 +2010 92 14.23590 14.23590 +2010 93 15.43350 15.43350 +2010 94 15.99580 15.99580 +2010 95 13.48180 13.48180 +2010 96 11.23250 11.23250 +2010 97 10.36100 10.36100 +2010 98 11.28170 11.28170 +2010 99 11.40950 11.40950 +2010 100 12.52470 12.52470 +2010 101 13.09620 13.09620 +2010 102 13.64880 13.64880 +2010 103 14.90820 14.90820 +2010 104 13.95970 13.95970 +2010 105 13.35650 13.35650 +2010 106 11.28500 11.28500 +2010 107 12.56590 12.56590 +2010 108 12.63990 12.63990 +2010 109 13.60350 13.60350 +2010 110 12.27920 12.27920 +2010 111 12.35230 12.35230 +2010 112 12.02010 12.02010 +2010 113 14.52910 14.52910 +2010 114 13.98160 13.98160 +2010 115 14.60850 14.60850 +2010 116 15.43770 15.43770 +2010 117 14.13340 14.13340 +2010 118 13.37200 13.37200 +2010 119 12.59610 12.59610 +2010 120 12.28960 12.28960 +2010 121 9.65889 9.65889 +2010 122 9.77580 9.77580 +2010 123 11.37490 11.37490 +2010 124 9.36438 9.36438 +2010 125 8.29077 8.29077 +2010 126 10.21840 10.21840 +2010 127 9.79651 9.79651 +2010 128 11.15500 11.15500 +2010 129 12.48780 12.48780 +2010 130 12.28410 12.28410 +2010 131 13.41120 13.41120 +2010 132 14.60430 14.60430 +2010 133 13.23120 13.23120 +2010 134 12.36240 12.36240 +2010 135 12.14080 12.14080 +2010 136 10.91420 10.91420 +2010 137 10.17310 10.17310 +2010 138 9.44342 9.44342 +2010 139 9.62538 9.62538 +2010 140 10.30610 10.30610 +2010 141 10.83950 10.83950 +2010 142 10.44560 10.44560 +2010 143 12.70650 12.70650 +2010 144 10.18130 10.18130 +2010 145 10.53240 10.53240 +2010 146 10.24800 10.24800 +2010 147 10.48120 10.48120 +2010 148 9.28180 9.28180 +2010 149 7.82951 7.82951 +2010 150 7.23759 7.23759 +2010 151 8.52351 8.52351 +2010 152 10.92190 10.92190 +2010 153 10.38770 10.38770 +2010 154 8.09461 8.09461 +2010 155 7.92782 7.92782 +2010 156 12.53910 12.53910 +2010 157 11.79220 11.79220 +2010 158 6.95439 6.95439 +2010 159 4.68864 4.68864 +2010 160 7.38880 7.38880 +2010 161 10.23230 10.23230 +2010 162 9.65201 9.65201 +2010 163 7.67020 7.67020 +2010 164 6.89777 6.89777 +2010 165 6.18249 6.18249 +2010 166 5.65887 5.65887 +2010 167 6.26467 6.26467 +2010 168 7.74331 7.74331 +2010 169 10.66630 10.66630 +2010 170 11.69420 11.69420 +2010 171 9.65720 9.65720 +2010 172 7.30915 7.30915 +2010 173 7.08295 7.08295 +2010 174 6.72992 6.72992 +2010 175 8.84293 8.84293 +2010 176 7.91469 7.91469 +2010 177 7.14428 7.14428 +2010 178 7.96199 7.96199 +2010 179 8.38726 8.38726 +2010 180 7.61887 7.61887 +2010 181 5.72300 5.72300 +2010 182 7.81732 7.81732 +2010 183 6.65306 6.65306 +2010 184 6.56044 6.56044 +2010 185 7.91207 7.91207 +2010 186 9.96278 9.96278 +2010 187 9.76917 9.76917 +2010 188 7.24485 7.24485 +2010 189 5.60803 5.60803 +2010 190 4.67917 4.67917 +2010 191 3.92003 3.92003 +2010 192 5.47726 5.47726 +2010 193 6.10504 6.10504 +2010 194 6.65819 6.65819 +2010 195 7.67772 7.67772 +2010 196 7.50400 7.50400 +2010 197 8.36312 8.36312 +2010 198 7.68352 7.68352 +2010 199 6.31093 6.31093 +2010 200 7.42000 7.42000 +2010 201 7.50507 7.50507 +2010 202 9.87269 9.87269 +2010 203 7.82366 7.82366 +2010 204 8.21856 8.21856 +2010 205 6.56729 6.56729 +2010 206 5.87814 5.87814 +2010 207 7.23342 7.23342 +2010 208 6.44955 6.44955 +2010 209 5.70552 5.70552 +2010 210 5.14025 5.14025 +2010 211 6.60892 6.60892 +2010 212 9.02509 9.02509 +2010 213 10.49650 10.49650 +2010 214 8.70820 8.70820 +2010 215 11.90930 11.90930 +2010 216 10.11250 10.11250 +2010 217 7.89640 7.89640 +2010 218 9.77767 9.77767 +2010 219 8.71944 8.71944 +2010 220 6.46178 6.46178 +2010 221 5.21315 5.21315 +2010 222 4.79977 4.79977 +2010 223 6.59614 6.59614 +2010 224 10.82480 10.82480 +2010 225 12.39260 12.39260 +2010 226 10.64570 10.64570 +2010 227 10.29710 10.29710 +2010 228 10.73920 10.73920 +2010 229 7.80381 7.80381 +2010 230 7.50542 7.50542 +2010 231 7.57985 7.57985 +2010 232 9.15422 9.15422 +2010 233 8.51993 8.51993 +2010 234 7.33374 7.33374 +2010 235 7.20238 7.20238 +2010 236 6.22531 6.22531 +2010 237 10.12860 10.12860 +2010 238 9.30296 9.30296 +2010 239 8.82010 8.82010 +2010 240 8.25878 8.25878 +2010 241 7.59740 7.59740 +2010 242 7.66639 7.66639 +2010 243 8.10580 8.10580 +2010 244 7.66094 7.66094 +2010 245 7.51747 7.51747 +2010 246 6.71351 6.71351 +2010 247 8.28192 8.28192 +2010 248 11.09400 11.09400 +2010 249 11.66300 11.66300 +2010 250 10.67160 10.67160 +2010 251 10.94150 10.94150 +2010 252 10.66840 10.66840 +2010 253 8.86154 8.86154 +2010 254 12.97140 12.97140 +2010 255 10.98810 10.98810 +2010 256 9.53223 9.53223 +2010 257 8.57879 8.57879 +2010 258 8.19308 8.19308 +2010 259 8.73192 8.73192 +2010 260 8.35071 8.35071 +2010 261 9.14741 9.14741 +2010 262 8.90937 8.90937 +2010 263 9.01349 9.01349 +2010 264 7.46051 7.46051 +2010 265 8.06468 8.06468 +2010 266 8.88397 8.88397 +2010 267 10.17980 10.17980 +2010 268 10.99970 10.99970 +2010 269 12.93280 12.93280 +2010 270 11.99290 11.99290 +2010 271 12.15760 12.15760 +2010 272 12.87850 12.87850 +2010 273 10.78630 10.78630 +2010 274 9.93868 9.93868 +2010 275 10.41640 10.41640 +2010 276 10.21660 10.21660 +2010 277 10.18350 10.18350 +2010 278 10.87880 10.87880 +2010 279 10.81490 10.81490 +2010 280 10.87470 10.87470 +2010 281 10.48480 10.48480 +2010 282 9.17156 9.17156 +2010 283 6.45249 6.45249 +2010 284 7.63318 7.63318 +2010 285 10.96410 10.96410 +2010 286 11.99630 11.99630 +2010 287 12.71250 12.71250 +2010 288 12.02740 12.02740 +2010 289 11.37400 11.37400 +2010 290 9.74678 9.74678 +2010 291 8.88397 8.88397 +2010 292 9.87114 9.87114 +2010 293 9.49225 9.49225 +2010 294 10.25470 10.25470 +2010 295 11.94350 11.94350 +2010 296 12.74450 12.74450 +2010 297 13.52420 13.52420 +2010 298 12.68660 12.68660 +2010 299 12.56880 12.56880 +2010 300 11.99520 11.99520 +2010 301 12.91690 12.91690 +2010 302 11.25150 11.25150 +2010 303 9.51588 9.51588 +2010 304 10.19870 10.19870 +2010 305 10.43510 10.43510 +2010 306 11.04990 11.04990 +2010 307 11.62710 11.62710 +2010 308 11.86150 11.86150 +2010 309 10.70150 10.70150 +2010 310 10.73820 10.73820 +2010 311 12.15040 12.15040 +2010 312 12.08210 12.08210 +2010 313 13.14380 13.14380 +2010 314 12.87560 12.87560 +2010 315 14.50140 14.50140 +2010 316 14.90840 14.90840 +2010 317 15.90210 15.90210 +2010 318 13.77170 13.77170 +2010 319 14.50640 14.50640 +2010 320 16.33350 16.33350 +2010 321 16.53860 16.53860 +2010 322 16.55460 16.55460 +2010 323 16.49290 16.49290 +2010 324 15.13770 15.13770 +2010 325 13.13000 13.13000 +2010 326 11.71830 11.71830 +2010 327 11.65810 11.65810 +2010 328 14.72410 14.72410 +2010 329 15.61820 15.61820 +2010 330 15.50160 15.50160 +2010 331 17.19390 17.19390 +2010 332 17.39310 17.39310 +2010 333 17.71060 17.71060 +2010 334 17.05710 17.05710 +2010 335 15.84180 15.84180 +2010 336 16.11310 16.11310 +2010 337 16.09030 16.09030 +2010 338 16.46270 16.46270 +2010 339 15.94210 15.94210 +2010 340 17.24760 17.24760 +2010 341 13.24280 13.24280 +2010 342 13.35870 13.35870 +2010 343 14.85750 14.85750 +2010 344 15.29140 15.29140 +2010 345 19.51120 19.51120 +2010 346 17.37660 17.37660 +2010 347 17.85800 17.85800 +2010 348 18.68740 18.68740 +2010 349 15.35420 15.35420 +2010 350 16.13520 16.13520 +2010 351 17.28370 17.28370 +2010 352 17.50910 17.50910 +2010 353 18.31890 18.31890 +2010 354 19.79640 19.79640 +2010 355 19.97190 19.97190 +2010 356 17.71110 17.71110 +2010 357 15.46140 15.46140 +2010 358 14.94770 14.94770 +2010 359 15.58220 15.58220 +2010 360 16.75690 16.75690 +2010 361 17.07820 17.07820 +2010 362 15.54130 15.54130 +2010 363 16.44320 16.44320 +2010 364 18.40220 18.40220 +2010 365 17.45040 17.45040 +2011 1 18.44190 18.44190 +2011 2 19.37930 19.37930 +2011 3 19.07990 19.07990 +2011 4 18.13710 18.13710 +2011 5 18.41660 18.41660 +2011 6 20.38810 20.38810 +2011 7 18.21570 18.21570 +2011 8 15.88240 15.88240 +2011 9 16.19000 16.19000 +2011 10 16.11810 16.11810 +2011 11 17.02110 17.02110 +2011 12 16.08040 16.08040 +2011 13 16.71060 16.71060 +2011 14 17.97200 17.97200 +2011 15 18.76290 18.76290 +2011 16 18.73920 18.73920 +2011 17 19.33250 19.33250 +2011 18 19.53800 19.53800 +2011 19 17.32480 17.32480 +2011 20 15.67780 15.67780 +2011 21 15.08910 15.08910 +2011 22 16.54660 16.54660 +2011 23 17.52890 17.52890 +2011 24 16.42220 16.42220 +2011 25 18.64670 18.64670 +2011 26 19.50600 19.50600 +2011 27 17.97060 17.97060 +2011 28 17.00140 17.00140 +2011 29 15.04700 15.04700 +2011 30 16.44390 16.44390 +2011 31 17.39750 17.39750 +2011 32 17.90250 17.90250 +2011 33 20.50960 20.50960 +2011 34 20.73270 20.73270 +2011 35 21.40820 21.40820 +2011 36 20.48210 20.48210 +2011 37 19.84240 19.84240 +2011 38 20.18960 20.18960 +2011 39 17.86040 17.86040 +2011 40 17.64290 17.64290 +2011 41 17.79960 17.79960 +2011 42 18.20940 18.20940 +2011 43 19.36710 19.36710 +2011 44 20.31470 20.31470 +2011 45 19.63620 19.63620 +2011 46 17.48690 17.48690 +2011 47 16.11130 16.11130 +2011 48 16.24200 16.24200 +2011 49 17.64760 17.64760 +2011 50 17.66630 17.66630 +2011 51 18.46590 18.46590 +2011 52 18.22720 18.22720 +2011 53 19.09070 19.09070 +2011 54 18.27560 18.27560 +2011 55 18.02720 18.02720 +2011 56 16.86240 16.86240 +2011 57 16.20290 16.20290 +2011 58 15.66460 15.66460 +2011 59 16.84280 16.84280 +2011 60 17.66810 17.66810 +2011 61 17.96600 17.96600 +2011 62 18.45410 18.45410 +2011 63 17.65140 17.65140 +2011 64 14.26900 14.26900 +2011 65 11.89170 11.89170 +2011 66 12.52940 12.52940 +2011 67 13.44380 13.44380 +2011 68 13.83300 13.83300 +2011 69 14.68010 14.68010 +2011 70 15.45090 15.45090 +2011 71 16.12200 16.12200 +2011 72 17.14310 17.14310 +2011 73 16.36170 16.36170 +2011 74 16.53860 16.53860 +2011 75 16.85930 16.85930 +2011 76 16.24460 16.24460 +2011 77 15.25820 15.25820 +2011 78 15.11900 15.11900 +2011 79 14.65000 14.65000 +2011 80 16.53680 16.53680 +2011 81 15.45800 15.45800 +2011 82 14.02730 14.02730 +2011 83 14.21520 14.21520 +2011 84 16.69140 16.69140 +2011 85 18.05030 18.05030 +2011 86 14.51950 14.51950 +2011 87 13.60850 13.60850 +2011 88 13.81980 13.81980 +2011 89 13.67650 13.67650 +2011 90 14.33170 14.33170 +2011 91 12.71670 12.71670 +2011 92 14.19730 14.19730 +2011 93 14.52390 14.52390 +2011 94 11.36230 11.36230 +2011 95 10.50590 10.50590 +2011 96 11.86610 11.86610 +2011 97 10.85260 10.85260 +2011 98 12.97960 12.97960 +2011 99 13.80880 13.80880 +2011 100 13.69380 13.69380 +2011 101 13.13020 13.13020 +2011 102 13.29850 13.29850 +2011 103 12.43580 12.43580 +2011 104 13.40500 13.40500 +2011 105 14.14820 14.14820 +2011 106 14.01550 14.01550 +2011 107 9.29166 9.29166 +2011 108 9.49416 9.49416 +2011 109 12.13510 12.13510 +2011 110 11.64020 11.64020 +2011 111 12.39600 12.39600 +2011 112 12.87910 12.87910 +2011 113 13.63650 13.63650 +2011 114 13.68380 13.68380 +2011 115 12.63110 12.63110 +2011 116 13.33410 13.33410 +2011 117 12.16220 12.16220 +2011 118 9.88882 9.88882 +2011 119 10.95290 10.95290 +2011 120 13.33650 13.33650 +2011 121 13.07670 13.07670 +2011 122 15.69940 15.69940 +2011 123 15.31950 15.31950 +2011 124 14.00900 14.00900 +2011 125 14.19850 14.19850 +2011 126 13.96580 13.96580 +2011 127 13.33070 13.33070 +2011 128 11.87520 11.87520 +2011 129 11.89500 11.89500 +2011 130 14.69260 14.69260 +2011 131 15.87110 15.87110 +2011 132 13.86680 13.86680 +2011 133 12.71680 12.71680 +2011 134 11.55750 11.55750 +2011 135 10.58740 10.58740 +2011 136 11.72960 11.72960 +2011 137 8.27923 8.27923 +2011 138 8.21650 8.21650 +2011 139 9.20846 9.20846 +2011 140 10.45140 10.45140 +2011 141 9.74684 9.74684 +2011 142 10.24070 10.24070 +2011 143 9.50683 9.50683 +2011 144 12.34110 12.34110 +2011 145 14.60290 14.60290 +2011 146 12.35820 12.35820 +2011 147 10.42770 10.42770 +2011 148 8.22264 8.22264 +2011 149 8.45913 8.45913 +2011 150 8.62713 8.62713 +2011 151 9.75166 9.75166 +2011 152 8.58467 8.58467 +2011 153 10.14900 10.14900 +2011 154 11.56110 11.56110 +2011 155 13.81220 13.81220 +2011 156 12.40260 12.40260 +2011 157 11.83220 11.83220 +2011 158 10.11390 10.11390 +2011 159 8.68921 8.68921 +2011 160 11.28020 11.28020 +2011 161 10.82210 10.82210 +2011 162 10.18620 10.18620 +2011 163 9.41435 9.41435 +2011 164 8.00558 8.00558 +2011 165 9.11404 9.11404 +2011 166 8.34357 8.34357 +2011 167 6.96570 6.96570 +2011 168 11.28390 11.28390 +2011 169 11.04740 11.04740 +2011 170 10.02470 10.02470 +2011 171 9.60811 9.60811 +2011 172 8.18954 8.18954 +2011 173 9.21598 9.21598 +2011 174 8.79887 8.79887 +2011 175 8.21379 8.21379 +2011 176 6.71712 6.71712 +2011 177 6.54675 6.54675 +2011 178 7.91970 7.91970 +2011 179 7.24744 7.24744 +2011 180 7.17573 7.17573 +2011 181 6.60719 6.60719 +2011 182 6.63442 6.63442 +2011 183 6.31820 6.31820 +2011 184 7.66890 7.66890 +2011 185 9.24820 9.24820 +2011 186 8.57822 8.57822 +2011 187 8.70057 8.70057 +2011 188 7.82662 7.82662 +2011 189 9.26430 9.26430 +2011 190 9.43686 9.43686 +2011 191 9.43994 9.43994 +2011 192 7.65658 7.65658 +2011 193 9.39214 9.39214 +2011 194 8.46364 8.46364 +2011 195 4.90320 4.90320 +2011 196 4.55274 4.55274 +2011 197 6.19445 6.19445 +2011 198 5.73359 5.73359 +2011 199 5.47674 5.47674 +2011 200 6.58106 6.58106 +2011 201 7.79375 7.79375 +2011 202 9.73934 9.73934 +2011 203 10.34190 10.34190 +2011 204 8.46984 8.46984 +2011 205 3.64550 3.64550 +2011 206 3.68788 3.68788 +2011 207 6.42793 6.42793 +2011 208 8.51375 8.51375 +2011 209 8.10405 8.10405 +2011 210 8.19272 8.19272 +2011 211 5.95909 5.95909 +2011 212 5.72410 5.72410 +2011 213 6.47927 6.47927 +2011 214 5.77095 5.77095 +2011 215 6.75981 6.75981 +2011 216 5.48728 5.48728 +2011 217 6.46921 6.46921 +2011 218 8.77519 8.77519 +2011 219 6.35665 6.35665 +2011 220 7.78763 7.78763 +2011 221 7.25586 7.25586 +2011 222 8.13707 8.13707 +2011 223 8.43195 8.43195 +2011 224 7.91873 7.91873 +2011 225 6.63296 6.63296 +2011 226 2.40330 2.40330 +2011 227 1.94747 1.94747 +2011 228 3.53740 3.53740 +2011 229 4.33616 4.33616 +2011 230 5.01839 5.01839 +2011 231 5.53679 5.53679 +2011 232 5.30432 5.30432 +2011 233 6.16911 6.16911 +2011 234 7.85455 7.85455 +2011 235 7.72722 7.72722 +2011 236 8.73718 8.73718 +2011 237 7.68899 7.68899 +2011 238 7.81542 7.81542 +2011 239 8.44820 8.44820 +2011 240 8.21565 8.21565 +2011 241 11.81760 11.81760 +2011 242 10.77580 10.77580 +2011 243 8.39134 8.39134 +2011 244 6.76109 6.76109 +2011 245 6.26426 6.26426 +2011 246 8.75759 8.75759 +2011 247 8.52659 8.52659 +2011 248 8.46129 8.46129 +2011 249 7.92600 7.92600 +2011 250 8.09413 8.09413 +2011 251 8.46705 8.46705 +2011 252 8.77461 8.77461 +2011 253 9.24468 9.24468 +2011 254 8.78586 8.78586 +2011 255 8.09351 8.09351 +2011 256 8.61297 8.61297 +2011 257 9.19501 9.19501 +2011 258 7.91697 7.91697 +2011 259 8.27476 8.27476 +2011 260 7.18254 7.18254 +2011 261 7.76389 7.76389 +2011 262 7.75616 7.75616 +2011 263 7.20872 7.20872 +2011 264 8.04252 8.04252 +2011 265 8.85537 8.85537 +2011 266 9.98198 9.98198 +2011 267 7.96751 7.96751 +2011 268 6.81658 6.81658 +2011 269 7.26569 7.26569 +2011 270 8.11448 8.11448 +2011 271 9.18146 9.18146 +2011 272 9.37247 9.37247 +2011 273 8.88433 8.88433 +2011 274 11.37910 11.37910 +2011 275 12.59220 12.59220 +2011 276 13.41250 13.41250 +2011 277 10.70800 10.70800 +2011 278 10.63890 10.63890 +2011 279 11.15340 11.15340 +2011 280 9.57866 9.57866 +2011 281 9.15359 9.15359 +2011 282 9.84155 9.84155 +2011 283 13.80590 13.80590 +2011 284 12.61850 12.61850 +2011 285 12.33680 12.33680 +2011 286 9.39496 9.39496 +2011 287 9.50668 9.50668 +2011 288 9.63179 9.63179 +2011 289 10.08650 10.08650 +2011 290 10.70160 10.70160 +2011 291 8.62133 8.62133 +2011 292 10.28580 10.28580 +2011 293 13.10290 13.10290 +2011 294 12.86260 12.86260 +2011 295 12.22620 12.22620 +2011 296 12.61070 12.61070 +2011 297 11.87610 11.87610 +2011 298 12.21150 12.21150 +2011 299 12.59480 12.59480 +2011 300 13.17230 13.17230 +2011 301 12.58620 12.58620 +2011 302 13.41190 13.41190 +2011 303 13.05510 13.05510 +2011 304 13.13020 13.13020 +2011 305 14.87270 14.87270 +2011 306 12.94310 12.94310 +2011 307 11.95190 11.95190 +2011 308 10.04720 10.04720 +2011 309 9.09945 9.09945 +2011 310 12.53470 12.53470 +2011 311 12.90500 12.90500 +2011 312 15.13290 15.13290 +2011 313 13.28170 13.28170 +2011 314 12.05820 12.05820 +2011 315 13.02210 13.02210 +2011 316 12.94460 12.94460 +2011 317 11.63390 11.63390 +2011 318 12.20670 12.20670 +2011 319 13.62310 13.62310 +2011 320 11.92990 11.92990 +2011 321 11.38020 11.38020 +2011 322 11.47840 11.47840 +2011 323 11.83100 11.83100 +2011 324 13.80850 13.80850 +2011 325 13.06870 13.06870 +2011 326 14.09520 14.09520 +2011 327 13.64110 13.64110 +2011 328 12.70670 12.70670 +2011 329 13.40110 13.40110 +2011 330 14.11130 14.11130 +2011 331 15.00010 15.00010 +2011 332 15.28230 15.28230 +2011 333 13.22030 13.22030 +2011 334 12.53550 12.53550 +2011 335 13.65880 13.65880 +2011 336 14.44060 14.44060 +2011 337 14.60640 14.60640 +2011 338 16.98750 16.98750 +2011 339 16.34670 16.34670 +2011 340 14.82220 14.82220 +2011 341 15.36680 15.36680 +2011 342 15.57150 15.57150 +2011 343 14.59590 14.59590 +2011 344 13.44460 13.44460 +2011 345 13.17560 13.17560 +2011 346 14.75810 14.75810 +2011 347 14.87020 14.87020 +2011 348 14.40650 14.40650 +2011 349 15.02670 15.02670 +2011 350 13.95360 13.95360 +2011 351 11.28860 11.28860 +2011 352 12.11860 12.11860 +2011 353 12.87530 12.87530 +2011 354 14.03750 14.03750 +2011 355 13.63520 13.63520 +2011 356 13.67050 13.67050 +2011 357 13.74030 13.74030 +2011 358 14.80730 14.80730 +2011 359 14.82150 14.82150 +2011 360 14.53010 14.53010 +2011 361 14.70600 14.70600 +2011 362 15.52090 15.52090 +2011 363 16.21490 16.21490 +2011 364 17.23110 17.23110 +2011 365 17.34970 17.34970 +2012 1 17.59650 17.59650 +2012 2 14.58260 14.58260 +2012 3 15.96820 15.96820 +2012 4 16.01030 16.01030 +2012 5 15.52350 15.52350 +2012 6 14.94650 14.94650 +2012 7 15.82600 15.82600 +2012 8 16.83840 16.83840 +2012 9 16.55520 16.55520 +2012 10 17.62980 17.62980 +2012 11 17.99430 17.99430 +2012 12 16.31410 16.31410 +2012 13 15.29640 15.29640 +2012 14 15.31190 15.31190 +2012 15 14.87440 14.87440 +2012 16 15.03240 15.03240 +2012 17 16.28480 16.28480 +2012 18 15.39990 15.39990 +2012 19 16.76870 16.76870 +2012 20 16.83270 16.83270 +2012 21 13.74320 13.74320 +2012 22 12.86450 12.86450 +2012 23 14.95190 14.95190 +2012 24 17.04980 17.04980 +2012 25 15.88060 15.88060 +2012 26 13.72610 13.72610 +2012 27 13.40020 13.40020 +2012 28 15.89490 15.89490 +2012 29 16.04080 16.04080 +2012 30 16.66380 16.66380 +2012 31 16.84020 16.84020 +2012 32 17.48060 17.48060 +2012 33 14.85910 14.85910 +2012 34 15.83890 15.83890 +2012 35 15.88230 15.88230 +2012 36 15.41380 15.41380 +2012 37 15.52920 15.52920 +2012 38 16.08200 16.08200 +2012 39 16.90290 16.90290 +2012 40 16.75780 16.75780 +2012 41 16.30840 16.30840 +2012 42 14.88940 14.88940 +2012 43 15.66150 15.66150 +2012 44 16.62600 16.62600 +2012 45 15.82330 15.82330 +2012 46 15.49810 15.49810 +2012 47 15.85260 15.85260 +2012 48 16.65520 16.65520 +2012 49 16.37860 16.37860 +2012 50 16.24470 16.24470 +2012 51 16.29520 16.29520 +2012 52 16.57440 16.57440 +2012 53 17.97230 17.97230 +2012 54 16.02000 16.02000 +2012 55 14.41570 14.41570 +2012 56 13.93440 13.93440 +2012 57 13.46080 13.46080 +2012 58 11.84320 11.84320 +2012 59 14.18220 14.18220 +2012 60 14.10050 14.10050 +2012 61 12.73500 12.73500 +2012 62 12.39510 12.39510 +2012 63 12.05580 12.05580 +2012 64 12.28650 12.28650 +2012 65 13.38580 13.38580 +2012 66 14.45320 14.45320 +2012 67 14.57310 14.57310 +2012 68 13.69340 13.69340 +2012 69 14.86690 14.86690 +2012 70 15.68310 15.68310 +2012 71 16.69790 16.69790 +2012 72 14.44070 14.44070 +2012 73 12.46450 12.46450 +2012 74 13.58330 13.58330 +2012 75 13.50330 13.50330 +2012 76 13.66990 13.66990 +2012 77 14.93870 14.93870 +2012 78 13.48660 13.48660 +2012 79 16.09550 16.09550 +2012 80 16.79250 16.79250 +2012 81 16.44510 16.44510 +2012 82 16.84110 16.84110 +2012 83 15.91590 15.91590 +2012 84 15.44160 15.44160 +2012 85 12.47770 12.47770 +2012 86 13.17750 13.17750 +2012 87 13.49550 13.49550 +2012 88 13.10360 13.10360 +2012 89 12.76680 12.76680 +2012 90 13.75040 13.75040 +2012 91 14.02750 14.02750 +2012 92 14.86370 14.86370 +2012 93 15.97950 15.97950 +2012 94 16.57670 16.57670 +2012 95 15.81920 15.81920 +2012 96 13.62140 13.62140 +2012 97 13.09630 13.09630 +2012 98 13.81150 13.81150 +2012 99 14.73860 14.73860 +2012 100 13.63620 13.63620 +2012 101 13.64700 13.64700 +2012 102 14.53600 14.53600 +2012 103 13.06310 13.06310 +2012 104 14.03310 14.03310 +2012 105 12.55700 12.55700 +2012 106 13.28810 13.28810 +2012 107 13.06720 13.06720 +2012 108 11.44350 11.44350 +2012 109 11.39920 11.39920 +2012 110 10.73510 10.73510 +2012 111 10.92990 10.92990 +2012 112 10.67730 10.67730 +2012 113 11.25680 11.25680 +2012 114 11.94820 11.94820 +2012 115 11.75540 11.75540 +2012 116 12.37320 12.37320 +2012 117 14.53610 14.53610 +2012 118 12.40540 12.40540 +2012 119 11.21860 11.21860 +2012 120 11.72460 11.72460 +2012 121 10.41760 10.41760 +2012 122 7.55821 7.55821 +2012 123 7.94518 7.94518 +2012 124 8.32443 8.32443 +2012 125 8.96392 8.96392 +2012 126 9.57537 9.57537 +2012 127 8.92048 8.92048 +2012 128 12.15180 12.15180 +2012 129 14.21890 14.21890 +2012 130 13.49250 13.49250 +2012 131 10.70600 10.70600 +2012 132 9.88504 9.88504 +2012 133 11.51940 11.51940 +2012 134 12.25520 12.25520 +2012 135 10.05560 10.05560 +2012 136 8.30735 8.30735 +2012 137 7.60066 7.60066 +2012 138 10.16390 10.16390 +2012 139 8.42201 8.42201 +2012 140 7.20690 7.20690 +2012 141 6.19511 6.19511 +2012 142 5.99394 5.99394 +2012 143 6.32330 6.32330 +2012 144 7.54205 7.54205 +2012 145 10.73380 10.73380 +2012 146 9.31642 9.31642 +2012 147 11.95970 11.95970 +2012 148 12.36570 12.36570 +2012 149 8.31575 8.31575 +2012 150 5.62424 5.62424 +2012 151 9.33776 9.33776 +2012 152 7.91349 7.91349 +2012 153 7.17940 7.17940 +2012 154 8.11567 8.11567 +2012 155 8.83928 8.83928 +2012 156 10.40570 10.40570 +2012 157 12.89970 12.89970 +2012 158 9.46419 9.46419 +2012 159 7.20755 7.20755 +2012 160 8.91870 8.91870 +2012 161 8.62853 8.62853 +2012 162 9.45367 9.45367 +2012 163 7.00716 7.00716 +2012 164 4.85778 4.85778 +2012 165 5.35510 5.35510 +2012 166 5.34952 5.34952 +2012 167 4.25611 4.25611 +2012 168 4.12562 4.12562 +2012 169 7.10677 7.10677 +2012 170 9.67743 9.67743 +2012 171 9.85141 9.85141 +2012 172 8.89082 8.89082 +2012 173 7.01885 7.01885 +2012 174 8.75475 8.75475 +2012 175 9.41379 9.41379 +2012 176 6.95567 6.95567 +2012 177 7.01013 7.01013 +2012 178 6.14749 6.14749 +2012 179 8.05162 8.05162 +2012 180 6.51646 6.51646 +2012 181 4.21398 4.21398 +2012 182 4.91820 4.91820 +2012 183 4.76353 4.76353 +2012 184 5.37238 5.37238 +2012 185 6.78648 6.78648 +2012 186 6.12375 6.12375 +2012 187 7.34918 7.34918 +2012 188 6.22335 6.22335 +2012 189 5.35342 5.35342 +2012 190 6.02151 6.02151 +2012 191 5.25752 5.25752 +2012 192 4.68393 4.68393 +2012 193 5.20734 5.20734 +2012 194 6.83701 6.83701 +2012 195 8.43473 8.43473 +2012 196 10.64820 10.64820 +2012 197 11.48150 11.48150 +2012 198 8.80159 8.80159 +2012 199 6.26416 6.26416 +2012 200 5.56078 5.56078 +2012 201 6.53254 6.53254 +2012 202 8.86454 8.86454 +2012 203 9.80832 9.80832 +2012 204 10.31260 10.31260 +2012 205 11.60050 11.60050 +2012 206 9.62706 9.62706 +2012 207 7.73475 7.73475 +2012 208 5.43557 5.43557 +2012 209 5.21417 5.21417 +2012 210 7.98460 7.98460 +2012 211 9.26950 9.26950 +2012 212 7.78682 7.78682 +2012 213 7.65027 7.65027 +2012 214 8.64109 8.64109 +2012 215 8.95758 8.95758 +2012 216 8.86118 8.86118 +2012 217 8.05159 8.05159 +2012 218 7.76216 7.76216 +2012 219 8.51166 8.51166 +2012 220 7.39323 7.39323 +2012 221 5.94285 5.94285 +2012 222 7.52495 7.52495 +2012 223 8.13931 8.13931 +2012 224 10.52140 10.52140 +2012 225 8.62421 8.62421 +2012 226 8.07997 8.07997 +2012 227 7.75923 7.75923 +2012 228 7.51872 7.51872 +2012 229 8.12192 8.12192 +2012 230 8.42146 8.42146 +2012 231 8.49724 8.49724 +2012 232 9.48441 9.48441 +2012 233 9.05441 9.05441 +2012 234 8.36332 8.36332 +2012 235 7.09747 7.09747 +2012 236 6.68933 6.68933 +2012 237 7.92716 7.92716 +2012 238 8.59140 8.59140 +2012 239 9.39789 9.39789 +2012 240 7.52599 7.52599 +2012 241 6.67206 6.67206 +2012 242 7.99137 7.99137 +2012 243 8.76635 8.76635 +2012 244 6.17513 6.17513 +2012 245 8.76118 8.76118 +2012 246 10.06810 10.06810 +2012 247 8.08873 8.08873 +2012 248 9.10802 9.10802 +2012 249 10.39160 10.39160 +2012 250 10.76650 10.76650 +2012 251 10.83740 10.83740 +2012 252 9.28471 9.28471 +2012 253 8.62929 8.62929 +2012 254 7.82758 7.82758 +2012 255 4.85945 4.85945 +2012 256 5.65471 5.65471 +2012 257 7.35265 7.35265 +2012 258 8.61843 8.61843 +2012 259 10.59810 10.59810 +2012 260 10.07950 10.07950 +2012 261 9.35710 9.35710 +2012 262 8.02099 8.02099 +2012 263 8.57246 8.57246 +2012 264 7.66551 7.66551 +2012 265 7.56819 7.56819 +2012 266 7.55126 7.55126 +2012 267 7.87706 7.87706 +2012 268 8.78641 8.78641 +2012 269 9.96503 9.96503 +2012 270 10.29270 10.29270 +2012 271 11.73990 11.73990 +2012 272 12.73620 12.73620 +2012 273 12.04760 12.04760 +2012 274 10.18960 10.18960 +2012 275 8.84724 8.84724 +2012 276 9.81438 9.81438 +2012 277 9.46713 9.46713 +2012 278 9.59518 9.59518 +2012 279 10.41510 10.41510 +2012 280 8.74342 8.74342 +2012 281 10.32530 10.32530 +2012 282 11.73750 11.73750 +2012 283 10.38990 10.38990 +2012 284 10.37000 10.37000 +2012 285 10.81520 10.81520 +2012 286 11.54440 11.54440 +2012 287 9.42227 9.42227 +2012 288 9.05310 9.05310 +2012 289 9.57777 9.57777 +2012 290 11.27950 11.27950 +2012 291 10.18900 10.18900 +2012 292 9.15777 9.15777 +2012 293 8.45202 8.45202 +2012 294 11.21270 11.21270 +2012 295 12.07740 12.07740 +2012 296 8.42243 8.42243 +2012 297 8.59996 8.59996 +2012 298 9.37495 9.37495 +2012 299 11.01080 11.01080 +2012 300 12.47160 12.47160 +2012 301 11.94300 11.94300 +2012 302 13.51280 13.51280 +2012 303 14.22030 14.22030 +2012 304 14.11620 14.11620 +2012 305 13.71180 13.71180 +2012 306 14.02600 14.02600 +2012 307 12.13600 12.13600 +2012 308 9.72012 9.72012 +2012 309 9.94610 9.94610 +2012 310 10.03780 10.03780 +2012 311 9.61546 9.61546 +2012 312 9.82123 9.82123 +2012 313 11.28860 11.28860 +2012 314 13.46250 13.46250 +2012 315 12.66660 12.66660 +2012 316 11.55620 11.55620 +2012 317 10.23940 10.23940 +2012 318 10.44630 10.44630 +2012 319 10.85010 10.85010 +2012 320 11.95630 11.95630 +2012 321 11.25020 11.25020 +2012 322 10.83800 10.83800 +2012 323 11.79030 11.79030 +2012 324 12.03160 12.03160 +2012 325 12.67760 12.67760 +2012 326 13.40350 13.40350 +2012 327 13.53680 13.53680 +2012 328 12.86280 12.86280 +2012 329 14.49350 14.49350 +2012 330 14.59700 14.59700 +2012 331 15.80220 15.80220 +2012 332 13.70690 13.70690 +2012 333 13.69970 13.69970 +2012 334 12.54970 12.54970 +2012 335 13.13610 13.13610 +2012 336 14.35370 14.35370 +2012 337 17.06010 17.06010 +2012 338 14.68050 14.68050 +2012 339 15.53880 15.53880 +2012 340 16.64940 16.64940 +2012 341 12.03290 12.03290 +2012 342 13.04040 13.04040 +2012 343 14.85240 14.85240 +2012 344 15.42200 15.42200 +2012 345 15.74790 15.74790 +2012 346 15.29940 15.29940 +2012 347 14.43440 14.43440 +2012 348 15.55710 15.55710 +2012 349 16.44040 16.44040 +2012 350 16.54250 16.54250 +2012 351 16.72380 16.72380 +2012 352 17.39370 17.39370 +2012 353 19.20780 19.20780 +2012 354 17.96620 17.96620 +2012 355 17.23410 17.23410 +2012 356 18.03380 18.03380 +2012 357 18.61730 18.61730 +2012 358 18.83050 18.83050 +2012 359 18.65960 18.65960 +2012 360 17.82460 17.82460 +2012 361 18.27030 18.27030 +2012 362 16.67010 16.67010 +2012 363 18.13280 18.13280 +2012 364 16.85560 16.85560 +2012 365 15.44430 15.44430 +2012 366 15.68830 15.68830 +2013 1 16.09570 16.09570 +2013 2 14.66740 14.66740 +2013 3 13.86580 13.86580 +2013 4 16.02210 16.02210 +2013 5 16.64670 16.64670 +2013 6 19.20480 19.20480 +2013 7 15.39510 15.39510 +2013 8 17.56710 17.56710 +2013 9 18.81500 18.81500 +2013 10 19.76840 19.76840 +2013 11 19.91720 19.91720 +2013 12 19.44970 19.44970 +2013 13 18.45390 18.45390 +2013 14 16.88410 16.88410 +2013 15 15.09170 15.09170 +2013 16 13.69870 13.69870 +2013 17 13.36110 13.36110 +2013 18 15.21250 15.21250 +2013 19 18.75080 18.75080 +2013 20 17.65300 17.65300 +2013 21 17.69780 17.69780 +2013 22 17.85090 17.85090 +2013 23 18.64830 18.64830 +2013 24 17.97980 17.97980 +2013 25 15.69130 15.69130 +2013 26 16.98250 16.98250 +2013 27 17.52120 17.52120 +2013 28 17.43700 17.43700 +2013 29 17.23230 17.23230 +2013 30 17.67790 17.67790 +2013 31 16.93610 16.93610 +2013 32 17.45270 17.45270 +2013 33 18.26390 18.26390 +2013 34 18.54210 18.54210 +2013 35 15.85410 15.85410 +2013 36 14.24040 14.24040 +2013 37 15.77910 15.77910 +2013 38 16.79610 16.79610 +2013 39 18.04380 18.04380 +2013 40 17.49920 17.49920 +2013 41 17.34830 17.34830 +2013 42 17.26010 17.26010 +2013 43 16.14080 16.14080 +2013 44 16.34720 16.34720 +2013 45 17.00490 17.00490 +2013 46 17.62820 17.62820 +2013 47 17.66650 17.66650 +2013 48 17.75970 17.75970 +2013 49 18.03910 18.03910 +2013 50 17.46760 17.46760 +2013 51 18.18870 18.18870 +2013 52 18.12220 18.12220 +2013 53 17.32350 17.32350 +2013 54 17.07610 17.07610 +2013 55 17.05430 17.05430 +2013 56 16.53250 16.53250 +2013 57 17.26400 17.26400 +2013 58 17.44320 17.44320 +2013 59 19.23450 19.23450 +2013 60 19.75940 19.75940 +2013 61 19.53590 19.53590 +2013 62 18.23820 18.23820 +2013 63 15.25560 15.25560 +2013 64 16.24790 16.24790 +2013 65 17.29670 17.29670 +2013 66 18.00350 18.00350 +2013 67 16.97070 16.97070 +2013 68 17.89520 17.89520 +2013 69 18.20790 18.20790 +2013 70 17.65750 17.65750 +2013 71 16.60720 16.60720 +2013 72 16.52370 16.52370 +2013 73 17.04500 17.04500 +2013 74 16.95650 16.95650 +2013 75 17.43800 17.43800 +2013 76 18.94850 18.94850 +2013 77 16.75900 16.75900 +2013 78 13.78330 13.78330 +2013 79 13.72780 13.72780 +2013 80 14.03840 14.03840 +2013 81 14.21860 14.21860 +2013 82 14.24550 14.24550 +2013 83 14.69010 14.69010 +2013 84 16.29360 16.29360 +2013 85 16.74120 16.74120 +2013 86 16.85300 16.85300 +2013 87 15.66520 15.66520 +2013 88 15.68620 15.68620 +2013 89 15.84510 15.84510 +2013 90 17.37260 17.37260 +2013 91 16.55730 16.55730 +2013 92 17.08710 17.08710 +2013 93 15.18370 15.18370 +2013 94 13.54220 13.54220 +2013 95 11.82380 11.82380 +2013 96 11.18360 11.18360 +2013 97 11.08500 11.08500 +2013 98 11.61280 11.61280 +2013 99 11.71420 11.71420 +2013 100 13.31300 13.31300 +2013 101 13.41270 13.41270 +2013 102 14.49850 14.49850 +2013 103 14.18510 14.18510 +2013 104 14.11720 14.11720 +2013 105 15.01010 15.01010 +2013 106 16.60120 16.60120 +2013 107 14.65290 14.65290 +2013 108 12.95560 12.95560 +2013 109 12.71540 12.71540 +2013 110 14.38900 14.38900 +2013 111 14.24000 14.24000 +2013 112 12.60520 12.60520 +2013 113 13.28500 13.28500 +2013 114 13.94320 13.94320 +2013 115 13.18900 13.18900 +2013 116 14.16980 14.16980 +2013 117 14.16730 14.16730 +2013 118 14.80210 14.80210 +2013 119 15.08540 15.08540 +2013 120 12.69410 12.69410 +2013 121 12.14830 12.14830 +2013 122 13.66130 13.66130 +2013 123 13.56910 13.56910 +2013 124 12.42660 12.42660 +2013 125 10.45680 10.45680 +2013 126 11.00930 11.00930 +2013 127 9.98455 9.98455 +2013 128 10.55240 10.55240 +2013 129 10.81560 10.81560 +2013 130 9.37974 9.37974 +2013 131 11.00550 11.00550 +2013 132 12.28980 12.28980 +2013 133 11.96520 11.96520 +2013 134 13.00650 13.00650 +2013 135 11.10190 11.10190 +2013 136 12.21280 12.21280 +2013 137 13.00500 13.00500 +2013 138 11.68120 11.68120 +2013 139 11.05150 11.05150 +2013 140 9.43600 9.43600 +2013 141 10.05910 10.05910 +2013 142 10.12820 10.12820 +2013 143 8.92021 8.92021 +2013 144 10.09140 10.09140 +2013 145 12.55200 12.55200 +2013 146 10.89490 10.89490 +2013 147 5.79016 5.79016 +2013 148 4.85397 4.85397 +2013 149 6.22239 6.22239 +2013 150 7.86115 7.86115 +2013 151 9.81770 9.81770 +2013 152 8.94224 8.94224 +2013 153 8.05959 8.05959 +2013 154 9.96696 9.96696 +2013 155 10.28650 10.28650 +2013 156 8.99300 8.99300 +2013 157 8.55429 8.55429 +2013 158 7.89402 7.89402 +2013 159 9.14900 9.14900 +2013 160 9.57171 9.57171 +2013 161 10.35190 10.35190 +2013 162 11.17640 11.17640 +2013 163 9.18570 9.18570 +2013 164 8.91430 8.91430 +2013 165 7.43056 7.43056 +2013 166 11.45440 11.45440 +2013 167 11.58250 11.58250 +2013 168 11.39520 11.39520 +2013 169 10.35250 10.35250 +2013 170 6.36368 6.36368 +2013 171 5.42987 5.42987 +2013 172 6.12904 6.12904 +2013 173 4.80756 4.80756 +2013 174 5.58380 5.58380 +2013 175 7.38364 7.38364 +2013 176 6.15654 6.15654 +2013 177 6.00767 6.00767 +2013 178 6.93853 6.93853 +2013 179 5.59268 5.59268 +2013 180 6.60760 6.60760 +2013 181 7.90765 7.90765 +2013 182 7.89855 7.89855 +2013 183 8.04789 8.04789 +2013 184 10.39360 10.39360 +2013 185 10.12260 10.12260 +2013 186 11.14230 11.14230 +2013 187 9.19874 9.19874 +2013 188 7.58307 7.58307 +2013 189 5.72473 5.72473 +2013 190 5.95492 5.95492 +2013 191 6.22807 6.22807 +2013 192 6.79230 6.79230 +2013 193 6.22200 6.22200 +2013 194 6.73642 6.73642 +2013 195 3.69401 3.69401 +2013 196 4.45945 4.45945 +2013 197 6.07683 6.07683 +2013 198 7.90414 7.90414 +2013 199 7.81679 7.81679 +2013 200 8.46476 8.46476 +2013 201 8.78138 8.78138 +2013 202 7.74920 7.74920 +2013 203 7.66932 7.66932 +2013 204 8.01670 8.01670 +2013 205 8.76840 8.76840 +2013 206 8.46182 8.46182 +2013 207 7.62775 7.62775 +2013 208 7.27880 7.27880 +2013 209 7.37182 7.37182 +2013 210 6.56221 6.56221 +2013 211 6.81083 6.81083 +2013 212 9.29877 9.29877 +2013 213 10.07620 10.07620 +2013 214 10.91070 10.91070 +2013 215 10.39860 10.39860 +2013 216 9.64784 9.64784 +2013 217 9.57083 9.57083 +2013 218 9.32892 9.32892 +2013 219 9.94031 9.94031 +2013 220 9.31742 9.31742 +2013 221 10.15090 10.15090 +2013 222 9.11347 9.11347 +2013 223 7.77819 7.77819 +2013 224 8.92937 8.92937 +2013 225 8.88885 8.88885 +2013 226 8.63289 8.63289 +2013 227 8.46123 8.46123 +2013 228 8.96865 8.96865 +2013 229 9.57490 9.57490 +2013 230 8.88853 8.88853 +2013 231 7.56563 7.56563 +2013 232 8.41452 8.41452 +2013 233 9.96493 9.96493 +2013 234 8.20996 8.20996 +2013 235 7.87304 7.87304 +2013 236 9.59026 9.59026 +2013 237 9.36186 9.36186 +2013 238 8.68711 8.68711 +2013 239 8.71159 8.71159 +2013 240 8.22708 8.22708 +2013 241 7.43182 7.43182 +2013 242 7.43712 7.43712 +2013 243 7.87854 7.87854 +2013 244 7.68808 7.68808 +2013 245 7.92948 7.92948 +2013 246 6.71727 6.71727 +2013 247 6.27858 6.27858 +2013 248 7.31231 7.31231 +2013 249 9.28285 9.28285 +2013 250 10.51930 10.51930 +2013 251 9.22569 9.22569 +2013 252 9.24448 9.24448 +2013 253 11.42220 11.42220 +2013 254 12.45930 12.45930 +2013 255 11.25340 11.25340 +2013 256 8.68682 8.68682 +2013 257 8.40658 8.40658 +2013 258 8.35083 8.35083 +2013 259 8.20723 8.20723 +2013 260 6.82372 6.82372 +2013 261 8.50209 8.50209 +2013 262 11.68650 11.68650 +2013 263 12.65680 12.65680 +2013 264 13.19370 13.19370 +2013 265 12.19050 12.19050 +2013 266 11.33460 11.33460 +2013 267 12.79760 12.79760 +2013 268 11.90490 11.90490 +2013 269 12.69700 12.69700 +2013 270 10.81220 10.81220 +2013 271 10.60160 10.60160 +2013 272 10.27260 10.27260 +2013 273 11.42930 11.42930 +2013 274 11.16920 11.16920 +2013 275 11.34250 11.34250 +2013 276 12.27980 12.27980 +2013 277 13.25230 13.25230 +2013 278 12.95780 12.95780 +2013 279 12.16270 12.16270 +2013 280 11.86660 11.86660 +2013 281 9.50138 9.50138 +2013 282 8.66820 8.66820 +2013 283 12.83880 12.83880 +2013 284 9.19156 9.19156 +2013 285 11.34270 11.34270 +2013 286 12.53580 12.53580 +2013 287 11.30210 11.30210 +2013 288 9.46315 9.46315 +2013 289 11.79570 11.79570 +2013 290 11.73130 11.73130 +2013 291 13.66960 13.66960 +2013 292 12.52940 12.52940 +2013 293 11.67580 11.67580 +2013 294 11.95710 11.95710 +2013 295 13.72370 13.72370 +2013 296 13.64930 13.64930 +2013 297 12.65370 12.65370 +2013 298 11.37420 11.37420 +2013 299 10.87810 10.87810 +2013 300 10.79560 10.79560 +2013 301 10.00550 10.00550 +2013 302 10.42000 10.42000 +2013 303 13.02980 13.02980 +2013 304 12.17050 12.17050 +2013 305 10.44770 10.44770 +2013 306 11.84740 11.84740 +2013 307 12.34300 12.34300 +2013 308 12.57160 12.57160 +2013 309 12.41050 12.41050 +2013 310 11.63410 11.63410 +2013 311 12.66510 12.66510 +2013 312 14.11680 14.11680 +2013 313 15.58090 15.58090 +2013 314 16.40880 16.40880 +2013 315 13.20700 13.20700 +2013 316 11.54620 11.54620 +2013 317 12.59250 12.59250 +2013 318 13.35690 13.35690 +2013 319 14.07610 14.07610 +2013 320 16.17910 16.17910 +2013 321 16.20500 16.20500 +2013 322 14.23450 14.23450 +2013 323 14.13760 14.13760 +2013 324 14.97220 14.97220 +2013 325 15.66690 15.66690 +2013 326 16.49580 16.49580 +2013 327 17.14400 17.14400 +2013 328 16.59980 16.59980 +2013 329 15.94780 15.94780 +2013 330 14.95800 14.95800 +2013 331 14.56740 14.56740 +2013 332 15.06760 15.06760 +2013 333 15.53800 15.53800 +2013 334 13.16350 13.16350 +2013 335 14.05880 14.05880 +2013 336 14.52020 14.52020 +2013 337 15.17500 15.17500 +2013 338 15.87480 15.87480 +2013 339 17.30570 17.30570 +2013 340 15.93630 15.93630 +2013 341 14.76560 14.76560 +2013 342 14.68500 14.68500 +2013 343 14.16440 14.16440 +2013 344 15.26550 15.26550 +2013 345 16.75480 16.75480 +2013 346 16.83950 16.83950 +2013 347 17.48130 17.48130 +2013 348 17.92970 17.92970 +2013 349 18.26710 18.26710 +2013 350 16.88320 16.88320 +2013 351 15.04460 15.04460 +2013 352 15.35200 15.35200 +2013 353 15.28290 15.28290 +2013 354 15.46190 15.46190 +2013 355 16.67520 16.67520 +2013 356 13.52170 13.52170 +2013 357 15.29860 15.29860 +2013 358 15.62870 15.62870 +2013 359 14.50230 14.50230 +2013 360 15.85110 15.85110 +2013 361 15.84810 15.84810 +2013 362 15.38720 15.38720 +2013 363 16.44170 16.44170 +2013 364 14.89660 14.89660 +2013 365 14.62540 14.62540 +2014 1 15.41890 15.41890 +2014 2 16.91270 16.91270 +2014 3 18.74500 18.74500 +2014 4 17.79030 17.79030 +2014 5 16.47240 16.47240 +2014 6 16.19060 16.19060 +2014 7 16.34190 16.34190 +2014 8 13.62220 13.62220 +2014 9 14.11190 14.11190 +2014 10 15.46230 15.46230 +2014 11 14.49550 14.49550 +2014 12 15.42010 15.42010 +2014 13 14.76470 14.76470 +2014 14 14.82240 14.82240 +2014 15 15.14950 15.14950 +2014 16 16.07260 16.07260 +2014 17 14.77960 14.77960 +2014 18 16.15590 16.15590 +2014 19 14.57890 14.57890 +2014 20 16.58720 16.58720 +2014 21 16.40960 16.40960 +2014 22 15.00510 15.00510 +2014 23 15.63620 15.63620 +2014 24 15.90410 15.90410 +2014 25 17.73590 17.73590 +2014 26 15.36800 15.36800 +2014 27 14.29690 14.29690 +2014 28 16.05000 16.05000 +2014 29 17.25930 17.25930 +2014 30 16.58340 16.58340 +2014 31 16.18860 16.18860 +2014 32 16.54690 16.54690 +2014 33 15.99700 15.99700 +2014 34 17.36750 17.36750 +2014 35 17.40450 17.40450 +2014 36 16.87380 16.87380 +2014 37 15.76520 15.76520 +2014 38 18.52760 18.52760 +2014 39 18.43890 18.43890 +2014 40 16.59310 16.59310 +2014 41 16.88330 16.88330 +2014 42 15.57540 15.57540 +2014 43 14.67530 14.67530 +2014 44 15.07250 15.07250 +2014 45 16.20010 16.20010 +2014 46 16.70260 16.70260 +2014 47 16.95250 16.95250 +2014 48 18.49390 18.49390 +2014 49 18.15910 18.15910 +2014 50 19.02290 19.02290 +2014 51 18.62420 18.62420 +2014 52 18.87930 18.87930 +2014 53 17.61330 17.61330 +2014 54 14.87880 14.87880 +2014 55 15.93830 15.93830 +2014 56 17.00150 17.00150 +2014 57 16.92170 16.92170 +2014 58 16.64300 16.64300 +2014 59 14.45020 14.45020 +2014 60 14.24810 14.24810 +2014 61 13.65120 13.65120 +2014 62 12.15680 12.15680 +2014 63 13.67140 13.67140 +2014 64 15.34510 15.34510 +2014 65 15.02410 15.02410 +2014 66 14.81570 14.81570 +2014 67 15.12420 15.12420 +2014 68 16.33510 16.33510 +2014 69 16.39160 16.39160 +2014 70 16.44970 16.44970 +2014 71 16.19350 16.19350 +2014 72 15.65460 15.65460 +2014 73 16.05420 16.05420 +2014 74 17.20040 17.20040 +2014 75 16.34310 16.34310 +2014 76 16.95150 16.95150 +2014 77 16.93300 16.93300 +2014 78 15.20150 15.20150 +2014 79 15.43470 15.43470 +2014 80 14.47570 14.47570 +2014 81 15.31660 15.31660 +2014 82 15.60810 15.60810 +2014 83 14.96180 14.96180 +2014 84 14.06090 14.06090 +2014 85 13.73960 13.73960 +2014 86 15.20540 15.20540 +2014 87 14.12950 14.12950 +2014 88 14.89380 14.89380 +2014 89 15.89760 15.89760 +2014 90 15.56750 15.56750 +2014 91 16.12900 16.12900 +2014 92 15.19530 15.19530 +2014 93 14.50020 14.50020 +2014 94 15.07740 15.07740 +2014 95 17.45400 17.45400 +2014 96 18.47730 18.47730 +2014 97 17.90380 17.90380 +2014 98 17.02440 17.02440 +2014 99 15.59380 15.59380 +2014 100 14.60630 14.60630 +2014 101 15.05030 15.05030 +2014 102 13.97800 13.97800 +2014 103 13.48850 13.48850 +2014 104 14.56580 14.56580 +2014 105 14.76630 14.76630 +2014 106 14.54630 14.54630 +2014 107 15.44480 15.44480 +2014 108 14.72370 14.72370 +2014 109 13.46900 13.46900 +2014 110 12.46280 12.46280 +2014 111 12.43750 12.43750 +2014 112 11.27680 11.27680 +2014 113 11.67820 11.67820 +2014 114 14.24750 14.24750 +2014 115 12.58870 12.58870 +2014 116 10.58620 10.58620 +2014 117 11.46350 11.46350 +2014 118 10.56970 10.56970 +2014 119 9.93152 9.93152 +2014 120 9.99638 9.99638 +2014 121 9.48349 9.48349 +2014 122 10.80100 10.80100 +2014 123 12.17600 12.17600 +2014 124 13.76630 13.76630 +2014 125 14.29890 14.29890 +2014 126 12.56420 12.56420 +2014 127 12.48720 12.48720 +2014 128 11.20730 11.20730 +2014 129 9.81864 9.81864 +2014 130 10.29590 10.29590 +2014 131 11.05200 11.05200 +2014 132 10.36990 10.36990 +2014 133 9.13963 9.13963 +2014 134 8.83363 8.83363 +2014 135 9.63987 9.63987 +2014 136 8.96916 8.96916 +2014 137 8.79526 8.79526 +2014 138 11.05910 11.05910 +2014 139 10.36630 10.36630 +2014 140 11.69550 11.69550 +2014 141 10.79640 10.79640 +2014 142 11.11020 11.11020 +2014 143 13.27460 13.27460 +2014 144 12.22500 12.22500 +2014 145 8.77278 8.77278 +2014 146 6.02621 6.02621 +2014 147 6.27551 6.27551 +2014 148 8.48264 8.48264 +2014 149 9.81802 9.81802 +2014 150 8.44502 8.44502 +2014 151 8.80479 8.80479 +2014 152 9.89284 9.89284 +2014 153 10.28040 10.28040 +2014 154 9.16756 9.16756 +2014 155 7.93862 7.93862 +2014 156 9.57005 9.57005 +2014 157 9.24084 9.24084 +2014 158 9.55197 9.55197 +2014 159 11.50220 11.50220 +2014 160 10.44320 10.44320 +2014 161 10.64880 10.64880 +2014 162 9.41354 9.41354 +2014 163 9.82404 9.82404 +2014 164 8.61100 8.61100 +2014 165 8.05170 8.05170 +2014 166 9.31144 9.31144 +2014 167 11.99430 11.99430 +2014 168 9.77872 9.77872 +2014 169 8.83776 8.83776 +2014 170 8.26623 8.26623 +2014 171 8.47200 8.47200 +2014 172 10.44130 10.44130 +2014 173 7.90753 7.90753 +2014 174 9.75495 9.75495 +2014 175 11.80110 11.80110 +2014 176 13.05980 13.05980 +2014 177 9.88294 9.88294 +2014 178 8.89111 8.89111 +2014 179 7.68932 7.68932 +2014 180 10.17320 10.17320 +2014 181 9.71824 9.71824 +2014 182 5.86149 5.86149 +2014 183 4.91199 4.91199 +2014 184 5.17987 5.17987 +2014 185 9.51101 9.51101 +2014 186 7.33623 7.33623 +2014 187 7.36133 7.36133 +2014 188 7.27312 7.27312 +2014 189 9.05016 9.05016 +2014 190 10.14780 10.14780 +2014 191 10.37230 10.37230 +2014 192 10.09500 10.09500 +2014 193 8.89828 8.89828 +2014 194 8.74489 8.74489 +2014 195 7.43046 7.43046 +2014 196 5.96582 5.96582 +2014 197 5.11931 5.11931 +2014 198 5.39519 5.39519 +2014 199 5.32503 5.32503 +2014 200 9.34928 9.34928 +2014 201 6.42376 6.42376 +2014 202 3.39682 3.39682 +2014 203 6.02600 6.02600 +2014 204 5.88033 5.88033 +2014 205 6.98572 6.98572 +2014 206 5.54645 5.54645 +2014 207 5.99308 5.99308 +2014 208 5.25750 5.25750 +2014 209 7.87154 7.87154 +2014 210 9.11679 9.11679 +2014 211 10.36030 10.36030 +2014 212 10.21630 10.21630 +2014 213 12.95220 12.95220 +2014 214 10.69080 10.69080 +2014 215 6.55719 6.55719 +2014 216 6.61745 6.61745 +2014 217 7.66422 7.66422 +2014 218 7.09975 7.09975 +2014 219 7.85721 7.85721 +2014 220 4.36046 4.36046 +2014 221 4.86859 4.86859 +2014 222 7.27898 7.27898 +2014 223 7.69643 7.69643 +2014 224 5.71711 5.71711 +2014 225 5.92610 5.92610 +2014 226 5.55784 5.55784 +2014 227 7.75769 7.75769 +2014 228 6.73722 6.73722 +2014 229 6.85104 6.85104 +2014 230 7.19898 7.19898 +2014 231 10.55360 10.55360 +2014 232 8.35645 8.35645 +2014 233 5.29963 5.29963 +2014 234 7.31780 7.31780 +2014 235 7.91255 7.91255 +2014 236 7.14132 7.14132 +2014 237 6.85191 6.85191 +2014 238 6.91908 6.91908 +2014 239 7.45494 7.45494 +2014 240 7.92423 7.92423 +2014 241 7.81761 7.81761 +2014 242 8.22914 8.22914 +2014 243 8.38353 8.38353 +2014 244 11.01640 11.01640 +2014 245 10.91190 10.91190 +2014 246 9.94522 9.94522 +2014 247 10.91240 10.91240 +2014 248 10.56160 10.56160 +2014 249 10.61120 10.61120 +2014 250 9.53458 9.53458 +2014 251 9.11063 9.11063 +2014 252 9.23619 9.23619 +2014 253 9.09367 9.09367 +2014 254 10.77780 10.77780 +2014 255 12.23560 12.23560 +2014 256 9.69727 9.69727 +2014 257 8.64731 8.64731 +2014 258 9.22282 9.22282 +2014 259 9.37657 9.37657 +2014 260 8.73572 8.73572 +2014 261 10.61870 10.61870 +2014 262 7.68615 7.68615 +2014 263 6.96798 6.96798 +2014 264 7.32470 7.32470 +2014 265 7.81000 7.81000 +2014 266 11.58920 11.58920 +2014 267 10.12070 10.12070 +2014 268 10.51080 10.51080 +2014 269 10.19020 10.19020 +2014 270 11.71380 11.71380 +2014 271 9.55405 9.55405 +2014 272 10.64580 10.64580 +2014 273 10.94840 10.94840 +2014 274 9.45110 9.45110 +2014 275 8.16440 8.16440 +2014 276 6.22958 6.22958 +2014 277 8.64459 8.64459 +2014 278 10.10740 10.10740 +2014 279 9.25149 9.25149 +2014 280 10.60030 10.60030 +2014 281 11.91620 11.91620 +2014 282 11.09380 11.09380 +2014 283 10.18670 10.18670 +2014 284 10.63260 10.63260 +2014 285 11.32780 11.32780 +2014 286 11.50860 11.50860 +2014 287 13.15020 13.15020 +2014 288 12.36310 12.36310 +2014 289 12.50720 12.50720 +2014 290 13.04630 13.04630 +2014 291 12.89600 12.89600 +2014 292 10.94460 10.94460 +2014 293 11.99230 11.99230 +2014 294 11.16900 11.16900 +2014 295 12.14900 12.14900 +2014 296 11.42720 11.42720 +2014 297 9.05163 9.05163 +2014 298 9.54620 9.54620 +2014 299 10.97880 10.97880 +2014 300 12.09570 12.09570 +2014 301 12.90220 12.90220 +2014 302 10.27010 10.27010 +2014 303 11.53270 11.53270 +2014 304 12.38290 12.38290 +2014 305 13.48790 13.48790 +2014 306 12.37030 12.37030 +2014 307 10.75430 10.75430 +2014 308 9.85521 9.85521 +2014 309 8.39478 8.39478 +2014 310 9.45190 9.45190 +2014 311 11.75580 11.75580 +2014 312 12.56840 12.56840 +2014 313 12.30970 12.30970 +2014 314 12.51650 12.51650 +2014 315 8.89822 8.89822 +2014 316 8.88120 8.88120 +2014 317 10.82980 10.82980 +2014 318 11.64020 11.64020 +2014 319 11.61130 11.61130 +2014 320 11.19410 11.19410 +2014 321 12.36830 12.36830 +2014 322 11.35340 11.35340 +2014 323 10.77410 10.77410 +2014 324 12.60320 12.60320 +2014 325 14.82910 14.82910 +2014 326 15.03300 15.03300 +2014 327 14.85730 14.85730 +2014 328 17.20830 17.20830 +2014 329 15.62310 15.62310 +2014 330 13.73400 13.73400 +2014 331 11.85480 11.85480 +2014 332 10.64350 10.64350 +2014 333 11.63090 11.63090 +2014 334 10.12710 10.12710 +2014 335 11.21160 11.21160 +2014 336 13.01520 13.01520 +2014 337 12.38060 12.38060 +2014 338 14.39870 14.39870 +2014 339 15.53090 15.53090 +2014 340 16.20140 16.20140 +2014 341 16.78260 16.78260 +2014 342 15.02360 15.02360 +2014 343 15.95780 15.95780 +2014 344 16.81890 16.81890 +2014 345 13.61980 13.61980 +2014 346 13.83250 13.83250 +2014 347 11.56530 11.56530 +2014 348 13.95030 13.95030 +2014 349 13.27710 13.27710 +2014 350 13.66970 13.66970 +2014 351 17.17020 17.17020 +2014 352 17.55980 17.55980 +2014 353 16.95640 16.95640 +2014 354 17.93220 17.93220 +2014 355 16.62090 16.62090 +2014 356 15.88020 15.88020 +2014 357 15.92190 15.92190 +2014 358 15.27160 15.27160 +2014 359 15.65350 15.65350 +2014 360 14.89870 14.89870 +2014 361 15.88120 15.88120 +2014 362 16.50760 16.50760 +2014 363 15.49420 15.49420 +2014 364 15.52140 15.52140 +2014 365 17.63570 17.63570 +2015 1 16.52410 16.52410 +2015 2 17.22270 17.22270 +2015 3 17.36950 17.36950 +2015 4 18.49150 18.49150 +2015 5 17.45930 17.45930 +2015 6 18.17670 18.17670 +2015 7 18.02290 18.02290 +2015 8 16.15890 16.15890 +2015 9 18.58710 18.58710 +2015 10 18.07730 18.07730 +2015 11 19.31280 19.31280 +2015 12 19.04160 19.04160 +2015 13 18.85380 18.85380 +2015 14 18.90440 18.90440 +2015 15 18.68060 18.68060 +2015 16 19.18250 19.18250 +2015 17 19.28780 19.28780 +2015 18 19.18170 19.18170 +2015 19 18.30310 18.30310 +2015 20 18.50920 18.50920 +2015 21 17.28850 17.28850 +2015 22 18.28170 18.28170 +2015 23 19.58360 19.58360 +2015 24 18.93080 18.93080 +2015 25 18.63460 18.63460 +2015 26 17.88150 17.88150 +2015 27 19.03380 19.03380 +2015 28 18.89280 18.89280 +2015 29 19.23170 19.23170 +2015 30 18.74190 18.74190 +2015 31 18.04960 18.04960 +2015 32 19.19890 19.19890 +2015 33 19.08790 19.08790 +2015 34 16.45810 16.45810 +2015 35 16.06200 16.06200 +2015 36 14.79400 14.79400 +2015 37 15.24800 15.24800 +2015 38 17.61940 17.61940 +2015 39 17.44850 17.44850 +2015 40 15.90570 15.90570 +2015 41 15.75120 15.75120 +2015 42 15.77200 15.77200 +2015 43 17.11780 17.11780 +2015 44 16.68140 16.68140 +2015 45 15.71710 15.71710 +2015 46 15.54410 15.54410 +2015 47 16.47180 16.47180 +2015 48 17.95950 17.95950 +2015 49 18.69620 18.69620 +2015 50 17.47690 17.47690 +2015 51 17.29890 17.29890 +2015 52 17.25750 17.25750 +2015 53 16.62320 16.62320 +2015 54 16.79340 16.79340 +2015 55 17.25220 17.25220 +2015 56 16.64290 16.64290 +2015 57 16.86030 16.86030 +2015 58 17.27210 17.27210 +2015 59 18.10240 18.10240 +2015 60 18.18010 18.18010 +2015 61 17.45290 17.45290 +2015 62 16.50950 16.50950 +2015 63 17.43060 17.43060 +2015 64 17.23180 17.23180 +2015 65 16.62930 16.62930 +2015 66 15.77290 15.77290 +2015 67 16.24020 16.24020 +2015 68 17.46840 17.46840 +2015 69 17.25320 17.25320 +2015 70 16.00600 16.00600 +2015 71 16.24110 16.24110 +2015 72 17.36740 17.36740 +2015 73 16.31120 16.31120 +2015 74 15.55920 15.55920 +2015 75 14.58270 14.58270 +2015 76 12.82130 12.82130 +2015 77 12.69530 12.69530 +2015 78 12.16920 12.16920 +2015 79 13.29290 13.29290 +2015 80 14.24160 14.24160 +2015 81 13.80170 13.80170 +2015 82 14.14250 14.14250 +2015 83 14.94400 14.94400 +2015 84 15.93730 15.93730 +2015 85 16.25970 16.25970 +2015 86 15.81250 15.81250 +2015 87 15.77550 15.77550 +2015 88 15.07020 15.07020 +2015 89 14.23150 14.23150 +2015 90 14.29570 14.29570 +2015 91 15.04080 15.04080 +2015 92 14.17000 14.17000 +2015 93 14.25310 14.25310 +2015 94 15.97300 15.97300 +2015 95 15.09670 15.09670 +2015 96 16.36040 16.36040 +2015 97 16.83560 16.83560 +2015 98 16.91330 16.91330 +2015 99 16.69840 16.69840 +2015 100 14.73170 14.73170 +2015 101 13.13670 13.13670 +2015 102 11.09940 11.09940 +2015 103 7.69203 7.69203 +2015 104 8.51847 8.51847 +2015 105 9.86863 9.86863 +2015 106 10.46330 10.46330 +2015 107 11.20290 11.20290 +2015 108 12.20270 12.20270 +2015 109 13.77990 13.77990 +2015 110 13.71730 13.71730 +2015 111 14.10610 14.10610 +2015 112 13.71780 13.71780 +2015 113 12.81110 12.81110 +2015 114 11.81510 11.81510 +2015 115 13.50630 13.50630 +2015 116 14.27700 14.27700 +2015 117 12.42340 12.42340 +2015 118 10.23510 10.23510 +2015 119 10.87170 10.87170 +2015 120 9.57529 9.57529 +2015 121 10.28390 10.28390 +2015 122 9.75223 9.75223 +2015 123 9.84129 9.84129 +2015 124 12.49950 12.49950 +2015 125 13.08260 13.08260 +2015 126 14.75280 14.75280 +2015 127 14.37750 14.37750 +2015 128 11.81760 11.81760 +2015 129 11.80050 11.80050 +2015 130 11.12910 11.12910 +2015 131 11.32860 11.32860 +2015 132 10.74420 10.74420 +2015 133 11.26370 11.26370 +2015 134 11.23260 11.23260 +2015 135 8.73518 8.73518 +2015 136 9.39496 9.39496 +2015 137 9.19512 9.19512 +2015 138 10.34510 10.34510 +2015 139 9.26085 9.26085 +2015 140 10.26680 10.26680 +2015 141 10.97580 10.97580 +2015 142 9.93710 9.93710 +2015 143 8.98046 8.98046 +2015 144 7.09137 7.09137 +2015 145 7.53777 7.53777 +2015 146 7.24619 7.24619 +2015 147 6.00084 6.00084 +2015 148 5.65254 5.65254 +2015 149 7.64454 7.64454 +2015 150 9.68785 9.68785 +2015 151 10.84140 10.84140 +2015 152 12.25510 12.25510 +2015 153 10.49100 10.49100 +2015 154 9.89777 9.89777 +2015 155 8.60518 8.60518 +2015 156 7.09465 7.09465 +2015 157 7.21832 7.21832 +2015 158 7.41036 7.41036 +2015 159 9.76622 9.76622 +2015 160 10.90360 10.90360 +2015 161 9.76947 9.76947 +2015 162 8.95282 8.95282 +2015 163 9.14386 9.14386 +2015 164 10.19240 10.19240 +2015 165 8.79120 8.79120 +2015 166 5.47895 5.47895 +2015 167 4.91784 4.91784 +2015 168 7.50025 7.50025 +2015 169 11.18920 11.18920 +2015 170 13.01430 13.01430 +2015 171 9.31047 9.31047 +2015 172 6.50573 6.50573 +2015 173 4.09582 4.09582 +2015 174 4.85203 4.85203 +2015 175 4.22697 4.22697 +2015 176 6.35809 6.35809 +2015 177 8.50547 8.50547 +2015 178 8.44847 8.44847 +2015 179 8.96533 8.96533 +2015 180 9.69590 9.69590 +2015 181 9.14376 9.14376 +2015 182 7.43865 7.43865 +2015 183 9.08975 9.08975 +2015 184 9.89673 9.89673 +2015 185 8.75629 8.75629 +2015 186 9.58104 9.58104 +2015 187 9.37564 9.37564 +2015 188 4.66158 4.66158 +2015 189 2.50574 2.50574 +2015 190 3.15706 3.15706 +2015 191 3.60435 3.60435 +2015 192 4.14010 4.14010 +2015 193 4.12821 4.12821 +2015 194 5.88937 5.88937 +2015 195 9.16503 9.16503 +2015 196 9.57522 9.57522 +2015 197 8.11365 8.11365 +2015 198 7.83088 7.83088 +2015 199 5.85758 5.85758 +2015 200 5.58549 5.58549 +2015 201 5.52765 5.52765 +2015 202 6.34551 6.34551 +2015 203 5.89212 5.89212 +2015 204 5.61371 5.61371 +2015 205 6.00170 6.00170 +2015 206 8.13756 8.13756 +2015 207 10.40630 10.40630 +2015 208 9.00909 9.00909 +2015 209 7.30588 7.30588 +2015 210 4.86060 4.86060 +2015 211 5.34719 5.34719 +2015 212 7.41560 7.41560 +2015 213 8.53471 8.53471 +2015 214 9.84276 9.84276 +2015 215 11.12970 11.12970 +2015 216 9.44332 9.44332 +2015 217 11.11500 11.11500 +2015 218 7.70449 7.70449 +2015 219 5.41298 5.41298 +2015 220 4.14040 4.14040 +2015 221 3.46043 3.46043 +2015 222 3.90660 3.90660 +2015 223 4.26089 4.26089 +2015 224 4.87097 4.87097 +2015 225 7.68562 7.68562 +2015 226 7.55673 7.55673 +2015 227 7.67774 7.67774 +2015 228 7.45481 7.45481 +2015 229 7.72850 7.72850 +2015 230 8.67380 8.67380 +2015 231 7.41478 7.41478 +2015 232 6.36404 6.36404 +2015 233 6.15202 6.15202 +2015 234 8.05409 8.05409 +2015 235 8.68706 8.68706 +2015 236 8.85448 8.85448 +2015 237 7.97193 7.97193 +2015 238 6.96861 6.96861 +2015 239 7.34790 7.34790 +2015 240 7.34069 7.34069 +2015 241 9.97412 9.97412 +2015 242 8.44279 8.44279 +2015 243 9.23794 9.23794 +2015 244 9.69072 9.69072 +2015 245 9.03858 9.03858 +2015 246 7.24216 7.24216 +2015 247 8.07012 8.07012 +2015 248 7.27990 7.27990 +2015 249 6.88583 6.88583 +2015 250 6.33296 6.33296 +2015 251 7.30661 7.30661 +2015 252 8.20076 8.20076 +2015 253 7.15373 7.15373 +2015 254 6.07317 6.07317 +2015 255 8.75707 8.75707 +2015 256 8.00235 8.00235 +2015 257 8.46988 8.46988 +2015 258 9.78388 9.78388 +2015 259 10.15540 10.15540 +2015 260 10.60600 10.60600 +2015 261 9.17899 9.17899 +2015 262 8.11132 8.11132 +2015 263 6.38956 6.38956 +2015 264 7.89991 7.89991 +2015 265 8.22020 8.22020 +2015 266 10.29490 10.29490 +2015 267 9.48193 9.48193 +2015 268 8.40414 8.40414 +2015 269 8.31443 8.31443 +2015 270 8.11476 8.11476 +2015 271 7.91189 7.91189 +2015 272 9.26988 9.26988 +2015 273 10.80560 10.80560 +2015 274 10.70640 10.70640 +2015 275 11.04050 11.04050 +2015 276 10.12190 10.12190 +2015 277 12.44820 12.44820 +2015 278 10.96110 10.96110 +2015 279 11.81000 11.81000 +2015 280 10.74150 10.74150 +2015 281 8.54344 8.54344 +2015 282 8.98797 8.98797 +2015 283 10.21230 10.21230 +2015 284 11.92560 11.92560 +2015 285 11.78220 11.78220 +2015 286 12.03550 12.03550 +2015 287 11.75130 11.75130 +2015 288 10.77430 10.77430 +2015 289 11.53090 11.53090 +2015 290 12.16990 12.16990 +2015 291 10.34580 10.34580 +2015 292 9.92130 9.92130 +2015 293 10.60180 10.60180 +2015 294 12.81130 12.81130 +2015 295 14.09570 14.09570 +2015 296 12.75770 12.75770 +2015 297 13.59700 13.59700 +2015 298 12.04120 12.04120 +2015 299 12.70030 12.70030 +2015 300 12.18480 12.18480 +2015 301 11.89090 11.89090 +2015 302 10.41010 10.41010 +2015 303 10.01170 10.01170 +2015 304 11.75820 11.75820 +2015 305 11.13630 11.13630 +2015 306 11.44570 11.44570 +2015 307 9.95386 9.95386 +2015 308 9.15477 9.15477 +2015 309 11.55370 11.55370 +2015 310 14.02380 14.02380 +2015 311 14.25970 14.25970 +2015 312 15.36170 15.36170 +2015 313 15.43810 15.43810 +2015 314 14.47680 14.47680 +2015 315 10.36830 10.36830 +2015 316 9.40967 9.40967 +2015 317 10.17650 10.17650 +2015 318 12.23550 12.23550 +2015 319 12.53250 12.53250 +2015 320 12.33060 12.33060 +2015 321 12.97690 12.97690 +2015 322 11.07520 11.07520 +2015 323 11.99550 11.99550 +2015 324 12.94880 12.94880 +2015 325 13.83010 13.83010 +2015 326 12.97130 12.97130 +2015 327 12.99670 12.99670 +2015 328 14.63510 14.63510 +2015 329 16.54030 16.54030 +2015 330 17.18510 17.18510 +2015 331 16.05990 16.05990 +2015 332 14.90830 14.90830 +2015 333 14.83320 14.83320 +2015 334 14.02470 14.02470 +2015 335 13.86280 13.86280 +2015 336 14.86580 14.86580 +2015 337 15.70770 15.70770 +2015 338 13.37670 13.37670 +2015 339 13.87410 13.87410 +2015 340 13.47230 13.47230 +2015 341 12.27590 12.27590 +2015 342 13.79150 13.79150 +2015 343 13.57900 13.57900 +2015 344 17.33980 17.33980 +2015 345 16.93750 16.93750 +2015 346 14.80880 14.80880 +2015 347 12.81930 12.81930 +2015 348 13.82890 13.82890 +2015 349 13.62630 13.62630 +2015 350 12.25160 12.25160 +2015 351 12.23250 12.23250 +2015 352 15.46430 15.46430 +2015 353 16.11330 16.11330 +2015 354 17.06090 17.06090 +2015 355 17.55530 17.55530 +2015 356 15.45400 15.45400 +2015 357 13.57660 13.57660 +2015 358 16.63710 16.63710 +2015 359 18.38420 18.38420 +2015 360 17.93260 17.93260 +2015 361 19.12660 19.12660 +2015 362 18.38990 18.38990 +2015 363 17.91260 17.91260 +2015 364 18.15270 18.15270 +2015 365 16.03200 16.03200 +2016 1 15.34860 15.34860 +2016 2 18.35220 18.35220 +2016 3 15.18090 15.18090 +2016 4 13.21730 13.21730 +2016 5 14.65220 14.65220 +2016 6 14.79480 14.79480 +2016 7 16.91340 16.91340 +2016 8 18.75530 18.75530 +2016 9 16.10900 16.10900 +2016 10 15.31010 15.31010 +2016 11 16.82570 16.82570 +2016 12 17.58870 17.58870 +2016 13 16.90440 16.90440 +2016 14 17.11810 17.11810 +2016 15 18.40650 18.40650 +2016 16 18.15180 18.15180 +2016 17 17.62020 17.62020 +2016 18 18.44540 18.44540 +2016 19 18.46090 18.46090 +2016 20 18.68940 18.68940 +2016 21 18.64170 18.64170 +2016 22 19.18730 19.18730 +2016 23 19.97910 19.97910 +2016 24 19.58150 19.58150 +2016 25 19.91480 19.91480 +2016 26 19.94640 19.94640 +2016 27 19.98750 19.98750 +2016 28 19.32020 19.32020 +2016 29 19.75760 19.75760 +2016 30 18.20060 18.20060 +2016 31 17.05420 17.05420 +2016 32 20.19850 20.19850 +2016 33 18.90090 18.90090 +2016 34 17.69290 17.69290 +2016 35 17.33030 17.33030 +2016 36 18.57500 18.57500 +2016 37 19.43340 19.43340 +2016 38 17.90280 17.90280 +2016 39 17.53050 17.53050 +2016 40 18.73480 18.73480 +2016 41 18.78400 18.78400 +2016 42 20.20730 20.20730 +2016 43 19.24000 19.24000 +2016 44 17.96100 17.96100 +2016 45 17.63770 17.63770 +2016 46 17.28390 17.28390 +2016 47 16.55620 16.55620 +2016 48 18.05340 18.05340 +2016 49 18.67830 18.67830 +2016 50 17.06510 17.06510 +2016 51 18.67600 18.67600 +2016 52 18.27660 18.27660 +2016 53 17.59720 17.59720 +2016 54 17.26470 17.26470 +2016 55 17.36680 17.36680 +2016 56 18.39900 18.39900 +2016 57 18.74720 18.74720 +2016 58 21.22850 21.22850 +2016 59 18.79170 18.79170 +2016 60 16.11170 16.11170 +2016 61 15.79990 15.79990 +2016 62 14.66900 14.66900 +2016 63 17.03740 17.03740 +2016 64 17.44500 17.44500 +2016 65 17.14830 17.14830 +2016 66 18.62260 18.62260 +2016 67 18.27680 18.27680 +2016 68 18.02780 18.02780 +2016 69 17.33490 17.33490 +2016 70 16.74720 16.74720 +2016 71 13.05470 13.05470 +2016 72 15.36410 15.36410 +2016 73 15.66480 15.66480 +2016 74 16.42340 16.42340 +2016 75 17.11700 17.11700 +2016 76 15.56730 15.56730 +2016 77 16.19530 16.19530 +2016 78 15.84680 15.84680 +2016 79 16.16220 16.16220 +2016 80 16.61470 16.61470 +2016 81 17.06320 17.06320 +2016 82 17.26850 17.26850 +2016 83 18.21720 18.21720 +2016 84 17.98930 17.98930 +2016 85 16.55280 16.55280 +2016 86 16.79510 16.79510 +2016 87 16.48390 16.48390 +2016 88 15.47640 15.47640 +2016 89 14.64070 14.64070 +2016 90 13.62510 13.62510 +2016 91 14.83370 14.83370 +2016 92 16.22540 16.22540 +2016 93 17.33980 17.33980 +2016 94 16.01090 16.01090 +2016 95 12.60480 12.60480 +2016 96 12.18520 12.18520 +2016 97 13.60640 13.60640 +2016 98 14.41090 14.41090 +2016 99 14.07030 14.07030 +2016 100 14.79670 14.79670 +2016 101 15.04390 15.04390 +2016 102 14.98580 14.98580 +2016 103 15.31420 15.31420 +2016 104 12.21350 12.21350 +2016 105 12.00930 12.00930 +2016 106 11.89630 11.89630 +2016 107 13.05370 13.05370 +2016 108 14.79120 14.79120 +2016 109 12.92410 12.92410 +2016 110 13.57740 13.57740 +2016 111 12.25500 12.25500 +2016 112 12.89100 12.89100 +2016 113 13.60190 13.60190 +2016 114 13.11050 13.11050 +2016 115 12.55520 12.55520 +2016 116 12.45080 12.45080 +2016 117 12.05190 12.05190 +2016 118 11.79010 11.79010 +2016 119 11.45750 11.45750 +2016 120 12.25350 12.25350 +2016 121 11.99710 11.99710 +2016 122 13.66910 13.66910 +2016 123 14.23450 14.23450 +2016 124 13.51790 13.51790 +2016 125 15.31600 15.31600 +2016 126 15.74350 15.74350 +2016 127 13.74590 13.74590 +2016 128 12.94830 12.94830 +2016 129 13.23030 13.23030 +2016 130 13.09470 13.09470 +2016 131 15.27980 15.27980 +2016 132 15.14700 15.14700 +2016 133 14.56050 14.56050 +2016 134 14.06080 14.06080 +2016 135 13.06300 13.06300 +2016 136 13.28740 13.28740 +2016 137 11.05060 11.05060 +2016 138 10.27750 10.27750 +2016 139 11.92360 11.92360 +2016 140 12.28170 12.28170 +2016 141 10.78920 10.78920 +2016 142 9.53187 9.53187 +2016 143 7.85906 7.85906 +2016 144 10.84830 10.84830 +2016 145 10.89480 10.89480 +2016 146 10.27780 10.27780 +2016 147 11.02270 11.02270 +2016 148 13.18000 13.18000 +2016 149 12.01860 12.01860 +2016 150 9.39575 9.39575 +2016 151 7.95641 7.95641 +2016 152 6.84365 6.84365 +2016 153 6.96416 6.96416 +2016 154 6.63171 6.63171 +2016 155 6.01054 6.01054 +2016 156 5.60689 5.60689 +2016 157 5.91158 5.91158 +2016 158 7.46436 7.46436 +2016 159 10.30240 10.30240 +2016 160 13.22140 13.22140 +2016 161 14.32790 14.32790 +2016 162 12.00290 12.00290 +2016 163 10.20490 10.20490 +2016 164 7.21020 7.21020 +2016 165 7.92846 7.92846 +2016 166 9.96781 9.96781 +2016 167 9.93781 9.93781 +2016 168 7.59853 7.59853 +2016 169 7.94987 7.94987 +2016 170 9.44403 9.44403 +2016 171 9.83388 9.83388 +2016 172 11.19970 11.19970 +2016 173 13.29100 13.29100 +2016 174 12.56290 12.56290 +2016 175 10.20970 10.20970 +2016 176 9.36642 9.36642 +2016 177 10.57270 10.57270 +2016 178 9.38548 9.38548 +2016 179 10.02400 10.02400 +2016 180 8.42111 8.42111 +2016 181 8.78892 8.78892 +2016 182 6.32625 6.32625 +2016 183 3.76843 3.76843 +2016 184 4.61095 4.61095 +2016 185 5.22231 5.22231 +2016 186 7.62450 7.62450 +2016 187 7.31903 7.31903 +2016 188 8.01637 8.01637 +2016 189 10.00220 10.00220 +2016 190 8.06876 8.06876 +2016 191 7.78428 7.78428 +2016 192 7.17389 7.17389 +2016 193 7.13987 7.13987 +2016 194 6.68346 6.68346 +2016 195 8.90559 8.90559 +2016 196 8.70237 8.70237 +2016 197 7.40014 7.40014 +2016 198 8.43076 8.43076 +2016 199 6.44467 6.44467 +2016 200 7.40070 7.40070 +2016 201 8.60559 8.60559 +2016 202 8.71461 8.71461 +2016 203 8.04905 8.04905 +2016 204 11.52300 11.52300 +2016 205 10.85190 10.85190 +2016 206 8.18682 8.18682 +2016 207 6.72988 6.72988 +2016 208 7.52785 7.52785 +2016 209 8.90358 8.90358 +2016 210 7.41831 7.41831 +2016 211 7.83818 7.83818 +2016 212 5.85325 5.85325 +2016 213 7.37028 7.37028 +2016 214 8.01364 8.01364 +2016 215 8.88116 8.88116 +2016 216 8.62096 8.62096 +2016 217 6.77977 6.77977 +2016 218 4.90662 4.90662 +2016 219 4.90388 4.90388 +2016 220 3.46148 3.46148 +2016 221 4.64722 4.64722 +2016 222 6.36244 6.36244 +2016 223 7.44342 7.44342 +2016 224 7.67426 7.67426 +2016 225 9.13145 9.13145 +2016 226 8.03269 8.03269 +2016 227 7.19214 7.19214 +2016 228 7.39822 7.39822 +2016 229 7.18604 7.18604 +2016 230 6.75467 6.75467 +2016 231 7.28417 7.28417 +2016 232 7.71388 7.71388 +2016 233 6.94579 6.94579 +2016 234 8.19711 8.19711 +2016 235 9.29338 9.29338 +2016 236 7.81112 7.81112 +2016 237 9.65147 9.65147 +2016 238 12.88410 12.88410 +2016 239 8.96652 8.96652 +2016 240 8.56872 8.56872 +2016 241 6.34952 6.34952 +2016 242 9.74129 9.74129 +2016 243 9.19208 9.19208 +2016 244 8.08063 8.08063 +2016 245 9.94581 9.94581 +2016 246 11.35600 11.35600 +2016 247 11.48200 11.48200 +2016 248 10.93680 10.93680 +2016 249 10.29770 10.29770 +2016 250 7.91615 7.91615 +2016 251 5.93495 5.93495 +2016 252 6.22701 6.22701 +2016 253 7.69647 7.69647 +2016 254 8.47959 8.47959 +2016 255 7.82275 7.82275 +2016 256 9.71357 9.71357 +2016 257 10.74480 10.74480 +2016 258 10.84290 10.84290 +2016 259 11.91530 11.91530 +2016 260 12.07340 12.07340 +2016 261 11.79910 11.79910 +2016 262 11.26460 11.26460 +2016 263 9.51314 9.51314 +2016 264 7.77932 7.77932 +2016 265 9.44307 9.44307 +2016 266 11.21520 11.21520 +2016 267 11.67400 11.67400 +2016 268 10.09550 10.09550 +2016 269 10.12120 10.12120 +2016 270 11.30530 11.30530 +2016 271 11.21140 11.21140 +2016 272 10.34220 10.34220 +2016 273 10.99790 10.99790 +2016 274 11.61660 11.61660 +2016 275 11.92090 11.92090 +2016 276 11.18340 11.18340 +2016 277 11.49560 11.49560 +2016 278 11.81600 11.81600 +2016 279 10.53110 10.53110 +2016 280 9.16390 9.16390 +2016 281 10.54360 10.54360 +2016 282 12.21380 12.21380 +2016 283 10.44230 10.44230 +2016 284 12.85850 12.85850 +2016 285 13.37210 13.37210 +2016 286 10.51940 10.51940 +2016 287 9.65571 9.65571 +2016 288 9.20829 9.20829 +2016 289 10.35870 10.35870 +2016 290 12.86800 12.86800 +2016 291 12.25950 12.25950 +2016 292 13.06460 13.06460 +2016 293 14.18710 14.18710 +2016 294 11.67110 11.67110 +2016 295 10.78480 10.78480 +2016 296 11.91800 11.91800 +2016 297 12.58700 12.58700 +2016 298 13.42050 13.42050 +2016 299 12.50710 12.50710 +2016 300 12.48500 12.48500 +2016 301 12.19760 12.19760 +2016 302 11.82300 11.82300 +2016 303 9.14995 9.14995 +2016 304 8.90930 8.90930 +2016 305 10.23400 10.23400 +2016 306 11.31500 11.31500 +2016 307 11.49780 11.49780 +2016 308 10.51680 10.51680 +2016 309 11.29060 11.29060 +2016 310 13.24150 13.24150 +2016 311 12.19140 12.19140 +2016 312 12.69930 12.69930 +2016 313 14.81940 14.81940 +2016 314 15.04800 15.04800 +2016 315 14.70070 14.70070 +2016 316 13.05440 13.05440 +2016 317 12.04830 12.04830 +2016 318 12.78810 12.78810 +2016 319 14.32420 14.32420 +2016 320 13.55900 13.55900 +2016 321 10.79260 10.79260 +2016 322 11.08190 11.08190 +2016 323 13.61550 13.61550 +2016 324 13.14980 13.14980 +2016 325 13.37410 13.37410 +2016 326 15.60070 15.60070 +2016 327 15.64430 15.64430 +2016 328 15.86000 15.86000 +2016 329 14.83550 14.83550 +2016 330 13.94830 13.94830 +2016 331 12.18180 12.18180 +2016 332 11.05990 11.05990 +2016 333 12.80300 12.80300 +2016 334 14.01170 14.01170 +2016 335 14.38870 14.38870 +2016 336 15.06220 15.06220 +2016 337 14.31610 14.31610 +2016 338 15.17220 15.17220 +2016 339 14.87160 14.87160 +2016 340 15.65620 15.65620 +2016 341 15.77050 15.77050 +2016 342 14.71990 14.71990 +2016 343 16.60300 16.60300 +2016 344 16.34310 16.34310 +2016 345 12.85640 12.85640 +2016 346 12.57510 12.57510 +2016 347 12.26180 12.26180 +2016 348 13.32100 13.32100 +2016 349 15.44670 15.44670 +2016 350 13.94330 13.94330 +2016 351 15.15900 15.15900 +2016 352 15.95470 15.95470 +2016 353 14.92990 14.92990 +2016 354 14.66060 14.66060 +2016 355 15.65380 15.65380 +2016 356 16.08590 16.08590 +2016 357 14.09700 14.09700 +2016 358 13.51230 13.51230 +2016 359 14.98040 14.98040 +2016 360 15.42470 15.42470 +2016 361 16.00640 16.00640 +2016 362 17.05990 17.05990 +2016 363 12.92300 12.92300 +2016 364 14.54190 14.54190 +2016 365 15.95430 15.95430 +2016 366 16.07860 16.07860 +2017 1 17.06230 17.06230 +2017 2 17.51520 17.51520 +2017 3 15.35370 15.35370 +2017 4 13.88970 13.88970 +2017 5 13.24860 13.24860 +2017 6 14.72890 14.72890 +2017 7 14.13520 14.13520 +2017 8 15.65390 15.65390 +2017 9 17.55690 17.55690 +2017 10 18.33720 18.33720 +2017 11 17.97530 17.97530 +2017 12 17.96950 17.96950 +2017 13 16.82960 16.82960 +2017 14 18.07020 18.07020 +2017 15 16.62660 16.62660 +2017 16 17.35490 17.35490 +2017 17 17.53370 17.53370 +2017 18 15.35070 15.35070 +2017 19 13.56950 13.56950 +2017 20 14.04210 14.04210 +2017 21 15.26970 15.26970 +2017 22 13.94490 13.94490 +2017 23 15.45560 15.45560 +2017 24 14.58970 14.58970 +2017 25 14.58140 14.58140 +2017 26 15.51670 15.51670 +2017 27 17.14870 17.14870 +2017 28 17.34040 17.34040 +2017 29 17.04110 17.04110 +2017 30 19.10070 19.10070 +2017 31 17.45680 17.45680 +2017 32 18.85590 18.85590 +2017 33 19.13350 19.13350 +2017 34 17.26170 17.26170 +2017 35 18.23050 18.23050 +2017 36 19.52340 19.52340 +2017 37 21.02380 21.02380 +2017 38 17.56900 17.56900 +2017 39 14.67360 14.67360 +2017 40 15.06880 15.06880 +2017 41 16.52480 16.52480 +2017 42 16.86070 16.86070 +2017 43 19.67640 19.67640 +2017 44 18.06250 18.06250 +2017 45 18.64800 18.64800 +2017 46 16.48800 16.48800 +2017 47 17.36980 17.36980 +2017 48 17.95270 17.95270 +2017 49 18.79510 18.79510 +2017 50 17.91050 17.91050 +2017 51 17.16370 17.16370 +2017 52 17.48780 17.48780 +2017 53 18.69350 18.69350 +2017 54 17.61230 17.61230 +2017 55 17.61510 17.61510 +2017 56 17.69520 17.69520 +2017 57 17.94060 17.94060 +2017 58 17.78020 17.78020 +2017 59 17.37640 17.37640 +2017 60 18.05840 18.05840 +2017 61 16.41620 16.41620 +2017 62 17.04680 17.04680 +2017 63 15.79560 15.79560 +2017 64 15.67540 15.67540 +2017 65 15.87550 15.87550 +2017 66 12.19640 12.19640 +2017 67 14.50610 14.50610 +2017 68 17.55090 17.55090 +2017 69 18.07690 18.07690 +2017 70 17.60650 17.60650 +2017 71 17.18090 17.18090 +2017 72 15.04010 15.04010 +2017 73 13.65820 13.65820 +2017 74 14.88930 14.88930 +2017 75 14.98410 14.98410 +2017 76 16.25690 16.25690 +2017 77 15.10630 15.10630 +2017 78 14.46310 14.46310 +2017 79 16.25030 16.25030 +2017 80 16.62930 16.62930 +2017 81 18.04080 18.04080 +2017 82 16.88890 16.88890 +2017 83 16.56690 16.56690 +2017 84 16.31070 16.31070 +2017 85 17.03280 17.03280 +2017 86 17.87600 17.87600 +2017 87 16.07510 16.07510 +2017 88 16.97320 16.97320 +2017 89 15.97860 15.97860 +2017 90 15.76420 15.76420 +2017 91 17.31950 17.31950 +2017 92 18.66470 18.66470 +2017 93 15.25820 15.25820 +2017 94 16.52520 16.52520 +2017 95 14.40170 14.40170 +2017 96 13.64910 13.64910 +2017 97 12.79010 12.79010 +2017 98 12.86990 12.86990 +2017 99 14.27600 14.27600 +2017 100 15.78730 15.78730 +2017 101 16.53700 16.53700 +2017 102 15.46840 15.46840 +2017 103 15.19980 15.19980 +2017 104 13.96570 13.96570 +2017 105 13.05840 13.05840 +2017 106 12.69570 12.69570 +2017 107 12.65690 12.65690 +2017 108 12.10340 12.10340 +2017 109 12.03730 12.03730 +2017 110 11.26900 11.26900 +2017 111 12.15050 12.15050 +2017 112 12.03550 12.03550 +2017 113 13.55200 13.55200 +2017 114 12.92730 12.92730 +2017 115 12.23110 12.23110 +2017 116 12.35390 12.35390 +2017 117 13.62740 13.62740 +2017 118 14.07820 14.07820 +2017 119 14.13930 14.13930 +2017 120 9.35549 9.35549 +2017 121 8.73281 8.73281 +2017 122 10.16690 10.16690 +2017 123 10.74640 10.74640 +2017 124 10.38530 10.38530 +2017 125 9.80448 9.80448 +2017 126 9.64814 9.64814 +2017 127 9.36390 9.36390 +2017 128 11.60580 11.60580 +2017 129 11.95700 11.95700 +2017 130 13.77620 13.77620 +2017 131 12.99300 12.99300 +2017 132 9.54538 9.54538 +2017 133 8.46151 8.46151 +2017 134 8.58461 8.58461 +2017 135 9.42013 9.42013 +2017 136 12.45470 12.45470 +2017 137 12.65200 12.65200 +2017 138 10.28300 10.28300 +2017 139 7.91970 7.91970 +2017 140 5.50643 5.50643 +2017 141 5.76751 5.76751 +2017 142 7.36712 7.36712 +2017 143 10.11880 10.11880 +2017 144 9.08774 9.08774 +2017 145 9.37158 9.37158 +2017 146 12.65760 12.65760 +2017 147 11.52940 11.52940 +2017 148 10.68180 10.68180 +2017 149 9.53661 9.53661 +2017 150 9.71211 9.71211 +2017 151 8.51556 8.51556 +2017 152 8.99405 8.99405 +2017 153 9.84712 9.84712 +2017 154 7.81532 7.81532 +2017 155 7.58079 7.58079 +2017 156 8.03312 8.03312 +2017 157 6.67709 6.67709 +2017 158 6.86131 6.86131 +2017 159 6.99296 6.99296 +2017 160 9.20240 9.20240 +2017 161 7.81613 7.81613 +2017 162 8.28507 8.28507 +2017 163 10.19160 10.19160 +2017 164 8.44704 8.44704 +2017 165 6.59973 6.59973 +2017 166 9.79721 9.79721 +2017 167 8.59922 8.59922 +2017 168 9.40677 9.40677 +2017 169 9.21036 9.21036 +2017 170 7.68110 7.68110 +2017 171 9.01337 9.01337 +2017 172 10.92180 10.92180 +2017 173 12.28380 12.28380 +2017 174 11.00960 11.00960 +2017 175 8.93356 8.93356 +2017 176 6.91665 6.91665 +2017 177 6.48519 6.48519 +2017 178 6.78601 6.78601 +2017 179 5.76406 5.76406 +2017 180 5.86746 5.86746 +2017 181 9.79430 9.79430 +2017 182 10.27630 10.27630 +2017 183 8.03011 8.03011 +2017 184 7.24002 7.24002 +2017 185 7.54693 7.54693 +2017 186 6.44956 6.44956 +2017 187 7.45945 7.45945 +2017 188 6.91538 6.91538 +2017 189 7.89710 7.89710 +2017 190 7.98520 7.98520 +2017 191 6.90440 6.90440 +2017 192 5.05412 5.05412 +2017 193 2.98891 2.98891 +2017 194 4.58185 4.58185 +2017 195 5.93296 5.93296 +2017 196 5.86680 5.86680 +2017 197 8.08758 8.08758 +2017 198 9.40928 9.40928 +2017 199 8.68273 8.68273 +2017 200 11.15580 11.15580 +2017 201 9.04909 9.04909 +2017 202 8.89957 8.89957 +2017 203 7.23681 7.23681 +2017 204 7.90935 7.90935 +2017 205 8.03218 8.03218 +2017 206 7.52127 7.52127 +2017 207 7.77290 7.77290 +2017 208 6.93989 6.93989 +2017 209 4.02353 4.02353 +2017 210 3.63594 3.63594 +2017 211 3.64982 3.64982 +2017 212 7.50456 7.50456 +2017 213 8.65136 8.65136 +2017 214 7.03330 7.03330 +2017 215 5.69763 5.69763 +2017 216 6.38367 6.38367 +2017 217 7.47464 7.47464 +2017 218 10.73290 10.73290 +2017 219 10.31560 10.31560 +2017 220 11.28490 11.28490 +2017 221 9.47802 9.47802 +2017 222 8.84447 8.84447 +2017 223 10.60150 10.60150 +2017 224 10.50720 10.50720 +2017 225 9.44501 9.44501 +2017 226 7.63313 7.63313 +2017 227 8.51943 8.51943 +2017 228 9.59218 9.59218 +2017 229 9.94023 9.94023 +2017 230 9.26084 9.26084 +2017 231 8.67853 8.67853 +2017 232 8.40222 8.40222 +2017 233 7.11686 7.11686 +2017 234 6.45469 6.45469 +2017 235 7.24665 7.24665 +2017 236 8.00742 8.00742 +2017 237 8.71083 8.71083 +2017 238 9.96022 9.96022 +2017 239 10.92150 10.92150 +2017 240 11.70750 11.70750 +2017 241 9.14761 9.14761 +2017 242 9.32139 9.32139 +2017 243 8.60469 8.60469 +2017 244 8.38473 8.38473 +2017 245 8.40498 8.40498 +2017 246 8.88370 8.88370 +2017 247 8.69620 8.69620 +2017 248 11.09710 11.09710 +2017 249 9.81878 9.81878 +2017 250 8.65695 8.65695 +2017 251 7.77688 7.77688 +2017 252 5.25134 5.25134 +2017 253 6.30573 6.30573 +2017 254 7.24123 7.24123 +2017 255 9.60787 9.60787 +2017 256 12.80350 12.80350 +2017 257 13.15160 13.15160 +2017 258 10.49700 10.49700 +2017 259 9.61586 9.61586 +2017 260 7.38134 7.38134 +2017 261 7.98982 7.98982 +2017 262 8.86374 8.86374 +2017 263 8.88923 8.88923 +2017 264 8.47569 8.47569 +2017 265 10.14070 10.14070 +2017 266 10.94760 10.94760 +2017 267 12.52070 12.52070 +2017 268 12.51040 12.51040 +2017 269 11.92670 11.92670 +2017 270 9.88023 9.88023 +2017 271 9.49965 9.49965 +2017 272 9.94292 9.94292 +2017 273 8.43684 8.43684 +2017 274 10.32140 10.32140 +2017 275 11.44860 11.44860 +2017 276 10.97610 10.97610 +2017 277 12.33500 12.33500 +2017 278 10.71450 10.71450 +2017 279 11.19390 11.19390 +2017 280 10.75110 10.75110 +2017 281 12.21550 12.21550 +2017 282 12.11190 12.11190 +2017 283 11.11210 11.11210 +2017 284 10.88210 10.88210 +2017 285 10.61450 10.61450 +2017 286 12.58260 12.58260 +2017 287 10.32960 10.32960 +2017 288 11.48300 11.48300 +2017 289 11.04820 11.04820 +2017 290 10.64750 10.64750 +2017 291 10.26200 10.26200 +2017 292 11.81490 11.81490 +2017 293 12.24190 12.24190 +2017 294 11.89430 11.89430 +2017 295 9.98372 9.98372 +2017 296 11.76200 11.76200 +2017 297 11.47860 11.47860 +2017 298 13.02220 13.02220 +2017 299 10.98060 10.98060 +2017 300 11.22450 11.22450 +2017 301 12.47400 12.47400 +2017 302 12.46180 12.46180 +2017 303 12.21900 12.21900 +2017 304 12.25870 12.25870 +2017 305 12.50190 12.50190 +2017 306 13.35220 13.35220 +2017 307 15.16090 15.16090 +2017 308 13.83280 13.83280 +2017 309 11.41350 11.41350 +2017 310 11.01370 11.01370 +2017 311 12.71140 12.71140 +2017 312 11.80920 11.80920 +2017 313 12.43670 12.43670 +2017 314 10.80920 10.80920 +2017 315 11.12700 11.12700 +2017 316 11.33470 11.33470 +2017 317 10.45770 10.45770 +2017 318 11.51630 11.51630 +2017 319 12.27160 12.27160 +2017 320 13.55750 13.55750 +2017 321 12.97340 12.97340 +2017 322 12.12720 12.12720 +2017 323 14.56270 14.56270 +2017 324 14.05420 14.05420 +2017 325 14.46110 14.46110 +2017 326 16.39810 16.39810 +2017 327 16.98980 16.98980 +2017 328 15.92220 15.92220 +2017 329 15.94130 15.94130 +2017 330 15.50960 15.50960 +2017 331 15.70370 15.70370 +2017 332 15.49410 15.49410 +2017 333 15.32190 15.32190 +2017 334 15.36100 15.36100 +2017 335 15.29570 15.29570 +2017 336 16.80900 16.80900 +2017 337 17.67680 17.67680 +2017 338 17.44990 17.44990 +2017 339 18.65510 18.65510 +2017 340 18.22470 18.22470 +2017 341 17.09090 17.09090 +2017 342 17.01000 17.01000 +2017 343 17.43990 17.43990 +2017 344 17.98220 17.98220 +2017 345 17.83480 17.83480 +2017 346 17.07130 17.07130 +2017 347 15.76150 15.76150 +2017 348 15.99270 15.99270 +2017 349 17.96740 17.96740 +2017 350 17.68510 17.68510 +2017 351 17.39080 17.39080 +2017 352 16.56240 16.56240 +2017 353 16.96800 16.96800 +2017 354 16.95280 16.95280 +2017 355 18.07140 18.07140 +2017 356 15.61000 15.61000 +2017 357 16.68100 16.68100 +2017 358 16.64910 16.64910 +2017 359 15.79820 15.79820 +2017 360 13.95930 13.95930 +2017 361 12.80430 12.80430 +2017 362 16.07000 16.07000 +2017 363 16.79390 16.79390 +2017 364 17.10260 17.10260 +2017 365 16.68990 16.68990 +2018 1 17.39970 17.39970 +2018 2 17.54150 17.54150 +2018 3 17.01140 17.01140 +2018 4 17.32130 17.32130 +2018 5 18.31950 18.31950 +2018 6 14.71240 14.71240 +2018 7 17.61910 17.61910 +2018 8 18.77230 18.77230 +2018 9 19.26220 19.26220 +2018 10 19.91450 19.91450 +2018 11 19.21020 19.21020 +2018 12 18.30190 18.30190 +2018 13 18.58340 18.58340 +2018 14 18.33550 18.33550 +2018 15 16.96730 16.96730 +2018 16 17.27680 17.27680 +2018 17 17.08560 17.08560 +2018 18 18.05480 18.05480 +2018 19 19.63630 19.63630 +2018 20 19.84240 19.84240 +2018 21 18.50100 18.50100 +2018 22 20.20910 20.20910 +2018 23 20.59780 20.59780 +2018 24 20.62900 20.62900 +2018 25 20.71670 20.71670 +2018 26 20.17700 20.17700 +2018 27 20.48490 20.48490 +2018 28 20.24620 20.24620 +2018 29 19.42150 19.42150 +2018 30 18.47050 18.47050 +2018 31 18.31290 18.31290 +2018 32 18.14210 18.14210 +2018 33 15.63450 15.63450 +2018 34 15.20720 15.20720 +2018 35 16.28710 16.28710 +2018 36 16.58530 16.58530 +2018 37 16.61470 16.61470 +2018 38 15.38750 15.38750 +2018 39 15.18560 15.18560 +2018 40 18.75130 18.75130 +2018 41 19.97460 19.97460 +2018 42 20.42260 20.42260 +2018 43 19.78410 19.78410 +2018 44 19.44650 19.44650 +2018 45 19.66230 19.66230 +2018 46 19.61760 19.61760 +2018 47 19.64530 19.64530 +2018 48 20.25090 20.25090 +2018 49 20.02340 20.02340 +2018 50 19.90370 19.90370 +2018 51 17.61420 17.61420 +2018 52 15.87570 15.87570 +2018 53 15.97820 15.97820 +2018 54 16.73150 16.73150 +2018 55 16.75510 16.75510 +2018 56 16.22530 16.22530 +2018 57 14.99160 14.99160 +2018 58 16.97520 16.97520 +2018 59 17.18020 17.18020 +2018 60 17.02640 17.02640 +2018 61 17.15260 17.15260 +2018 62 17.75650 17.75650 +2018 63 19.38970 19.38970 +2018 64 19.45800 19.45800 +2018 65 18.35000 18.35000 +2018 66 17.58890 17.58890 +2018 67 15.88760 15.88760 +2018 68 14.96460 14.96460 +2018 69 14.37970 14.37970 +2018 70 14.53090 14.53090 +2018 71 15.54690 15.54690 +2018 72 15.36830 15.36830 +2018 73 14.73460 14.73460 +2018 74 15.83700 15.83700 +2018 75 15.75870 15.75870 +2018 76 14.47530 14.47530 +2018 77 15.55440 15.55440 +2018 78 16.12010 16.12010 +2018 79 15.36500 15.36500 +2018 80 15.60740 15.60740 +2018 81 15.13640 15.13640 +2018 82 15.33400 15.33400 +2018 83 15.62060 15.62060 +2018 84 16.01160 16.01160 +2018 85 17.18800 17.18800 +2018 86 16.67800 16.67800 +2018 87 16.59150 16.59150 +2018 88 16.73670 16.73670 +2018 89 15.05330 15.05330 +2018 90 15.75760 15.75760 +2018 91 14.63490 14.63490 +2018 92 14.88800 14.88800 +2018 93 16.56500 16.56500 +2018 94 15.70450 15.70450 +2018 95 15.68930 15.68930 +2018 96 15.00010 15.00010 +2018 97 13.19960 13.19960 +2018 98 13.85030 13.85030 +2018 99 13.91640 13.91640 +2018 100 7.18791 7.18791 +2018 101 9.08102 9.08102 +2018 102 11.52640 11.52640 +2018 103 11.65310 11.65310 +2018 104 13.08520 13.08520 +2018 105 14.80640 14.80640 +2018 106 15.45660 15.45660 +2018 107 12.06390 12.06390 +2018 108 11.08080 11.08080 +2018 109 12.69580 12.69580 +2018 110 13.49200 13.49200 +2018 111 12.50020 12.50020 +2018 112 10.84170 10.84170 +2018 113 10.89460 10.89460 +2018 114 11.48890 11.48890 +2018 115 11.46220 11.46220 +2018 116 12.48050 12.48050 +2018 117 13.69330 13.69330 +2018 118 14.61920 14.61920 +2018 119 14.65670 14.65670 +2018 120 14.49990 14.49990 +2018 121 11.80010 11.80010 +2018 122 10.33070 10.33070 +2018 123 10.56530 10.56530 +2018 124 11.31020 11.31020 +2018 125 12.81070 12.81070 +2018 126 11.89560 11.89560 +2018 127 11.97870 11.97870 +2018 128 13.25140 13.25140 +2018 129 12.15300 12.15300 +2018 130 13.59380 13.59380 +2018 131 14.62470 14.62470 +2018 132 13.97110 13.97110 +2018 133 13.72740 13.72740 +2018 134 13.11490 13.11490 +2018 135 13.66700 13.66700 +2018 136 10.84760 10.84760 +2018 137 10.38030 10.38030 +2018 138 10.91340 10.91340 +2018 139 11.25490 11.25490 +2018 140 11.56280 11.56280 +2018 141 11.02590 11.02590 +2018 142 9.03680 9.03680 +2018 143 8.49149 8.49149 +2018 144 8.72366 8.72366 +2018 145 7.16317 7.16317 +2018 146 9.05016 9.05016 +2018 147 6.26789 6.26789 +2018 148 6.55219 6.55219 +2018 149 6.66803 6.66803 +2018 150 6.12557 6.12557 +2018 151 6.88773 6.88773 +2018 152 9.27094 9.27094 +2018 153 9.36667 9.36667 +2018 154 11.58860 11.58860 +2018 155 11.01960 11.01960 +2018 156 7.34218 7.34218 +2018 157 5.52517 5.52517 +2018 158 8.08805 8.08805 +2018 159 6.65860 6.65860 +2018 160 7.29671 7.29671 +2018 161 8.04552 8.04552 +2018 162 11.64980 11.64980 +2018 163 10.75600 10.75600 +2018 164 10.19960 10.19960 +2018 165 9.69013 9.69013 +2018 166 10.80750 10.80750 +2018 167 10.32490 10.32490 +2018 168 9.64118 9.64118 +2018 169 9.76302 9.76302 +2018 170 8.51388 8.51388 +2018 171 7.86322 7.86322 +2018 172 5.81236 5.81236 +2018 173 5.33083 5.33083 +2018 174 8.21375 8.21375 +2018 175 7.81562 7.81562 +2018 176 5.41212 5.41212 +2018 177 4.84428 4.84428 +2018 178 5.36060 5.36060 +2018 179 5.87431 5.87431 +2018 180 4.59944 4.59944 +2018 181 7.16329 7.16329 +2018 182 8.96784 8.96784 +2018 183 6.57035 6.57035 +2018 184 5.43734 5.43734 +2018 185 5.38193 5.38193 +2018 186 5.73767 5.73767 +2018 187 7.66100 7.66100 +2018 188 10.41540 10.41540 +2018 189 9.22940 9.22940 +2018 190 6.49435 6.49435 +2018 191 6.39211 6.39211 +2018 192 7.69328 7.69328 +2018 193 6.91812 6.91812 +2018 194 9.12475 9.12475 +2018 195 10.01820 10.01820 +2018 196 9.30764 9.30764 +2018 197 8.89895 8.89895 +2018 198 8.04869 8.04869 +2018 199 7.62847 7.62847 +2018 200 8.05391 8.05391 +2018 201 7.77306 7.77306 +2018 202 9.42408 9.42408 +2018 203 7.18107 7.18107 +2018 204 5.44044 5.44044 +2018 205 5.35704 5.35704 +2018 206 8.40871 8.40871 +2018 207 7.68268 7.68268 +2018 208 8.60285 8.60285 +2018 209 8.58708 8.58708 +2018 210 7.31940 7.31940 +2018 211 7.20027 7.20027 +2018 212 8.82933 8.82933 +2018 213 8.21644 8.21644 +2018 214 7.66196 7.66196 +2018 215 7.03188 7.03188 +2018 216 9.02336 9.02336 +2018 217 9.50898 9.50898 +2018 218 8.92267 8.92267 +2018 219 10.71810 10.71810 +2018 220 9.64771 9.64771 +2018 221 9.36096 9.36096 +2018 222 8.48873 8.48873 +2018 223 6.57719 6.57719 +2018 224 7.73364 7.73364 +2018 225 8.68298 8.68298 +2018 226 8.96899 8.96899 +2018 227 9.10890 9.10890 +2018 228 9.50034 9.50034 +2018 229 7.66925 7.66925 +2018 230 6.37081 6.37081 +2018 231 8.69315 8.69315 +2018 232 8.35232 8.35232 +2018 233 7.81850 7.81850 +2018 234 8.28760 8.28760 +2018 235 6.75710 6.75710 +2018 236 7.93091 7.93091 +2018 237 7.96304 7.96304 +2018 238 7.58154 7.58154 +2018 239 8.48693 8.48693 +2018 240 10.13890 10.13890 +2018 241 9.87031 9.87031 +2018 242 9.55038 9.55038 +2018 243 8.54037 8.54037 +2018 244 10.23670 10.23670 +2018 245 8.19167 8.19167 +2018 246 7.20139 7.20139 +2018 247 8.27623 8.27623 +2018 248 7.80184 7.80184 +2018 249 9.42464 9.42464 +2018 250 9.29416 9.29416 +2018 251 6.90640 6.90640 +2018 252 7.93651 7.93651 +2018 253 8.99604 8.99604 +2018 254 9.32273 9.32273 +2018 255 9.44754 9.44754 +2018 256 10.75150 10.75150 +2018 257 11.05800 11.05800 +2018 258 10.48360 10.48360 +2018 259 11.49620 11.49620 +2018 260 12.63360 12.63360 +2018 261 12.29440 12.29440 +2018 262 13.78100 13.78100 +2018 263 11.92830 11.92830 +2018 264 10.79860 10.79860 +2018 265 10.79660 10.79660 +2018 266 9.86725 9.86725 +2018 267 7.27440 7.27440 +2018 268 8.90320 8.90320 +2018 269 8.72815 8.72815 +2018 270 8.42900 8.42900 +2018 271 8.59300 8.59300 +2018 272 9.36776 9.36776 +2018 273 11.11090 11.11090 +2018 274 11.02330 11.02330 +2018 275 10.89340 10.89340 +2018 276 10.56440 10.56440 +2018 277 10.94520 10.94520 +2018 278 12.06680 12.06680 +2018 279 11.67090 11.67090 +2018 280 11.41300 11.41300 +2018 281 11.06770 11.06770 +2018 282 9.59802 9.59802 +2018 283 11.45760 11.45760 +2018 284 10.75610 10.75610 +2018 285 7.44854 7.44854 +2018 286 8.90372 8.90372 +2018 287 10.06310 10.06310 +2018 288 10.11890 10.11890 +2018 289 10.38210 10.38210 +2018 290 12.83400 12.83400 +2018 291 12.06040 12.06040 +2018 292 13.74080 13.74080 +2018 293 13.64060 13.64060 +2018 294 14.05510 14.05510 +2018 295 14.48700 14.48700 +2018 296 14.14360 14.14360 +2018 297 12.37220 12.37220 +2018 298 13.73750 13.73750 +2018 299 11.96860 11.96860 +2018 300 13.93940 13.93940 +2018 301 11.59420 11.59420 +2018 302 11.17010 11.17010 +2018 303 11.38100 11.38100 +2018 304 9.91603 9.91603 +2018 305 11.19960 11.19960 +2018 306 11.67310 11.67310 +2018 307 12.92590 12.92590 +2018 308 12.39140 12.39140 +2018 309 13.51490 13.51490 +2018 310 14.33880 14.33880 +2018 311 15.62720 15.62720 +2018 312 15.89130 15.89130 +2018 313 14.74030 14.74030 +2018 314 13.58220 13.58220 +2018 315 12.94070 12.94070 +2018 316 14.41930 14.41930 +2018 317 14.18040 14.18040 +2018 318 14.25790 14.25790 +2018 319 14.74070 14.74070 +2018 320 14.40140 14.40140 +2018 321 13.65550 13.65550 +2018 322 12.10960 12.10960 +2018 323 9.46762 9.46762 +2018 324 9.11444 9.11444 +2018 325 11.47430 11.47430 +2018 326 13.76420 13.76420 +2018 327 13.08620 13.08620 +2018 328 14.39230 14.39230 +2018 329 14.71470 14.71470 +2018 330 14.23180 14.23180 +2018 331 15.75390 15.75390 +2018 332 15.89990 15.89990 +2018 333 14.95230 14.95230 +2018 334 13.43410 13.43410 +2018 335 15.55910 15.55910 +2018 336 15.54010 15.54010 +2018 337 15.48990 15.48990 +2018 338 13.97040 13.97040 +2018 339 12.14740 12.14740 +2018 340 13.21600 13.21600 +2018 341 15.43130 15.43130 +2018 342 17.51160 17.51160 +2018 343 17.95940 17.95940 +2018 344 15.91180 15.91180 +2018 345 15.65540 15.65540 +2018 346 16.16200 16.16200 +2018 347 15.84980 15.84980 +2018 348 16.07460 16.07460 +2018 349 17.61480 17.61480 +2018 350 18.20690 18.20690 +2018 351 18.58120 18.58120 +2018 352 17.07360 17.07360 +2018 353 16.15380 16.15380 +2018 354 15.67050 15.67050 +2018 355 15.66300 15.66300 +2018 356 16.19780 16.19780 +2018 357 15.71990 15.71990 +2018 358 16.51360 16.51360 +2018 359 18.61630 18.61630 +2018 360 16.55140 16.55140 +2018 361 15.07850 15.07850 +2018 362 16.26220 16.26220 +2018 363 16.97380 16.97380 +2018 364 17.95010 17.95010 +2018 365 19.11550 19.11550 +2019 1 19.06440 19.06440 +2019 2 18.63080 18.63080 +2019 3 19.08110 19.08110 +2019 4 18.19130 18.19130 +2019 5 18.73570 18.73570 +2019 6 19.98500 19.98500 +2019 7 19.35520 19.35520 +2019 8 18.27450 18.27450 +2019 9 19.62360 19.62360 +2019 10 19.60590 19.60590 +2019 11 18.48300 18.48300 +2019 12 17.68150 17.68150 +2019 13 14.77800 14.77800 +2019 14 15.09990 15.09990 +2019 15 17.41330 17.41330 +2019 16 19.55920 19.55920 +2019 17 19.05080 19.05080 +2019 18 20.09580 20.09580 +2019 19 18.43460 18.43460 +2019 20 17.06070 17.06070 +2019 21 17.99370 17.99370 +2019 22 18.46020 18.46020 +2019 23 18.22080 18.22080 +2019 24 17.00370 17.00370 +2019 25 16.83450 16.83450 +2019 26 18.28600 18.28600 +2019 27 20.80610 20.80610 +2019 28 22.19600 22.19600 +2019 29 21.09490 21.09490 +2019 30 19.87130 19.87130 +2019 31 19.36730 19.36730 +2019 32 18.56310 18.56310 +2019 33 18.11590 18.11590 +2019 34 18.53980 18.53980 +2019 35 19.95880 19.95880 +2019 36 18.52210 18.52210 +2019 37 15.87580 15.87580 +2019 38 15.94070 15.94070 +2019 39 17.40050 17.40050 +2019 40 18.92540 18.92540 +2019 41 20.11290 20.11290 +2019 42 19.69400 19.69400 +2019 43 20.88720 20.88720 +2019 44 20.80300 20.80300 +2019 45 21.00310 21.00310 +2019 46 19.43590 19.43590 +2019 47 17.30690 17.30690 +2019 48 18.99050 18.99050 +2019 49 18.13580 18.13580 +2019 50 19.79840 19.79840 +2019 51 19.61970 19.61970 +2019 52 18.03670 18.03670 +2019 53 18.22200 18.22200 +2019 54 14.86870 14.86870 +2019 55 13.55170 13.55170 +2019 56 14.97750 14.97750 +2019 57 16.31200 16.31200 +2019 58 15.72090 15.72090 +2019 59 15.04840 15.04840 +2019 60 15.75590 15.75590 +2019 61 17.60570 17.60570 +2019 62 18.12020 18.12020 +2019 63 17.38250 17.38250 +2019 64 17.08090 17.08090 +2019 65 17.66000 17.66000 +2019 66 16.44760 16.44760 +2019 67 13.69100 13.69100 +2019 68 16.09020 16.09020 +2019 69 17.31780 17.31780 +2019 70 17.60760 17.60760 +2019 71 18.02210 18.02210 +2019 72 19.59580 19.59580 +2019 73 18.43720 18.43720 +2019 74 18.88420 18.88420 +2019 75 19.01260 19.01260 +2019 76 17.03510 17.03510 +2019 77 16.88030 16.88030 +2019 78 17.14600 17.14600 +2019 79 17.52640 17.52640 +2019 80 16.62230 16.62230 +2019 81 16.04750 16.04750 +2019 82 16.04160 16.04160 +2019 83 16.77070 16.77070 +2019 84 16.75120 16.75120 +2019 85 17.04660 17.04660 +2019 86 16.39530 16.39530 +2019 87 16.25390 16.25390 +2019 88 16.18840 16.18840 +2019 89 16.01680 16.01680 +2019 90 17.01450 17.01450 +2019 91 15.54630 15.54630 +2019 92 13.66750 13.66750 +2019 93 13.02610 13.02610 +2019 94 13.06440 13.06440 +2019 95 12.37820 12.37820 +2019 96 11.20170 11.20170 +2019 97 12.00570 12.00570 +2019 98 13.04640 13.04640 +2019 99 13.88880 13.88880 +2019 100 13.01270 13.01270 +2019 101 13.05950 13.05950 +2019 102 10.57800 10.57800 +2019 103 11.15100 11.15100 +2019 104 11.42330 11.42330 +2019 105 11.31640 11.31640 +2019 106 11.44820 11.44820 +2019 107 11.42600 11.42600 +2019 108 11.29180 11.29180 +2019 109 12.63200 12.63200 +2019 110 12.30840 12.30840 +2019 111 13.09980 13.09980 +2019 112 12.54280 12.54280 +2019 113 13.59220 13.59220 +2019 114 14.55450 14.55450 +2019 115 14.22990 14.22990 +2019 116 14.25500 14.25500 +2019 117 13.81220 13.81220 +2019 118 11.28670 11.28670 +2019 119 10.14850 10.14850 +2019 120 9.98593 9.98593 +2019 121 10.53140 10.53140 +2019 122 11.54480 11.54480 +2019 123 11.65290 11.65290 +2019 124 12.13110 12.13110 +2019 125 11.61340 11.61340 +2019 126 11.53620 11.53620 +2019 127 11.33720 11.33720 +2019 128 12.33450 12.33450 +2019 129 13.48050 13.48050 +2019 130 12.39090 12.39090 +2019 131 13.61130 13.61130 +2019 132 12.38380 12.38380 +2019 133 9.68630 9.68630 +2019 134 11.40600 11.40600 +2019 135 12.38400 12.38400 +2019 136 10.39920 10.39920 +2019 137 9.67607 9.67607 +2019 138 11.50500 11.50500 +2019 139 10.83060 10.83060 +2019 140 9.25164 9.25164 +2019 141 9.40295 9.40295 +2019 142 10.61720 10.61720 +2019 143 9.66771 9.66771 +2019 144 10.01280 10.01280 +2019 145 9.99063 9.99063 +2019 146 10.66860 10.66860 +2019 147 13.31660 13.31660 +2019 148 11.71410 11.71410 +2019 149 11.47540 11.47540 +2019 150 11.18020 11.18020 +2019 151 7.57051 7.57051 +2019 152 6.83578 6.83578 +2019 153 6.21853 6.21853 +2019 154 8.09110 8.09110 +2019 155 10.27160 10.27160 +2019 156 8.39018 8.39018 +2019 157 8.34328 8.34328 +2019 158 10.05740 10.05740 +2019 159 7.42156 7.42156 +2019 160 10.01980 10.01980 +2019 161 9.87106 9.87106 +2019 162 9.24549 9.24549 +2019 163 10.20590 10.20590 +2019 164 9.99243 9.99243 +2019 165 10.88850 10.88850 +2019 166 9.90680 9.90680 +2019 167 8.40994 8.40994 +2019 168 6.81856 6.81856 +2019 169 5.59818 5.59818 +2019 170 6.20639 6.20639 +2019 171 10.91730 10.91730 +2019 172 7.28546 7.28546 +2019 173 7.55960 7.55960 +2019 174 7.99742 7.99742 +2019 175 7.18034 7.18034 +2019 176 5.85231 5.85231 +2019 177 5.99919 5.99919 +2019 178 6.33771 6.33771 +2019 179 7.02413 7.02413 +2019 180 5.16060 5.16060 +2019 181 7.77541 7.77541 +2019 182 10.27040 10.27040 +2019 183 12.60140 12.60140 +2019 184 12.50160 12.50160 +2019 185 6.79492 6.79492 +2019 186 6.14417 6.14417 +2019 187 6.40164 6.40164 +2019 188 8.51369 8.51369 +2019 189 6.73369 6.73369 +2019 190 8.48091 8.48091 +2019 191 9.33638 9.33638 +2019 192 9.20254 9.20254 +2019 193 9.98365 9.98365 +2019 194 10.08540 10.08540 +2019 195 8.41956 8.41956 +2019 196 9.62398 9.62398 +2019 197 8.23252 8.23252 +2019 198 8.15014 8.15014 +2019 199 8.87454 8.87454 +2019 200 8.70884 8.70884 +2019 201 8.22291 8.22291 +2019 202 6.65426 6.65426 +2019 203 7.33121 7.33121 +2019 204 7.51118 7.51118 +2019 205 7.84483 7.84483 +2019 206 9.15850 9.15850 +2019 207 8.55751 8.55751 +2019 208 7.58418 7.58418 +2019 209 9.05268 9.05268 +2019 210 8.90703 8.90703 +2019 211 6.95238 6.95238 +2019 212 4.66568 4.66568 +2019 213 6.71403 6.71403 +2019 214 7.72015 7.72015 +2019 215 7.78346 7.78346 +2019 216 5.10880 5.10880 +2019 217 7.42442 7.42442 +2019 218 7.75670 7.75670 +2019 219 9.22367 9.22367 +2019 220 9.35661 9.35661 +2019 221 9.57867 9.57867 +2019 222 10.18840 10.18840 +2019 223 8.86394 8.86394 +2019 224 8.47017 8.47017 +2019 225 8.77704 8.77704 +2019 226 7.43566 7.43566 +2019 227 7.43476 7.43476 +2019 228 8.92788 8.92788 +2019 229 6.15924 6.15924 +2019 230 5.65828 5.65828 +2019 231 7.68360 7.68360 +2019 232 8.45216 8.45216 +2019 233 8.27819 8.27819 +2019 234 8.12610 8.12610 +2019 235 7.55588 7.55588 +2019 236 9.25841 9.25841 +2019 237 9.44681 9.44681 +2019 238 8.38825 8.38825 +2019 239 8.17489 8.17489 +2019 240 7.74634 7.74634 +2019 241 9.13453 9.13453 +2019 242 9.02364 9.02364 +2019 243 8.34869 8.34869 +2019 244 8.63699 8.63699 +2019 245 8.55956 8.55956 +2019 246 12.23710 12.23710 +2019 247 12.26450 12.26450 +2019 248 8.78608 8.78608 +2019 249 8.16308 8.16308 +2019 250 8.37490 8.37490 +2019 251 6.99834 6.99834 +2019 252 5.52127 5.52127 +2019 253 8.44219 8.44219 +2019 254 8.04365 8.04365 +2019 255 9.77994 9.77994 +2019 256 10.02010 10.02010 +2019 257 9.30760 9.30760 +2019 258 9.57755 9.57755 +2019 259 11.09640 11.09640 +2019 260 9.21262 9.21262 +2019 261 9.50534 9.50534 +2019 262 9.23325 9.23325 +2019 263 9.52677 9.52677 +2019 264 9.85693 9.85693 +2019 265 9.42732 9.42732 +2019 266 9.26959 9.26959 +2019 267 7.55116 7.55116 +2019 268 7.21972 7.21972 +2019 269 9.73058 9.73058 +2019 270 10.02170 10.02170 +2019 271 11.37610 11.37610 +2019 272 10.90410 10.90410 +2019 273 8.64534 8.64534 +2019 274 6.72343 6.72343 +2019 275 7.34223 7.34223 +2019 276 8.20889 8.20889 +2019 277 10.08040 10.08040 +2019 278 9.75975 9.75975 +2019 279 9.86806 9.86806 +2019 280 11.66290 11.66290 +2019 281 12.04750 12.04750 +2019 282 12.97310 12.97310 +2019 283 12.40020 12.40020 +2019 284 12.75950 12.75950 +2019 285 11.40940 11.40940 +2019 286 10.24360 10.24360 +2019 287 10.51520 10.51520 +2019 288 12.29240 12.29240 +2019 289 12.30160 12.30160 +2019 290 12.31290 12.31290 +2019 291 12.83710 12.83710 +2019 292 12.53410 12.53410 +2019 293 10.55170 10.55170 +2019 294 10.86080 10.86080 +2019 295 9.06915 9.06915 +2019 296 9.00271 9.00271 +2019 297 9.71366 9.71366 +2019 298 11.38430 11.38430 +2019 299 14.03840 14.03840 +2019 300 13.17610 13.17610 +2019 301 11.45970 11.45970 +2019 302 10.72770 10.72770 +2019 303 12.57710 12.57710 +2019 304 11.31520 11.31520 +2019 305 13.50370 13.50370 +2019 306 17.50980 17.50980 +2019 307 18.14760 18.14760 +2019 308 17.45390 17.45390 +2019 309 17.11750 17.11750 +2019 310 17.42020 17.42020 +2019 311 16.18920 16.18920 +2019 312 15.79300 15.79300 +2019 313 14.96900 14.96900 +2019 314 13.13040 13.13040 +2019 315 11.31940 11.31940 +2019 316 11.18060 11.18060 +2019 317 12.82070 12.82070 +2019 318 12.10920 12.10920 +2019 319 13.74510 13.74510 +2019 320 15.13860 15.13860 +2019 321 13.48200 13.48200 +2019 322 11.56190 11.56190 +2019 323 12.87420 12.87420 +2019 324 13.53480 13.53480 +2019 325 14.69260 14.69260 +2019 326 18.00160 18.00160 +2019 327 18.87070 18.87070 +2019 328 19.00270 19.00270 +2019 329 16.77650 16.77650 +2019 330 17.68310 17.68310 +2019 331 17.09440 17.09440 +2019 332 16.67420 16.67420 +2019 333 16.64070 16.64070 +2019 334 16.35080 16.35080 +2019 335 16.92330 16.92330 +2019 336 16.48810 16.48810 +2019 337 16.33120 16.33120 +2019 338 17.01050 17.01050 +2019 339 16.92400 16.92400 +2019 340 17.92810 17.92810 +2019 341 17.32370 17.32370 +2019 342 15.79590 15.79590 +2019 343 15.01830 15.01830 +2019 344 16.10440 16.10440 +2019 345 17.17640 17.17640 +2019 346 17.17840 17.17840 +2019 347 16.47360 16.47360 +2019 348 15.61000 15.61000 +2019 349 16.34950 16.34950 +2019 350 16.44310 16.44310 +2019 351 13.78530 13.78530 +2019 352 14.00190 14.00190 +2019 353 13.77130 13.77130 +2019 354 12.76720 12.76720 +2019 355 15.00720 15.00720 +2019 356 16.72230 16.72230 +2019 357 17.54180 17.54180 +2019 358 16.08800 16.08800 +2019 359 16.44910 16.44910 +2019 360 16.56800 16.56800 +2019 361 14.76130 14.76130 +2019 362 14.02030 14.02030 +2019 363 16.14340 16.14340 +2019 364 17.71730 17.71730 +2019 365 18.84780 18.84780 +2020 1 18.96420 18.96420 +2020 2 17.55600 17.55600 +2020 3 14.39710 14.39710 +2020 4 14.60370 14.60370 +2020 5 14.80930 14.80930 +2020 6 13.84120 13.84120 +2020 7 13.14520 13.14520 +2020 8 14.66680 14.66680 +2020 9 15.75790 15.75790 +2020 10 17.16230 17.16230 +2020 11 17.44990 17.44990 +2020 12 17.58630 17.58630 +2020 13 13.87550 13.87550 +2020 14 15.38690 15.38690 +2020 15 15.54560 15.54560 +2020 16 15.82320 15.82320 +2020 17 15.62420 15.62420 +2020 18 18.40460 18.40460 +2020 19 19.72980 19.72980 +2020 20 18.93900 18.93900 +2020 21 19.08210 19.08210 +2020 22 19.34900 19.34900 +2020 23 20.21340 20.21340 +2020 24 20.88040 20.88040 +2020 25 21.43850 21.43850 +2020 26 20.81680 20.81680 +2020 27 20.13450 20.13450 +2020 28 20.34200 20.34200 +2020 29 19.98940 19.98940 +2020 30 19.99080 19.99080 +2020 31 22.01850 22.01850 +2020 32 20.40050 20.40050 +2020 33 22.17640 22.17640 +2020 34 21.38490 21.38490 +2020 35 19.33670 19.33670 +2020 36 18.02620 18.02620 +2020 37 19.16390 19.16390 +2020 38 17.26910 17.26910 +2020 39 16.28770 16.28770 +2020 40 18.00280 18.00280 +2020 41 19.19400 19.19400 +2020 42 18.80900 18.80900 +2020 43 19.83040 19.83040 +2020 44 18.81950 18.81950 +2020 45 18.40850 18.40850 +2020 46 17.66670 17.66670 +2020 47 19.17400 19.17400 +2020 48 19.18480 19.18480 +2020 49 20.00240 20.00240 +2020 50 20.19430 20.19430 +2020 51 19.94960 19.94960 +2020 52 17.96220 17.96220 +2020 53 15.31760 15.31760 +2020 54 16.05530 16.05530 +2020 55 17.13240 17.13240 +2020 56 18.58410 18.58410 +2020 57 19.60980 19.60980 +2020 58 20.12610 20.12610 +2020 59 19.13220 19.13220 +2020 60 18.56750 18.56750 +2020 61 17.82120 17.82120 +2020 62 18.45860 18.45860 +2020 63 18.32850 18.32850 +2020 64 15.52790 15.52790 +2020 65 15.02020 15.02020 +2020 66 15.72150 15.72150 +2020 67 17.04990 17.04990 +2020 68 16.55640 16.55640 +2020 69 16.98210 16.98210 +2020 70 15.22730 15.22730 +2020 71 15.18990 15.18990 +2020 72 15.09510 15.09510 +2020 73 15.44210 15.44210 +2020 74 16.21280 16.21280 +2020 75 16.82430 16.82430 +2020 76 14.32490 14.32490 +2020 77 13.68440 13.68440 +2020 78 13.21990 13.21990 +2020 79 15.17280 15.17280 +2020 80 15.87710 15.87710 +2020 81 15.53250 15.53250 +2020 82 16.25260 16.25260 +2020 83 12.58090 12.58090 +2020 84 13.09100 13.09100 +2020 85 13.38400 13.38400 +2020 86 12.87860 12.87860 +2020 87 12.35670 12.35670 +2020 88 13.45240 13.45240 +2020 89 14.11840 14.11840 +2020 90 14.73370 14.73370 +2020 91 15.12620 15.12620 +2020 92 14.91740 14.91740 +2020 93 13.92290 13.92290 +2020 94 14.17060 14.17060 +2020 95 13.21040 13.21040 +2020 96 13.05930 13.05930 +2020 97 14.15750 14.15750 +2020 98 13.65120 13.65120 +2020 99 12.46630 12.46630 +2020 100 12.12820 12.12820 +2020 101 12.60070 12.60070 +2020 102 14.20770 14.20770 +2020 103 14.35000 14.35000 +2020 104 10.64660 10.64660 +2020 105 11.18490 11.18490 +2020 106 12.26460 12.26460 +2020 107 14.20540 14.20540 +2020 108 14.96720 14.96720 +2020 109 14.04370 14.04370 +2020 110 13.86230 13.86230 +2020 111 12.19600 12.19600 +2020 112 11.35900 11.35900 +2020 113 12.84920 12.84920 +2020 114 13.63390 13.63390 +2020 115 12.16140 12.16140 +2020 116 13.45730 13.45730 +2020 117 12.50620 12.50620 +2020 118 14.35330 14.35330 +2020 119 12.12690 12.12690 +2020 120 12.53680 12.53680 +2020 121 12.34670 12.34670 +2020 122 13.01840 13.01840 +2020 123 14.93530 14.93530 +2020 124 13.85360 13.85360 +2020 125 9.79687 9.79687 +2020 126 8.53212 8.53212 +2020 127 9.71063 9.71063 +2020 128 12.44630 12.44630 +2020 129 11.78250 11.78250 +2020 130 11.27780 11.27780 +2020 131 11.30040 11.30040 +2020 132 10.91270 10.91270 +2020 133 11.59690 11.59690 +2020 134 11.32310 11.32310 +2020 135 10.65380 10.65380 +2020 136 11.14240 11.14240 +2020 137 11.36680 11.36680 +2020 138 10.27990 10.27990 +2020 139 9.07119 9.07119 +2020 140 8.08883 8.08883 +2020 141 7.26268 7.26268 +2020 142 7.66305 7.66305 +2020 143 7.81758 7.81758 +2020 144 10.89940 10.89940 +2020 145 14.39810 14.39810 +2020 146 12.57380 12.57380 +2020 147 9.96481 9.96481 +2020 148 8.86291 8.86291 +2020 149 8.84972 8.84972 +2020 150 10.15730 10.15730 +2020 151 11.03320 11.03320 +2020 152 11.78810 11.78810 +2020 153 12.24350 12.24350 +2020 154 10.74980 10.74980 +2020 155 12.66520 12.66520 +2020 156 10.34550 10.34550 +2020 157 9.14383 9.14383 +2020 158 8.84016 8.84016 +2020 159 8.23271 8.23271 +2020 160 8.60714 8.60714 +2020 161 7.66380 7.66380 +2020 162 8.47949 8.47949 +2020 163 10.28030 10.28030 +2020 164 9.15626 9.15626 +2020 165 7.60920 7.60920 +2020 166 7.64395 7.64395 +2020 167 9.50806 9.50806 +2020 168 10.71590 10.71590 +2020 169 11.20040 11.20040 +2020 170 10.99720 10.99720 +2020 171 11.12190 11.12190 +2020 172 11.59960 11.59960 +2020 173 11.62100 11.62100 +2020 174 10.04970 10.04970 +2020 175 10.01710 10.01710 +2020 176 9.39269 9.39269 +2020 177 10.53090 10.53090 +2020 178 11.21880 11.21880 +2020 179 10.42090 10.42090 +2020 180 9.14844 9.14844 +2020 181 7.94468 7.94468 +2020 182 5.52371 5.52371 +2020 183 5.54758 5.54758 +2020 184 5.57723 5.57723 +2020 185 6.52212 6.52212 +2020 186 8.56167 8.56167 +2020 187 9.24813 9.24813 +2020 188 8.23191 8.23191 +2020 189 6.86845 6.86845 +2020 190 4.84822 4.84822 +2020 191 6.10868 6.10868 +2020 192 6.09788 6.09788 +2020 193 7.94674 7.94674 +2020 194 10.14030 10.14030 +2020 195 10.60040 10.60040 +2020 196 9.44347 9.44347 +2020 197 7.35744 7.35744 +2020 198 9.45331 9.45331 +2020 199 11.29930 11.29930 +2020 200 10.55310 10.55310 +2020 201 10.69840 10.69840 +2020 202 10.62780 10.62780 +2020 203 7.61323 7.61323 +2020 204 9.37326 9.37326 +2020 205 7.98793 7.98793 +2020 206 6.69791 6.69791 +2020 207 7.75044 7.75044 +2020 208 5.52822 5.52822 +2020 209 7.01753 7.01753 +2020 210 7.99998 7.99998 +2020 211 7.73227 7.73227 +2020 212 9.21536 9.21536 +2020 213 9.82400 9.82400 +2020 214 9.40453 9.40453 +2020 215 8.87520 8.87520 +2020 216 8.28246 8.28246 +2020 217 8.13937 8.13937 +2020 218 8.63692 8.63692 +2020 219 9.66377 9.66377 +2020 220 8.32766 8.32766 +2020 221 6.63939 6.63939 +2020 222 8.48965 8.48965 +2020 223 8.33640 8.33640 +2020 224 9.50689 9.50689 +2020 225 7.74322 7.74322 +2020 226 7.40206 7.40206 +2020 227 5.79932 5.79932 +2020 228 5.22687 5.22687 +2020 229 5.37290 5.37290 +2020 230 8.63074 8.63074 +2020 231 10.51720 10.51720 +2020 232 11.08790 11.08790 +2020 233 10.33880 10.33880 +2020 234 10.25300 10.25300 +2020 235 10.71290 10.71290 +2020 236 9.77608 9.77608 +2020 237 9.19027 9.19027 +2020 238 8.12797 8.12797 +2020 239 6.88277 6.88277 +2020 240 7.24546 7.24546 +2020 241 9.28207 9.28207 +2020 242 10.62630 10.62630 +2020 243 10.25760 10.25760 +2020 244 10.71170 10.71170 +2020 245 9.10297 9.10297 +2020 246 7.05840 7.05840 +2020 247 7.62171 7.62171 +2020 248 9.27080 9.27080 +2020 249 10.64840 10.64840 +2020 250 9.49585 9.49585 +2020 251 8.16681 8.16681 +2020 252 7.28506 7.28506 +2020 253 8.95235 8.95235 +2020 254 7.89253 7.89253 +2020 255 7.57918 7.57918 +2020 256 8.22633 8.22633 +2020 257 10.04460 10.04460 +2020 258 10.71840 10.71840 +2020 259 10.06840 10.06840 +2020 260 10.05770 10.05770 +2020 261 9.93600 9.93600 +2020 262 9.61842 9.61842 +2020 263 10.04800 10.04800 +2020 264 10.46300 10.46300 +2020 265 10.27760 10.27760 +2020 266 11.13360 11.13360 +2020 267 12.42580 12.42580 +2020 268 12.22890 12.22890 +2020 269 12.22370 12.22370 +2020 270 12.75650 12.75650 +2020 271 9.77554 9.77554 +2020 272 8.23393 8.23393 +2020 273 8.52837 8.52837 +2020 274 8.75036 8.75036 +2020 275 10.15370 10.15370 +2020 276 10.93140 10.93140 +2020 277 13.08630 13.08630 +2020 278 14.59760 14.59760 +2020 279 12.75100 12.75100 +2020 280 11.74750 11.74750 +2020 281 10.45230 10.45230 +2020 282 9.20764 9.20764 +2020 283 9.74273 9.74273 +2020 284 11.10270 11.10270 +2020 285 11.83600 11.83600 +2020 286 12.59500 12.59500 +2020 287 11.10430 11.10430 +2020 288 8.16032 8.16032 +2020 289 9.09455 9.09455 +2020 290 9.93569 9.93569 +2020 291 10.42780 10.42780 +2020 292 12.65280 12.65280 +2020 293 13.92110 13.92110 +2020 294 13.80490 13.80490 +2020 295 14.04110 14.04110 +2020 296 13.93500 13.93500 +2020 297 14.47670 14.47670 +2020 298 14.62140 14.62140 +2020 299 14.74350 14.74350 +2020 300 15.02110 15.02110 +2020 301 12.26890 12.26890 +2020 302 14.21700 14.21700 +2020 303 14.83810 14.83810 +2020 304 14.54380 14.54380 +2020 305 14.86940 14.86940 +2020 306 15.04720 15.04720 +2020 307 14.21240 14.21240 +2020 308 15.73490 15.73490 +2020 309 14.69420 14.69420 +2020 310 16.31400 16.31400 +2020 311 15.61870 15.61870 +2020 312 15.71640 15.71640 +2020 313 12.18350 12.18350 +2020 314 11.74480 11.74480 +2020 315 13.29010 13.29010 +2020 316 13.86330 13.86330 +2020 317 14.80520 14.80520 +2020 318 13.27910 13.27910 +2020 319 14.68300 14.68300 +2020 320 14.75760 14.75760 +2020 321 15.41390 15.41390 +2020 322 13.55650 13.55650 +2020 323 13.06920 13.06920 +2020 324 13.76460 13.76460 +2020 325 13.97410 13.97410 +2020 326 13.60000 13.60000 +2020 327 12.04310 12.04310 +2020 328 11.83620 11.83620 +2020 329 14.35720 14.35720 +2020 330 16.13990 16.13990 +2020 331 15.53580 15.53580 +2020 332 14.11600 14.11600 +2020 333 12.65230 12.65230 +2020 334 13.47510 13.47510 +2020 335 14.48540 14.48540 +2020 336 13.46650 13.46650 +2020 337 14.73180 14.73180 +2020 338 13.61490 13.61490 +2020 339 12.59270 12.59270 +2020 340 14.73290 14.73290 +2020 341 16.15540 16.15540 +2020 342 18.80910 18.80910 +2020 343 18.82960 18.82960 +2020 344 18.13980 18.13980 +2020 345 14.71960 14.71960 +2020 346 13.10290 13.10290 +2020 347 15.02370 15.02370 +2020 348 16.11270 16.11270 +2020 349 17.14080 17.14080 +2020 350 16.76180 16.76180 +2020 351 17.01550 17.01550 +2020 352 17.43160 17.43160 +2020 353 17.35000 17.35000 +2020 354 18.22260 18.22260 +2020 355 17.53370 17.53370 +2020 356 17.21670 17.21670 +2020 357 17.16700 17.16700 +2020 358 16.71640 16.71640 +2020 359 16.60070 16.60070 +2020 360 15.10290 15.10290 +2020 361 12.30990 12.30990 +2020 362 12.35200 12.35200 +2020 363 13.27380 13.27380 +2020 364 15.65880 15.65880 +2020 365 16.02730 16.02730 +2020 366 16.63970 16.63970 +2021 1 16.08540 16.08540 +2021 2 15.99410 15.99410 +2021 3 17.31300 17.31300 +2021 4 18.33800 18.33800 +2021 5 20.11400 20.11400 +2021 6 18.20080 18.20080 +2021 7 17.02170 17.02170 +2021 8 17.46250 17.46250 +2021 9 18.03850 18.03850 +2021 10 17.66300 17.66300 +2021 11 17.89020 17.89020 +2021 12 17.96760 17.96760 +2021 13 19.65890 19.65890 +2021 14 19.05350 19.05350 +2021 15 19.25000 19.25000 +2021 16 17.22190 17.22190 +2021 17 15.71900 15.71900 +2021 18 16.78830 16.78830 +2021 19 13.99400 13.99400 +2021 20 12.72930 12.72930 +2021 21 14.68780 14.68780 +2021 22 15.60580 15.60580 +2021 23 17.27180 17.27180 +2021 24 18.18290 18.18290 +2021 25 20.58840 20.58840 +2021 26 20.83750 20.83750 +2021 27 18.83980 18.83980 +2021 28 15.43160 15.43160 +2021 29 14.53470 14.53470 +2021 30 15.78340 15.78340 +2021 31 16.65900 16.65900 +2021 32 17.28240 17.28240 +2021 33 18.17660 18.17660 +2021 34 18.80510 18.80510 +2021 35 16.90780 16.90780 +2021 36 17.07680 17.07680 +2021 37 16.63040 16.63040 +2021 38 16.74120 16.74120 +2021 39 16.26270 16.26270 +2021 40 17.53430 17.53430 +2021 41 17.76970 17.76970 +2021 42 17.06590 17.06590 +2021 43 17.12700 17.12700 +2021 44 17.37630 17.37630 +2021 45 16.19340 16.19340 +2021 46 16.85180 16.85180 +2021 47 15.05500 15.05500 +2021 48 14.69500 14.69500 +2021 49 17.06640 17.06640 +2021 50 18.13930 18.13930 +2021 51 17.95860 17.95860 +2021 52 17.35850 17.35850 +2021 53 17.19930 17.19930 +2021 54 17.03270 17.03270 +2021 55 17.32980 17.32980 +2021 56 17.43830 17.43830 +2021 57 17.01620 17.01620 +2021 58 16.94770 16.94770 +2021 59 16.61410 16.61410 +2021 60 16.42250 16.42250 +2021 61 17.19680 17.19680 +2021 62 16.36970 16.36970 +2021 63 15.36300 15.36300 +2021 64 16.65460 16.65460 +2021 65 14.50370 14.50370 +2021 66 14.68610 14.68610 +2021 67 14.56550 14.56550 +2021 68 14.86600 14.86600 +2021 69 15.77500 15.77500 +2021 70 14.89450 14.89450 +2021 71 13.91970 13.91970 +2021 72 15.30780 15.30780 +2021 73 16.43010 16.43010 +2021 74 16.43330 16.43330 +2021 75 15.96770 15.96770 +2021 76 14.07270 14.07270 +2021 77 13.06780 13.06780 +2021 78 12.91550 12.91550 +2021 79 13.50420 13.50420 +2021 80 13.74380 13.74380 +2021 81 14.00280 14.00280 +2021 82 14.96140 14.96140 +2021 83 15.08970 15.08970 +2021 84 14.56120 14.56120 +2021 85 14.88670 14.88670 +2021 86 15.52830 15.52830 +2021 87 15.78010 15.78010 +2021 88 16.81810 16.81810 +2021 89 15.75320 15.75320 +2021 90 14.72370 14.72370 +2021 91 13.77890 13.77890 +2021 92 13.52500 13.52500 +2021 93 13.42130 13.42130 +2021 94 15.30260 15.30260 +2021 95 17.30940 17.30940 +2021 96 15.09520 15.09520 +2021 97 14.56240 14.56240 +2021 98 14.15770 14.15770 +2021 99 14.83920 14.83920 +2021 100 17.86410 17.86410 +2021 101 17.53460 17.53460 +2021 102 16.97810 16.97810 +2021 103 12.98890 12.98890 +2021 104 12.35560 12.35560 +2021 105 14.34760 14.34760 +2021 106 12.59490 12.59490 +2021 107 10.83130 10.83130 +2021 108 11.86130 11.86130 +2021 109 12.90940 12.90940 +2021 110 15.48010 15.48010 +2021 111 14.29250 14.29250 +2021 112 12.76290 12.76290 +2021 113 13.73100 13.73100 +2021 114 12.02140 12.02140 +2021 115 11.12400 11.12400 +2021 116 10.83790 10.83790 +2021 117 10.23450 10.23450 +2021 118 10.12440 10.12440 +2021 119 11.26840 11.26840 +2021 120 11.33950 11.33950 +2021 121 9.96171 9.96171 +2021 122 9.70244 9.70244 +2021 123 9.52593 9.52593 +2021 124 11.91720 11.91720 +2021 125 11.97860 11.97860 +2021 126 12.69860 12.69860 +2021 127 12.86360 12.86360 +2021 128 14.82550 14.82550 +2021 129 15.58860 15.58860 +2021 130 14.88500 14.88500 +2021 131 14.21420 14.21420 +2021 132 8.13417 8.13417 +2021 133 8.10687 8.10687 +2021 134 13.48740 13.48740 +2021 135 11.56580 11.56580 +2021 136 12.29660 12.29660 +2021 137 10.81850 10.81850 +2021 138 11.55100 11.55100 +2021 139 12.18280 12.18280 +2021 140 10.80060 10.80060 +2021 141 10.12230 10.12230 +2021 142 11.34650 11.34650 +2021 143 11.57980 11.57980 +2021 144 10.18360 10.18360 +2021 145 9.32726 9.32726 +2021 146 8.60770 8.60770 +2021 147 7.37027 7.37027 +2021 148 9.59550 9.59550 +2021 149 8.85590 8.85590 +2021 150 8.41944 8.41944 +2021 151 8.73190 8.73190 +2021 152 8.18838 8.18838 +2021 153 7.98269 7.98269 +2021 154 8.27566 8.27566 +2021 155 8.76055 8.76055 +2021 156 11.25900 11.25900 +2021 157 11.71110 11.71110 +2021 158 11.42270 11.42270 +2021 159 11.94860 11.94860 +2021 160 11.71660 11.71660 +2021 161 11.12480 11.12480 +2021 162 10.82570 10.82570 +2021 163 11.28970 11.28970 +2021 164 13.27240 13.27240 +2021 165 12.62920 12.62920 +2021 166 11.24040 11.24040 +2021 167 10.04200 10.04200 +2021 168 9.02919 9.02919 +2021 169 9.69477 9.69477 +2021 170 11.42500 11.42500 +2021 171 10.91670 10.91670 +2021 172 9.80909 9.80909 +2021 173 7.11125 7.11125 +2021 174 7.23168 7.23168 +2021 175 9.71403 9.71403 +2021 176 11.49350 11.49350 +2021 177 12.63650 12.63650 +2021 178 10.30750 10.30750 +2021 179 6.07493 6.07493 +2021 180 5.79495 5.79495 +2021 181 7.33251 7.33251 +2021 182 6.40930 6.40930 +2021 183 6.00743 6.00743 +2021 184 5.78511 5.78511 +2021 185 5.21553 5.21553 +2021 186 7.93976 7.93976 +2021 187 10.17380 10.17380 +2021 188 7.24261 7.24261 +2021 189 7.30352 7.30352 +2021 190 7.82168 7.82168 +2021 191 5.82161 5.82161 +2021 192 5.95503 5.95503 +2021 193 7.06168 7.06168 +2021 194 5.09895 5.09895 +2021 195 6.43044 6.43044 +2021 196 8.46869 8.46869 +2021 197 11.89550 11.89550 +2021 198 10.89200 10.89200 +2021 199 9.29496 9.29496 +2021 200 8.87771 8.87771 +2021 201 8.76037 8.76037 +2021 202 10.58980 10.58980 +2021 203 9.17695 9.17695 +2021 204 7.71704 7.71704 +2021 205 7.91546 7.91546 +2021 206 10.00220 10.00220 +2021 207 8.43934 8.43934 +2021 208 8.75478 8.75478 +2021 209 8.67680 8.67680 +2021 210 8.27493 8.27493 +2021 211 9.92732 9.92732 +2021 212 8.14666 8.14666 +2021 213 7.90421 7.90421 +2021 214 8.48808 8.48808 +2021 215 7.07032 7.07032 +2021 216 7.96516 7.96516 +2021 217 7.75864 7.75864 +2021 218 8.54453 8.54453 +2021 219 8.17531 8.17531 +2021 220 5.28518 5.28518 +2021 221 6.06856 6.06856 +2021 222 8.37770 8.37770 +2021 223 8.44090 8.44090 +2021 224 8.53381 8.53381 +2021 225 8.68898 8.68898 +2021 226 7.63868 7.63868 +2021 227 7.46707 7.46707 +2021 228 9.35443 9.35443 +2021 229 7.72029 7.72029 +2021 230 6.62075 6.62075 +2021 231 8.98570 8.98570 +2021 232 7.49565 7.49565 +2021 233 6.97903 6.97903 +2021 234 6.75010 6.75010 +2021 235 7.26847 7.26847 +2021 236 8.30604 8.30604 +2021 237 8.37458 8.37458 +2021 238 9.69089 9.69089 +2021 239 11.49910 11.49910 +2021 240 11.08260 11.08260 +2021 241 9.37364 9.37364 +2021 242 7.96665 7.96665 +2021 243 7.42953 7.42953 +2021 244 7.58829 7.58829 +2021 245 7.75414 7.75414 +2021 246 8.13231 8.13231 +2021 247 8.53740 8.53740 +2021 248 8.27550 8.27550 +2021 249 10.07580 10.07580 +2021 250 7.65132 7.65132 +2021 251 7.99360 7.99360 +2021 252 11.01650 11.01650 +2021 253 9.20740 9.20740 +2021 254 8.50301 8.50301 +2021 255 9.82948 9.82948 +2021 256 10.70420 10.70420 +2021 257 8.10783 8.10783 +2021 258 11.23780 11.23780 +2021 259 9.33567 9.33567 +2021 260 7.77176 7.77176 +2021 261 8.57644 8.57644 +2021 262 10.16620 10.16620 +2021 263 9.70360 9.70360 +2021 264 11.26670 11.26670 +2021 265 12.15200 12.15200 +2021 266 11.64150 11.64150 +2021 267 10.60330 10.60330 +2021 268 10.82170 10.82170 +2021 269 8.72286 8.72286 +2021 270 8.25888 8.25888 +2021 271 8.30860 8.30860 +2021 272 9.31931 9.31931 +2021 273 8.88148 8.88148 +2021 274 9.39122 9.39122 +2021 275 9.82109 9.82109 +2021 276 13.16300 13.16300 +2021 277 12.61770 12.61770 +2021 278 12.71080 12.71080 +2021 279 12.40540 12.40540 +2021 280 13.33320 13.33320 +2021 281 11.88930 11.88930 +2021 282 11.36870 11.36870 +2021 283 10.99250 10.99250 +2021 284 10.35890 10.35890 +2021 285 8.72442 8.72442 +2021 286 9.29748 9.29748 +2021 287 9.62711 9.62711 +2021 288 10.53620 10.53620 +2021 289 11.56840 11.56840 +2021 290 14.08130 14.08130 +2021 291 13.05030 13.05030 +2021 292 11.98150 11.98150 +2021 293 10.64000 10.64000 +2021 294 11.39640 11.39640 +2021 295 10.13340 10.13340 +2021 296 11.47300 11.47300 +2021 297 13.32630 13.32630 +2021 298 15.03500 15.03500 +2021 299 14.42710 14.42710 +2021 300 14.35070 14.35070 +2021 301 13.64210 13.64210 +2021 302 13.37800 13.37800 +2021 303 14.24760 14.24760 +2021 304 12.54700 12.54700 +2021 305 13.51520 13.51520 +2021 306 10.57900 10.57900 +2021 307 13.05070 13.05070 +2021 308 13.76850 13.76850 +2021 309 14.21440 14.21440 +2021 310 14.85640 14.85640 +2021 311 15.88850 15.88850 +2021 312 15.74470 15.74470 +2021 313 16.07780 16.07780 +2021 314 16.19280 16.19280 +2021 315 16.01450 16.01450 +2021 316 16.90960 16.90960 +2021 317 17.41960 17.41960 +2021 318 15.86890 15.86890 +2021 319 15.19030 15.19030 +2021 320 14.09240 14.09240 +2021 321 14.04290 14.04290 +2021 322 14.26850 14.26850 +2021 323 14.56950 14.56950 +2021 324 15.33470 15.33470 +2021 325 17.49130 17.49130 +2021 326 15.69140 15.69140 +2021 327 15.26650 15.26650 +2021 328 14.28810 14.28810 +2021 329 16.15390 16.15390 +2021 330 16.42000 16.42000 +2021 331 16.46700 16.46700 +2021 332 17.94280 17.94280 +2021 333 15.66770 15.66770 +2021 334 16.95460 16.95460 +2021 335 16.65880 16.65880 +2021 336 16.38300 16.38300 +2021 337 15.79630 15.79630 +2021 338 17.02240 17.02240 +2021 339 17.94720 17.94720 +2021 340 17.50600 17.50600 +2021 341 18.58070 18.58070 +2021 342 19.03450 19.03450 +2021 343 19.58650 19.58650 +2021 344 19.05900 19.05900 +2021 345 17.07950 17.07950 +2021 346 16.75640 16.75640 +2021 347 17.19500 17.19500 +2021 348 17.97950 17.97950 +2021 349 17.30660 17.30660 +2021 350 16.37390 16.37390 +2021 351 15.13410 15.13410 +2021 352 16.01960 16.01960 +2021 353 16.19210 16.19210 +2021 354 16.83820 16.83820 +2021 355 18.45640 18.45640 +2021 356 20.23540 20.23540 +2021 357 20.77150 20.77150 +2021 358 20.00420 20.00420 +2021 359 19.84080 19.84080 +2021 360 18.93910 18.93910 +2021 361 18.25170 18.25170 +2021 362 18.99610 18.99610 +2021 363 17.60550 17.60550 +2021 364 17.98430 17.98430 +2021 365 19.91830 19.91830 +2022 1 19.52890 19.52890 +2022 2 20.39690 20.39690 +2022 3 20.15980 20.15980 +2022 4 21.79940 21.79940 +2022 5 19.98410 19.98410 +2022 6 16.76720 16.76720 +2022 7 17.89400 17.89400 +2022 8 19.12930 19.12930 +2022 9 19.68980 19.68980 +2022 10 19.85560 19.85560 +2022 11 18.82060 18.82060 +2022 12 17.48870 17.48870 +2022 13 16.43090 16.43090 +2022 14 17.58840 17.58840 +2022 15 18.03460 18.03460 +2022 16 20.26720 20.26720 +2022 17 20.66180 20.66180 +2022 18 19.78630 19.78630 +2022 19 18.13960 18.13960 +2022 20 17.95060 17.95060 +2022 21 19.10130 19.10130 +2022 22 19.84890 19.84890 +2022 23 17.22800 17.22800 +2022 24 18.11030 18.11030 +2022 25 20.20400 20.20400 +2022 26 19.49530 19.49530 +2022 27 16.55640 16.55640 +2022 28 17.77810 17.77810 +2022 29 19.39070 19.39070 +2022 30 19.01050 19.01050 +2022 31 18.49200 18.49200 +2022 32 18.61220 18.61220 +2022 33 18.81450 18.81450 +2022 34 19.08080 19.08080 +2022 35 19.94700 19.94700 +2022 36 18.07580 18.07580 +2022 37 17.21860 17.21860 +2022 38 20.18240 20.18240 +2022 39 20.21160 20.21160 +2022 40 20.88060 20.88060 +2022 41 20.36420 20.36420 +2022 42 21.90480 21.90480 +2022 43 19.43500 19.43500 +2022 44 15.26260 15.26260 +2022 45 15.99380 15.99380 +2022 46 16.99320 16.99320 +2022 47 16.84490 16.84490 +2022 48 17.01300 17.01300 +2022 49 17.31330 17.31330 +2022 50 18.26970 18.26970 +2022 51 17.70640 17.70640 +2022 52 17.96860 17.96860 +2022 53 18.70850 18.70850 +2022 54 16.60540 16.60540 +2022 55 16.27070 16.27070 +2022 56 17.25370 17.25370 +2022 57 16.36750 16.36750 +2022 58 15.19900 15.19900 +2022 59 16.53640 16.53640 +2022 60 16.29770 16.29770 +2022 61 14.68280 14.68280 +2022 62 15.24830 15.24830 +2022 63 15.40420 15.40420 +2022 64 16.11150 16.11150 +2022 65 16.78140 16.78140 +2022 66 17.29860 17.29860 +2022 67 17.97260 17.97260 +2022 68 16.87990 16.87990 +2022 69 16.50370 16.50370 +2022 70 17.55990 17.55990 +2022 71 17.02120 17.02120 +2022 72 16.88400 16.88400 +2022 73 16.22290 16.22290 +2022 74 15.36990 15.36990 +2022 75 14.92310 14.92310 +2022 76 13.97860 13.97860 +2022 77 14.03740 14.03740 +2022 78 15.27690 15.27690 +2022 79 15.95420 15.95420 +2022 80 18.01790 18.01790 +2022 81 16.33390 16.33390 +2022 82 16.35210 16.35210 +2022 83 16.19100 16.19100 +2022 84 16.00750 16.00750 +2022 85 15.11240 15.11240 +2022 86 14.78570 14.78570 +2022 87 17.20070 17.20070 +2022 88 17.83820 17.83820 +2022 89 17.08150 17.08150 +2022 90 17.23160 17.23160 +2022 91 16.40370 16.40370 +2022 92 16.36100 16.36100 +2022 93 15.94200 15.94200 +2022 94 16.38050 16.38050 +2022 95 17.08060 17.08060 +2022 96 13.73700 13.73700 +2022 97 12.02720 12.02720 +2022 98 13.62790 13.62790 +2022 99 14.39910 14.39910 +2022 100 13.14030 13.14030 +2022 101 14.73100 14.73100 +2022 102 13.74270 13.74270 +2022 103 13.04100 13.04100 +2022 104 11.78840 11.78840 +2022 105 13.15820 13.15820 +2022 106 13.05780 13.05780 +2022 107 13.15990 13.15990 +2022 108 15.38870 15.38870 +2022 109 16.20610 16.20610 +2022 110 16.41630 16.41630 +2022 111 15.06940 15.06940 +2022 112 11.15740 11.15740 +2022 113 12.66910 12.66910 +2022 114 12.87230 12.87230 +2022 115 12.15050 12.15050 +2022 116 12.94770 12.94770 +2022 117 11.48910 11.48910 +2022 118 11.13810 11.13810 +2022 119 11.28860 11.28860 +2022 120 12.32060 12.32060 +2022 121 12.86460 12.86460 +2022 122 12.76200 12.76200 +2022 123 12.93300 12.93300 +2022 124 12.15300 12.15300 +2022 125 12.07210 12.07210 +2022 126 11.67750 11.67750 +2022 127 12.20350 12.20350 +2022 128 12.90860 12.90860 +2022 129 12.18580 12.18580 +2022 130 9.40051 9.40051 +2022 131 9.10794 9.10794 +2022 132 9.44209 9.44209 +2022 133 10.60130 10.60130 +2022 134 13.93670 13.93670 +2022 135 15.15840 15.15840 +2022 136 15.19880 15.19880 +2022 137 15.91360 15.91360 +2022 138 14.29280 14.29280 +2022 139 10.69180 10.69180 +2022 140 10.22530 10.22530 +2022 141 11.62570 11.62570 +2022 142 10.35800 10.35800 +2022 143 8.65933 8.65933 +2022 144 10.52050 10.52050 +2022 145 9.15803 9.15803 +2022 146 7.69338 7.69338 +2022 147 7.69514 7.69514 +2022 148 10.55380 10.55380 +2022 149 13.97190 13.97190 +2022 150 12.73740 12.73740 +2022 151 14.21610 14.21610 +2022 152 12.08690 12.08690 +2022 153 10.90060 10.90060 +2022 154 9.29886 9.29886 +2022 155 7.99581 7.99581 +2022 156 10.82150 10.82150 +2022 157 12.83060 12.83060 +2022 158 12.55270 12.55270 +2022 159 10.90080 10.90080 +2022 160 10.08560 10.08560 +2022 161 10.64200 10.64200 +2022 162 10.65900 10.65900 +2022 163 9.14864 9.14864 +2022 164 9.81371 9.81371 +2022 165 10.54860 10.54860 +2022 166 10.34170 10.34170 +2022 167 10.78730 10.78730 +2022 168 10.77410 10.77410 +2022 169 10.05440 10.05440 +2022 170 7.39329 7.39329 +2022 171 6.64202 6.64202 +2022 172 7.10771 7.10771 +2022 173 6.97567 6.97567 +2022 174 7.59737 7.59737 +2022 175 10.34200 10.34200 +2022 176 9.88362 9.88362 +2022 177 8.14537 8.14537 +2022 178 7.99743 7.99743 +2022 179 8.00706 8.00706 +2022 180 8.91658 8.91658 +2022 181 9.74347 9.74347 +2022 182 7.88194 7.88194 +2022 183 7.92868 7.92868 +2022 184 8.94952 8.94952 +2022 185 9.69703 9.69703 +2022 186 11.15830 11.15830 +2022 187 8.27802 8.27802 +2022 188 12.40550 12.40550 +2022 189 11.74610 11.74610 +2022 190 10.19960 10.19960 +2022 191 8.77742 8.77742 +2022 192 12.20480 12.20480 +2022 193 10.85070 10.85070 +2022 194 10.54640 10.54640 +2022 195 8.37022 8.37022 +2022 196 7.12710 7.12710 +2022 197 6.01191 6.01191 +2022 198 8.07423 8.07423 +2022 199 10.71030 10.71030 +2022 200 11.02400 11.02400 +2022 201 7.24397 7.24397 +2022 202 7.01500 7.01500 +2022 203 6.64863 6.64863 +2022 204 7.53221 7.53221 +2022 205 8.79625 8.79625 +2022 206 11.78360 11.78360 +2022 207 10.26920 10.26920 +2022 208 10.37580 10.37580 +2022 209 9.28682 9.28682 +2022 210 8.96541 8.96541 +2022 211 7.94208 7.94208 +2022 212 6.51099 6.51099 +2022 213 7.43710 7.43710 +2022 214 9.88237 9.88237 +2022 215 9.59314 9.59314 +2022 216 8.71403 8.71403 +2022 217 7.95239 7.95239 +2022 218 11.00370 11.00370 +2022 219 9.00553 9.00553 +2022 220 8.16789 8.16789 +2022 221 7.77138 7.77138 +2022 222 6.34786 6.34786 +2022 223 5.95374 5.95374 +2022 224 5.50042 5.50042 +2022 225 5.97470 5.97470 +2022 226 7.43055 7.43055 +2022 227 10.46960 10.46960 +2022 228 12.67930 12.67930 +2022 229 13.16010 13.16010 +2022 230 13.78840 13.78840 +2022 231 13.99790 13.99790 +2022 232 12.22040 12.22040 +2022 233 11.53220 11.53220 +2022 234 9.67842 9.67842 +2022 235 9.67315 9.67315 +2022 236 9.41409 9.41409 +2022 237 11.74650 11.74650 +2022 238 10.40070 10.40070 +2022 239 9.08123 9.08123 +2022 240 7.90745 7.90745 +2022 241 8.24423 8.24423 +2022 242 7.98497 7.98497 +2022 243 8.39690 8.39690 +2022 244 9.04949 9.04949 +2022 245 9.18083 9.18083 +2022 246 9.88804 9.88804 +2022 247 6.86627 6.86627 +2022 248 5.93295 5.93295 +2022 249 6.93206 6.93206 +2022 250 8.42602 8.42602 +2022 251 7.62738 7.62738 +2022 252 8.23458 8.23458 +2022 253 10.67980 10.67980 +2022 254 10.95860 10.95860 +2022 255 10.42840 10.42840 +2022 256 8.59305 8.59305 +2022 257 7.29130 7.29130 +2022 258 8.78964 8.78964 +2022 259 9.16019 9.16019 +2022 260 9.06672 9.06672 +2022 261 11.02100 11.02100 +2022 262 13.10140 13.10140 +2022 263 12.12940 12.12940 +2022 264 10.26130 10.26130 +2022 265 12.05380 12.05380 +2022 266 11.56320 11.56320 +2022 267 11.66940 11.66940 +2022 268 9.68288 9.68288 +2022 269 10.01580 10.01580 +2022 270 10.89150 10.89150 +2022 271 11.91160 11.91160 +2022 272 12.55740 12.55740 +2022 273 11.44110 11.44110 +2022 274 14.13550 14.13550 +2022 275 12.97100 12.97100 +2022 276 10.76610 10.76610 +2022 277 9.47815 9.47815 +2022 278 6.46743 6.46743 +2022 279 7.60045 7.60045 +2022 280 8.92655 8.92655 +2022 281 10.04860 10.04860 +2022 282 10.36270 10.36270 +2022 283 11.91480 11.91480 +2022 284 11.90680 11.90680 +2022 285 11.55110 11.55110 +2022 286 9.98552 9.98552 +2022 287 9.86462 9.86462 +2022 288 11.36850 11.36850 +2022 289 12.25930 12.25930 +2022 290 12.39310 12.39310 +2022 291 10.66430 10.66430 +2022 292 10.72560 10.72560 +2022 293 11.18810 11.18810 +2022 294 10.15300 10.15300 +2022 295 12.67030 12.67030 +2022 296 13.34170 13.34170 +2022 297 12.36570 12.36570 +2022 298 11.35760 11.35760 +2022 299 12.50780 12.50780 +2022 300 13.44580 13.44580 +2022 301 15.12130 15.12130 +2022 302 14.89130 14.89130 +2022 303 15.64750 15.64750 +2022 304 15.38310 15.38310 +2022 305 15.08080 15.08080 +2022 306 15.21620 15.21620 +2022 307 14.01000 14.01000 +2022 308 13.89260 13.89260 +2022 309 13.24810 13.24810 +2022 310 12.54340 12.54340 +2022 311 13.20750 13.20750 +2022 312 14.44710 14.44710 +2022 313 14.85590 14.85590 +2022 314 13.01850 13.01850 +2022 315 16.21430 16.21430 +2022 316 15.26880 15.26880 +2022 317 15.70580 15.70580 +2022 318 15.11560 15.11560 +2022 319 15.96380 15.96380 +2022 320 15.04640 15.04640 +2022 321 15.53160 15.53160 +2022 322 14.67900 14.67900 +2022 323 14.57800 14.57800 +2022 324 14.62650 14.62650 +2022 325 15.34250 15.34250 +2022 326 13.44370 13.44370 +2022 327 12.03160 12.03160 +2022 328 11.36240 11.36240 +2022 329 13.05270 13.05270 +2022 330 13.06900 13.06900 +2022 331 12.92280 12.92280 +2022 332 13.22660 13.22660 +2022 333 13.70730 13.70730 +2022 334 13.45750 13.45750 +2022 335 13.80830 13.80830 +2022 336 13.62200 13.62200 +2022 337 14.35760 14.35760 +2022 338 14.95590 14.95590 +2022 339 13.65130 13.65130 +2022 340 13.42560 13.42560 +2022 341 12.59450 12.59450 +2022 342 14.47070 14.47070 +2022 343 17.05480 17.05480 +2022 344 16.56370 16.56370 +2022 345 17.62720 17.62720 +2022 346 16.34660 16.34660 +2022 347 15.13590 15.13590 +2022 348 15.68820 15.68820 +2022 349 18.06700 18.06700 +2022 350 17.64350 17.64350 +2022 351 17.17230 17.17230 +2022 352 17.42330 17.42330 +2022 353 15.78470 15.78470 +2022 354 17.15650 17.15650 +2022 355 16.51290 16.51290 +2022 356 16.74500 16.74500 +2022 357 16.99260 16.99260 +2022 358 17.26620 17.26620 +2022 359 17.73510 17.73510 +2022 360 17.31280 17.31280 +2022 361 17.53460 17.53460 +2022 362 17.82190 17.82190 +2022 363 19.43640 19.43640 +2022 364 16.48520 16.48520 +2022 365 15.25200 15.25200 +2023 1 15.09590 15.09590 +2023 2 15.80990 15.80990 +2023 3 15.32320 15.32320 +2023 4 15.59900 15.59900 +2023 5 16.22690 16.22690 +2023 6 17.48800 17.48800 +2023 7 18.58090 18.58090 +2023 8 18.18720 18.18720 +2023 9 14.91350 14.91350 +2023 10 16.87840 16.87840 +2023 11 15.61200 15.61200 +2023 12 15.84660 15.84660 +2023 13 16.14070 16.14070 +2023 14 15.90490 15.90490 +2023 15 16.01010 16.01010 +2023 16 16.08130 16.08130 +2023 17 16.62910 16.62910 +2023 18 17.43280 17.43280 +2023 19 18.12890 18.12890 +2023 20 18.94960 18.94960 +2023 21 17.94900 17.94900 +2023 22 16.98850 16.98850 +2023 23 15.61880 15.61880 +2023 24 16.07490 16.07490 +2023 25 16.42440 16.42440 +2023 26 15.67360 15.67360 +2023 27 17.74830 17.74830 +2023 28 18.10600 18.10600 +2023 29 17.95110 17.95110 +2023 30 17.13760 17.13760 +2023 31 16.77030 16.77030 +2023 32 18.28350 18.28350 +2023 33 18.04200 18.04200 +2023 34 19.73730 19.73730 +2023 35 18.62550 18.62550 +2023 36 17.76790 17.76790 +2023 37 16.77400 16.77400 +2023 38 16.63060 16.63060 +2023 39 15.96210 15.96210 +2023 40 16.33340 16.33340 +2023 41 15.88010 15.88010 +2023 42 14.02800 14.02800 +2023 43 14.06190 14.06190 +2023 44 17.93020 17.93020 +2023 45 17.71070 17.71070 +2023 46 16.10700 16.10700 +2023 47 16.14540 16.14540 +2023 48 16.24180 16.24180 +2023 49 17.00460 17.00460 +2023 50 17.79660 17.79660 +2023 51 17.66580 17.66580 +2023 52 17.24500 17.24500 +2023 53 15.07040 15.07040 +2023 54 12.97190 12.97190 +2023 55 15.04690 15.04690 +2023 56 16.64700 16.64700 +2023 57 15.14400 15.14400 +2023 58 15.95780 15.95780 +2023 59 16.63380 16.63380 +2023 60 16.49170 16.49170 +2023 61 17.05770 17.05770 +2023 62 17.88830 17.88830 +2023 63 16.75090 16.75090 +2023 64 14.84090 14.84090 +2023 65 14.91270 14.91270 +2023 66 15.23520 15.23520 +2023 67 16.31550 16.31550 +2023 68 16.63910 16.63910 +2023 69 16.64490 16.64490 +2023 70 15.55410 15.55410 +2023 71 15.38720 15.38720 +2023 72 13.82360 13.82360 +2023 73 14.44120 14.44120 +2023 74 14.67550 14.67550 +2023 75 16.21120 16.21120 +2023 76 17.65230 17.65230 +2023 77 15.69730 15.69730 +2023 78 16.15880 16.15880 +2023 79 14.08740 14.08740 +2023 80 12.40530 12.40530 +2023 81 12.97130 12.97130 +2023 82 13.13910 13.13910 +2023 83 13.32340 13.32340 +2023 84 15.14870 15.14870 +2023 85 16.08350 16.08350 +2023 86 14.69680 14.69680 +2023 87 10.96990 10.96990 +2023 88 11.17010 11.17010 +2023 89 12.65350 12.65350 +2023 90 15.05180 15.05180 +2023 91 16.34020 16.34020 +2023 92 14.19170 14.19170 +2023 93 12.91550 12.91550 +2023 94 12.73380 12.73380 +2023 95 12.67180 12.67180 +2023 96 14.51350 14.51350 +2023 97 12.84760 12.84760 +2023 98 14.23960 14.23960 +2023 99 16.24800 16.24800 +2023 100 15.13410 15.13410 +2023 101 14.61400 14.61400 +2023 102 14.52700 14.52700 +2023 103 14.82800 14.82800 +2023 104 13.85760 13.85760 +2023 105 13.70280 13.70280 +2023 106 13.49680 13.49680 +2023 107 15.13690 15.13690 +2023 108 16.14460 16.14460 +2023 109 16.28040 16.28040 +2023 110 15.64100 15.64100 +2023 111 16.56200 16.56200 +2023 112 16.60770 16.60770 +2023 113 12.50560 12.50560 +2023 114 10.19780 10.19780 +2023 115 13.27960 13.27960 +2023 116 12.07050 12.07050 +2023 117 10.92410 10.92410 +2023 118 12.30450 12.30450 +2023 119 13.86380 13.86380 +2023 120 15.04470 15.04470 +2023 121 16.63000 16.63000 +2023 122 15.83240 15.83240 +2023 123 15.39430 15.39430 +2023 124 15.25450 15.25450 +2023 125 14.96730 14.96730 +2023 126 14.47420 14.47420 +2023 127 14.78820 14.78820 +2023 128 15.22870 15.22870 +2023 129 12.47580 12.47580 +2023 130 7.73302 7.73302 +2023 131 7.94394 7.94394 +2023 132 9.76069 9.76069 +2023 133 9.63090 9.63090 +2023 134 9.90015 9.90015 +2023 135 8.66603 8.66603 +2023 136 8.49951 8.49951 +2023 137 9.76532 9.76532 +2023 138 13.34890 13.34890 +2023 139 12.90830 12.90830 +2023 140 11.51900 11.51900 +2023 141 11.34550 11.34550 +2023 142 11.97250 11.97250 +2023 143 10.55360 10.55360 +2023 144 10.04880 10.04880 +2023 145 9.84068 9.84068 +2023 146 11.15350 11.15350 +2023 147 12.52220 12.52220 +2023 148 12.96720 12.96720 +2023 149 12.68990 12.68990 +2023 150 10.99190 10.99190 +2023 151 11.51280 11.51280 +2023 152 12.24890 12.24890 +2023 153 9.47886 9.47886 +2023 154 8.34560 8.34560 +2023 155 9.14641 9.14641 +2023 156 10.56650 10.56650 +2023 157 10.15640 10.15640 +2023 158 10.15470 10.15470 +2023 159 10.10390 10.10390 +2023 160 8.90451 8.90451 +2023 161 7.69761 7.69761 +2023 162 7.80004 7.80004 +2023 163 7.56424 7.56424 +2023 164 6.39057 6.39057 +2023 165 5.41755 5.41755 +2023 166 7.18053 7.18053 +2023 167 9.22061 9.22061 +2023 168 9.94913 9.94913 +2023 169 9.77957 9.77957 +2023 170 9.52437 9.52437 +2023 171 10.02600 10.02600 +2023 172 10.89270 10.89270 +2023 173 11.61610 11.61610 +2023 174 11.12250 11.12250 +2023 175 10.87780 10.87780 +2023 176 9.71457 9.71457 +2023 177 9.17386 9.17386 +2023 178 7.97688 7.97688 +2023 179 8.96006 8.96006 +2023 180 7.92538 7.92538 +2023 181 7.27072 7.27072 +2023 182 8.17505 8.17505 +2023 183 7.83483 7.83483 +2023 184 9.16402 9.16402 +2023 185 10.20670 10.20670 +2023 186 9.08512 9.08512 +2023 187 7.72823 7.72823 +2023 188 9.92492 9.92492 +2023 189 8.88922 8.88922 +2023 190 9.41592 9.41592 +2023 191 9.25658 9.25658 +2023 192 8.76315 8.76315 +2023 193 9.17542 9.17542 +2023 194 10.57140 10.57140 +2023 195 10.66020 10.66020 +2023 196 10.97640 10.97640 +2023 197 9.19255 9.19255 +2023 198 9.49359 9.49359 +2023 199 8.98828 8.98828 +2023 200 8.67238 8.67238 +2023 201 8.87805 8.87805 +2023 202 8.57710 8.57710 +2023 203 6.53077 6.53077 +2023 204 7.42030 7.42030 +2023 205 8.17535 8.17535 +2023 206 6.81323 6.81323 +2023 207 5.53974 5.53974 +2023 208 5.90751 5.90751 +2023 209 6.02583 6.02583 +2023 210 6.24035 6.24035 +2023 211 6.22099 6.22099 +2023 212 9.56247 9.56247 +2023 213 7.40588 7.40588 +2023 214 4.72535 4.72535 +2023 215 6.80262 6.80262 +2023 216 7.42627 7.42627 +2023 217 6.91041 6.91041 +2023 218 7.77486 7.77486 +2023 219 7.73133 7.73133 +2023 220 5.97116 5.97116 +2023 221 5.88495 5.88495 +2023 222 4.85825 4.85825 +2023 223 5.99211 5.99211 +2023 224 8.66706 8.66706 +2023 225 9.02046 9.02046 +2023 226 6.74925 6.74925 +2023 227 7.26555 7.26555 +2023 228 7.12428 7.12428 +2023 229 6.62136 6.62136 +2023 230 7.70894 7.70894 +2023 231 9.20482 9.20482 +2023 232 8.53242 8.53242 +2023 233 8.03171 8.03171 +2023 234 6.60905 6.60905 +2023 235 6.38554 6.38554 +2023 236 6.81576 6.81576 +2023 237 6.84991 6.84991 +2023 238 8.23686 8.23686 +2023 239 7.28300 7.28300 +2023 240 5.97225 5.97225 +2023 241 6.72569 6.72569 +2023 242 8.07931 8.07931 +2023 243 7.57774 7.57774 +2023 244 8.82283 8.82283 +2023 245 9.97197 9.97197 +2023 246 9.81235 9.81235 +2023 247 10.54440 10.54440 +2023 248 11.86650 11.86650 +2023 249 11.32260 11.32260 +2023 250 10.34110 10.34110 +2023 251 9.93623 9.93623 +2023 252 9.36807 9.36807 +2023 253 10.85090 10.85090 +2023 254 9.50553 9.50553 +2023 255 9.20121 9.20121 +2023 256 9.20172 9.20172 +2023 257 9.94971 9.94971 +2023 258 8.58790 8.58790 +2023 259 10.49700 10.49700 +2023 260 11.89180 11.89180 +2023 261 11.34750 11.34750 +2023 262 13.81130 13.81130 +2023 263 12.98340 12.98340 +2023 264 13.07910 13.07910 +2023 265 12.96800 12.96800 +2023 266 12.59310 12.59310 +2023 267 10.08190 10.08190 +2023 268 11.55980 11.55980 +2023 269 9.33461 9.33461 +2023 270 9.73328 9.73328 +2023 271 9.42088 9.42088 +2023 272 8.63033 8.63033 +2023 273 8.60425 8.60425 +2023 274 12.33980 12.33980 +2023 275 9.34358 9.34358 +2023 276 9.07332 9.07332 +2023 277 12.52690 12.52690 +2023 278 12.35570 12.35570 +2023 279 10.61450 10.61450 +2023 280 10.58170 10.58170 +2023 281 9.64663 9.64663 +2023 282 10.75130 10.75130 +2023 283 10.25670 10.25670 +2023 284 9.90277 9.90277 +2023 285 11.35450 11.35450 +2023 286 11.68710 11.68710 +2023 287 13.18230 13.18230 +2023 288 12.15400 12.15400 +2023 289 13.84900 13.84900 +2023 290 13.79820 13.79820 +2023 291 14.10470 14.10470 +2023 292 13.80610 13.80610 +2023 293 14.66260 14.66260 +2023 294 13.40500 13.40500 +2023 295 12.02430 12.02430 +2023 296 12.89900 12.89900 +2023 297 13.51050 13.51050 +2023 298 14.37530 14.37530 +2023 299 11.40320 11.40320 +2023 300 9.65382 9.65382 +2023 301 10.50410 10.50410 +2023 302 10.68660 10.68660 +2023 303 13.72620 13.72620 +2023 304 15.88770 15.88770 +2023 305 14.21680 14.21680 +2023 306 12.68400 12.68400 +2023 307 12.52210 12.52210 +2023 308 13.04720 13.04720 +2023 309 12.23560 12.23560 +2023 310 10.86030 10.86030 +2023 311 11.51300 11.51300 +2023 312 11.84410 11.84410 +2023 313 11.91230 11.91230 +2023 314 12.05590 12.05590 +2023 315 13.25470 13.25470 +2023 316 13.01480 13.01480 +2023 317 12.27820 12.27820 +2023 318 14.11590 14.11590 +2023 319 13.60050 13.60050 +2023 320 14.25120 14.25120 +2023 321 14.30740 14.30740 +2023 322 13.99410 13.99410 +2023 323 15.78930 15.78930 +2023 324 16.06640 16.06640 +2023 325 16.23630 16.23630 +2023 326 15.70490 15.70490 +2023 327 12.03530 12.03530 +2023 328 11.39450 11.39450 +2023 329 15.18740 15.18740 +2023 330 13.54690 13.54690 +2023 331 13.69370 13.69370 +2023 332 14.07570 14.07570 +2023 333 13.19410 13.19410 +2023 334 13.70370 13.70370 +2023 335 13.76480 13.76480 +2023 336 14.82600 14.82600 +2023 337 16.70900 16.70900 +2023 338 14.70060 14.70060 +2023 339 15.40650 15.40650 +2023 340 15.69870 15.69870 +2023 341 15.95880 15.95880 +2023 342 15.84840 15.84840 +2023 343 14.32490 14.32490 +2023 344 14.13330 14.13330 +2023 345 12.55270 12.55270 +2023 346 12.41440 12.41440 +2023 347 15.18940 15.18940 +2023 348 14.59480 14.59480 +2023 349 16.57210 16.57210 +2023 350 16.28350 16.28350 +2023 351 18.02140 18.02140 +2023 352 18.28940 18.28940 +2023 353 17.67950 17.67950 +2023 354 18.95960 18.95960 +2023 355 17.85360 17.85360 +2023 356 17.76710 17.76710 +2023 357 18.31150 18.31150 +2023 358 18.50110 18.50110 +2023 359 19.39800 19.39800 +2023 360 19.12520 19.12520 +2023 361 16.66550 16.66550 +2023 362 17.26090 17.26090 +2023 363 19.72080 19.72080 +2023 364 18.66020 18.66020 +2023 365 16.10560 16.10560 diff --git a/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.wnd b/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.wnd new file mode 100644 index 00000000..a1174d34 --- /dev/null +++ b/src/r-api/swatplusEditoR/inst/extdata/era5/IDera5.wnd @@ -0,0 +1,16074 @@ +IDera5.wnd: Wind speed data - file written by R +nbyr tstep lat lon elev + 44 1 -38.136 176.250 280.000 +1980 1 3.99903 +1980 2 3.35264 +1980 3 3.18269 +1980 4 3.40340 +1980 5 2.17726 +1980 6 0.48048 +1980 7 1.36240 +1980 8 1.47134 +1980 9 0.87970 +1980 10 1.75478 +1980 11 1.45062 +1980 12 3.49750 +1980 13 3.61436 +1980 14 2.49456 +1980 15 4.16356 +1980 16 4.82478 +1980 17 4.04746 +1980 18 3.84862 +1980 19 4.21931 +1980 20 0.51475 +1980 21 2.74010 +1980 22 3.67357 +1980 23 2.46594 +1980 24 2.52429 +1980 25 0.97273 +1980 26 1.12636 +1980 27 0.66319 +1980 28 1.18996 +1980 29 0.78479 +1980 30 0.80802 +1980 31 0.74494 +1980 32 1.02795 +1980 33 1.73038 +1980 34 1.72926 +1980 35 1.45286 +1980 36 0.28217 +1980 37 2.61726 +1980 38 0.72548 +1980 39 1.57912 +1980 40 1.95412 +1980 41 3.36176 +1980 42 3.38204 +1980 43 4.42654 +1980 44 4.48769 +1980 45 4.04160 +1980 46 3.58760 +1980 47 3.70026 +1980 48 1.80566 +1980 49 0.13234 +1980 50 1.00356 +1980 51 4.12714 +1980 52 2.76865 +1980 53 3.59799 +1980 54 1.13651 +1980 55 3.47533 +1980 56 4.41298 +1980 57 4.06004 +1980 58 2.14817 +1980 59 0.97717 +1980 60 4.25432 +1980 61 3.18739 +1980 62 3.32656 +1980 63 3.32443 +1980 64 3.30674 +1980 65 3.60998 +1980 66 3.92247 +1980 67 3.45794 +1980 68 0.73472 +1980 69 1.78682 +1980 70 1.39956 +1980 71 2.28954 +1980 72 1.93571 +1980 73 1.94844 +1980 74 2.90655 +1980 75 5.37328 +1980 76 5.27018 +1980 77 2.55730 +1980 78 2.75340 +1980 79 3.67906 +1980 80 3.40298 +1980 81 1.97672 +1980 82 0.94794 +1980 83 1.00881 +1980 84 1.04110 +1980 85 1.70733 +1980 86 1.42685 +1980 87 1.40428 +1980 88 2.54038 +1980 89 2.13246 +1980 90 3.71554 +1980 91 4.56691 +1980 92 4.03099 +1980 93 5.02163 +1980 94 1.76360 +1980 95 0.26328 +1980 96 2.31448 +1980 97 1.72742 +1980 98 0.73922 +1980 99 1.49139 +1980 100 1.25751 +1980 101 3.28646 +1980 102 2.65550 +1980 103 1.02696 +1980 104 0.05467 +1980 105 1.06017 +1980 106 0.31595 +1980 107 0.96295 +1980 108 1.75701 +1980 109 2.10492 +1980 110 0.39128 +1980 111 0.79019 +1980 112 0.37016 +1980 113 1.05666 +1980 114 2.40919 +1980 115 2.52826 +1980 116 0.36683 +1980 117 3.24134 +1980 118 2.55990 +1980 119 2.55004 +1980 120 2.74640 +1980 121 1.79879 +1980 122 0.91770 +1980 123 2.66221 +1980 124 0.59388 +1980 125 1.85236 +1980 126 0.62050 +1980 127 0.34002 +1980 128 2.00054 +1980 129 1.93119 +1980 130 1.88322 +1980 131 1.84085 +1980 132 1.32383 +1980 133 0.62117 +1980 134 1.51100 +1980 135 1.05842 +1980 136 1.25485 +1980 137 1.76475 +1980 138 3.22657 +1980 139 2.91258 +1980 140 3.59737 +1980 141 4.29420 +1980 142 4.52073 +1980 143 4.74331 +1980 144 3.32155 +1980 145 2.08730 +1980 146 1.46561 +1980 147 3.87097 +1980 148 3.89452 +1980 149 3.18288 +1980 150 1.23236 +1980 151 0.84693 +1980 152 0.49877 +1980 153 1.33283 +1980 154 0.24515 +1980 155 3.11909 +1980 156 2.68297 +1980 157 1.47391 +1980 158 1.31296 +1980 159 1.97744 +1980 160 1.50717 +1980 161 1.39152 +1980 162 3.63554 +1980 163 2.37775 +1980 164 3.10147 +1980 165 3.80948 +1980 166 2.42051 +1980 167 2.85669 +1980 168 3.07104 +1980 169 2.98780 +1980 170 2.70911 +1980 171 2.50700 +1980 172 4.11974 +1980 173 3.97545 +1980 174 2.60944 +1980 175 2.85496 +1980 176 0.72645 +1980 177 0.86789 +1980 178 0.39042 +1980 179 0.05534 +1980 180 1.58076 +1980 181 5.55987 +1980 182 1.11148 +1980 183 0.41444 +1980 184 1.06903 +1980 185 1.01553 +1980 186 1.88583 +1980 187 2.26343 +1980 188 1.79596 +1980 189 2.49075 +1980 190 3.41424 +1980 191 2.61236 +1980 192 2.73812 +1980 193 3.75283 +1980 194 2.97749 +1980 195 4.53167 +1980 196 4.55235 +1980 197 3.52013 +1980 198 1.40151 +1980 199 0.99042 +1980 200 0.70410 +1980 201 3.54421 +1980 202 3.09151 +1980 203 0.94583 +1980 204 1.89113 +1980 205 2.45567 +1980 206 1.93936 +1980 207 2.02996 +1980 208 1.92625 +1980 209 1.46522 +1980 210 1.19595 +1980 211 0.93424 +1980 212 0.33117 +1980 213 1.56815 +1980 214 4.53751 +1980 215 4.11637 +1980 216 2.98316 +1980 217 3.60944 +1980 218 3.47621 +1980 219 2.36672 +1980 220 4.05924 +1980 221 2.51328 +1980 222 1.62575 +1980 223 2.33291 +1980 224 2.68292 +1980 225 3.83953 +1980 226 3.32377 +1980 227 1.64012 +1980 228 4.64731 +1980 229 2.02848 +1980 230 3.05338 +1980 231 2.69688 +1980 232 3.90733 +1980 233 0.83371 +1980 234 1.03447 +1980 235 1.51692 +1980 236 1.70595 +1980 237 1.54883 +1980 238 2.82029 +1980 239 2.10641 +1980 240 3.53541 +1980 241 0.95358 +1980 242 1.52868 +1980 243 2.52030 +1980 244 1.62016 +1980 245 2.12569 +1980 246 2.24391 +1980 247 2.49377 +1980 248 0.94832 +1980 249 2.85061 +1980 250 1.73093 +1980 251 3.91257 +1980 252 2.14541 +1980 253 3.39386 +1980 254 3.83676 +1980 255 3.54873 +1980 256 3.27708 +1980 257 3.69349 +1980 258 4.19907 +1980 259 3.95268 +1980 260 4.78062 +1980 261 4.05781 +1980 262 2.33217 +1980 263 3.41817 +1980 264 4.62898 +1980 265 4.12559 +1980 266 5.74521 +1980 267 4.03322 +1980 268 2.35951 +1980 269 2.38928 +1980 270 2.86430 +1980 271 3.88218 +1980 272 3.11882 +1980 273 3.13740 +1980 274 4.81402 +1980 275 4.72862 +1980 276 3.90454 +1980 277 3.28508 +1980 278 3.87689 +1980 279 4.20408 +1980 280 3.40557 +1980 281 2.25871 +1980 282 2.93015 +1980 283 1.62683 +1980 284 1.37920 +1980 285 3.05191 +1980 286 2.66515 +1980 287 1.19472 +1980 288 3.18751 +1980 289 0.39380 +1980 290 2.31890 +1980 291 5.63303 +1980 292 1.20688 +1980 293 1.86238 +1980 294 2.96699 +1980 295 1.86708 +1980 296 2.75128 +1980 297 0.26505 +1980 298 0.85712 +1980 299 0.67692 +1980 300 1.09933 +1980 301 1.71497 +1980 302 3.68268 +1980 303 3.21622 +1980 304 2.82924 +1980 305 3.16109 +1980 306 1.51338 +1980 307 2.39365 +1980 308 2.70118 +1980 309 2.75470 +1980 310 2.47658 +1980 311 1.83271 +1980 312 3.29748 +1980 313 1.28682 +1980 314 0.98604 +1980 315 1.10406 +1980 316 3.97764 +1980 317 4.58369 +1980 318 3.18398 +1980 319 4.49862 +1980 320 4.03686 +1980 321 3.07128 +1980 322 4.53032 +1980 323 3.97589 +1980 324 4.37254 +1980 325 4.91950 +1980 326 4.36796 +1980 327 3.64557 +1980 328 3.32426 +1980 329 4.29614 +1980 330 4.08142 +1980 331 4.05006 +1980 332 5.20859 +1980 333 3.27773 +1980 334 2.73732 +1980 335 4.69388 +1980 336 4.15212 +1980 337 1.16303 +1980 338 1.84031 +1980 339 2.96775 +1980 340 0.34741 +1980 341 0.66432 +1980 342 2.75536 +1980 343 3.66777 +1980 344 3.87829 +1980 345 3.09171 +1980 346 2.27617 +1980 347 2.79121 +1980 348 1.09513 +1980 349 1.34870 +1980 350 2.29702 +1980 351 2.43586 +1980 352 1.46919 +1980 353 2.12261 +1980 354 1.33483 +1980 355 2.85820 +1980 356 1.87848 +1980 357 3.90628 +1980 358 3.28552 +1980 359 2.97489 +1980 360 2.98123 +1980 361 2.04738 +1980 362 2.85825 +1980 363 1.78302 +1980 364 1.04858 +1980 365 2.08629 +1980 366 0.66232 +1981 1 1.38578 +1981 2 2.68313 +1981 3 1.72600 +1981 4 2.76288 +1981 5 3.03320 +1981 6 2.29876 +1981 7 1.43790 +1981 8 1.67935 +1981 9 1.56052 +1981 10 1.67502 +1981 11 1.45147 +1981 12 2.25422 +1981 13 2.18076 +1981 14 1.44907 +1981 15 1.80700 +1981 16 1.51359 +1981 17 2.64806 +1981 18 4.40199 +1981 19 5.00016 +1981 20 0.10999 +1981 21 1.67756 +1981 22 1.76282 +1981 23 2.00310 +1981 24 1.41370 +1981 25 1.68256 +1981 26 1.04189 +1981 27 2.76625 +1981 28 1.62218 +1981 29 1.15669 +1981 30 1.75675 +1981 31 2.11199 +1981 32 2.48076 +1981 33 1.50329 +1981 34 3.65190 +1981 35 5.23027 +1981 36 3.48292 +1981 37 2.48493 +1981 38 2.56979 +1981 39 2.81912 +1981 40 2.29458 +1981 41 2.31741 +1981 42 1.55217 +1981 43 2.07924 +1981 44 1.21353 +1981 45 1.24596 +1981 46 2.26412 +1981 47 3.39487 +1981 48 1.19399 +1981 49 2.09032 +1981 50 2.32657 +1981 51 1.48252 +1981 52 0.57110 +1981 53 2.53489 +1981 54 1.47698 +1981 55 2.86084 +1981 56 2.87475 +1981 57 2.69266 +1981 58 3.30520 +1981 59 3.00382 +1981 60 1.78467 +1981 61 1.91434 +1981 62 1.66695 +1981 63 1.18377 +1981 64 1.64052 +1981 65 2.80885 +1981 66 2.99397 +1981 67 4.23133 +1981 68 2.89399 +1981 69 2.01389 +1981 70 2.14857 +1981 71 2.94501 +1981 72 0.13459 +1981 73 2.05976 +1981 74 1.61803 +1981 75 0.81685 +1981 76 0.49628 +1981 77 3.36261 +1981 78 1.61681 +1981 79 2.33255 +1981 80 2.31763 +1981 81 2.91868 +1981 82 2.45713 +1981 83 1.74354 +1981 84 1.91233 +1981 85 2.04835 +1981 86 3.20325 +1981 87 2.66716 +1981 88 1.07146 +1981 89 0.64546 +1981 90 0.62803 +1981 91 0.16754 +1981 92 0.79559 +1981 93 1.02569 +1981 94 1.19162 +1981 95 0.44483 +1981 96 1.40923 +1981 97 1.41745 +1981 98 2.82465 +1981 99 2.88377 +1981 100 1.99553 +1981 101 4.56172 +1981 102 6.03102 +1981 103 3.79252 +1981 104 2.73192 +1981 105 1.41106 +1981 106 2.50479 +1981 107 4.07916 +1981 108 1.39752 +1981 109 1.48364 +1981 110 2.20472 +1981 111 2.55474 +1981 112 0.16066 +1981 113 1.35248 +1981 114 0.05801 +1981 115 2.04075 +1981 116 2.82687 +1981 117 2.20145 +1981 118 2.41962 +1981 119 2.42572 +1981 120 1.21326 +1981 121 1.44596 +1981 122 1.10348 +1981 123 0.39048 +1981 124 2.30820 +1981 125 3.02514 +1981 126 3.81443 +1981 127 3.67807 +1981 128 1.97233 +1981 129 0.91152 +1981 130 1.71059 +1981 131 2.39614 +1981 132 3.51169 +1981 133 2.00140 +1981 134 1.72743 +1981 135 1.33500 +1981 136 0.68148 +1981 137 1.91520 +1981 138 1.04017 +1981 139 2.02499 +1981 140 2.90012 +1981 141 5.27021 +1981 142 2.90167 +1981 143 2.50785 +1981 144 2.36704 +1981 145 2.04098 +1981 146 2.37091 +1981 147 2.39129 +1981 148 1.37663 +1981 149 1.86830 +1981 150 0.74617 +1981 151 1.27027 +1981 152 1.24110 +1981 153 3.79559 +1981 154 3.11177 +1981 155 3.04317 +1981 156 2.36590 +1981 157 1.04911 +1981 158 0.75695 +1981 159 2.56828 +1981 160 2.62505 +1981 161 2.28117 +1981 162 2.61252 +1981 163 3.78223 +1981 164 1.37344 +1981 165 1.90111 +1981 166 1.06078 +1981 167 2.10855 +1981 168 2.36677 +1981 169 2.17135 +1981 170 2.47213 +1981 171 1.40870 +1981 172 2.73920 +1981 173 3.27779 +1981 174 2.16492 +1981 175 0.66205 +1981 176 1.93632 +1981 177 3.69418 +1981 178 1.08575 +1981 179 4.05981 +1981 180 2.88378 +1981 181 1.82077 +1981 182 1.55039 +1981 183 2.71250 +1981 184 3.10301 +1981 185 1.65998 +1981 186 2.11524 +1981 187 3.58824 +1981 188 4.75623 +1981 189 2.01951 +1981 190 1.71527 +1981 191 3.02879 +1981 192 2.88226 +1981 193 1.84664 +1981 194 1.81833 +1981 195 2.63812 +1981 196 2.88867 +1981 197 2.12967 +1981 198 0.60677 +1981 199 3.45430 +1981 200 3.43535 +1981 201 2.94550 +1981 202 1.75293 +1981 203 0.49550 +1981 204 0.83057 +1981 205 1.59058 +1981 206 2.37681 +1981 207 0.82221 +1981 208 2.55779 +1981 209 4.21303 +1981 210 3.15964 +1981 211 3.28854 +1981 212 1.58036 +1981 213 1.06240 +1981 214 1.22695 +1981 215 1.93471 +1981 216 2.96001 +1981 217 3.85867 +1981 218 3.58793 +1981 219 1.61910 +1981 220 3.85110 +1981 221 3.30463 +1981 222 1.19104 +1981 223 2.66140 +1981 224 1.58899 +1981 225 2.52675 +1981 226 1.78085 +1981 227 2.22079 +1981 228 2.22578 +1981 229 1.57413 +1981 230 1.30830 +1981 231 4.23949 +1981 232 2.85152 +1981 233 1.01130 +1981 234 0.96728 +1981 235 1.39163 +1981 236 4.31956 +1981 237 2.29729 +1981 238 2.68965 +1981 239 2.76508 +1981 240 2.67852 +1981 241 2.00929 +1981 242 3.59382 +1981 243 1.44133 +1981 244 1.63314 +1981 245 3.52198 +1981 246 4.65690 +1981 247 4.30844 +1981 248 4.82155 +1981 249 4.15445 +1981 250 4.67950 +1981 251 3.15267 +1981 252 1.59257 +1981 253 2.34063 +1981 254 3.24951 +1981 255 3.15923 +1981 256 4.21534 +1981 257 3.06752 +1981 258 3.84319 +1981 259 0.93351 +1981 260 1.80399 +1981 261 3.85371 +1981 262 4.18747 +1981 263 3.73283 +1981 264 3.32954 +1981 265 3.28225 +1981 266 3.90656 +1981 267 3.24099 +1981 268 4.34476 +1981 269 4.79890 +1981 270 2.49822 +1981 271 5.10254 +1981 272 6.13949 +1981 273 4.49392 +1981 274 3.79618 +1981 275 4.09845 +1981 276 2.75961 +1981 277 2.98519 +1981 278 3.60938 +1981 279 2.30048 +1981 280 2.80866 +1981 281 2.16970 +1981 282 0.67275 +1981 283 2.89370 +1981 284 0.46939 +1981 285 1.53570 +1981 286 1.55362 +1981 287 3.57531 +1981 288 3.52819 +1981 289 2.44590 +1981 290 4.10326 +1981 291 2.44662 +1981 292 0.48605 +1981 293 1.31332 +1981 294 1.75014 +1981 295 2.94189 +1981 296 3.83488 +1981 297 1.08382 +1981 298 4.40493 +1981 299 4.01564 +1981 300 3.57699 +1981 301 3.20856 +1981 302 2.42702 +1981 303 4.11126 +1981 304 4.95897 +1981 305 4.72080 +1981 306 3.02602 +1981 307 1.72451 +1981 308 2.17537 +1981 309 2.44533 +1981 310 3.77301 +1981 311 4.24471 +1981 312 1.73872 +1981 313 1.57710 +1981 314 0.79751 +1981 315 1.50218 +1981 316 1.56405 +1981 317 2.87290 +1981 318 5.85160 +1981 319 2.76067 +1981 320 4.14861 +1981 321 0.58695 +1981 322 3.66432 +1981 323 2.14709 +1981 324 0.80535 +1981 325 1.35957 +1981 326 1.90043 +1981 327 2.49781 +1981 328 0.56166 +1981 329 1.59859 +1981 330 0.98175 +1981 331 2.84590 +1981 332 4.29600 +1981 333 2.65419 +1981 334 3.34682 +1981 335 2.48500 +1981 336 2.43417 +1981 337 1.71403 +1981 338 1.40671 +1981 339 2.64633 +1981 340 3.70067 +1981 341 3.88238 +1981 342 3.86320 +1981 343 3.23749 +1981 344 2.97091 +1981 345 1.15005 +1981 346 1.92388 +1981 347 3.05704 +1981 348 2.01200 +1981 349 2.25902 +1981 350 2.19766 +1981 351 0.62740 +1981 352 1.96294 +1981 353 1.83411 +1981 354 0.84769 +1981 355 0.84105 +1981 356 1.26323 +1981 357 1.10105 +1981 358 0.60396 +1981 359 1.37017 +1981 360 1.16733 +1981 361 1.79580 +1981 362 2.57675 +1981 363 2.94387 +1981 364 2.49587 +1981 365 1.35587 +1982 1 1.61721 +1982 2 2.09498 +1982 3 3.59304 +1982 4 4.09380 +1982 5 2.56279 +1982 6 2.98624 +1982 7 2.88985 +1982 8 0.25420 +1982 9 1.95478 +1982 10 1.02697 +1982 11 0.84805 +1982 12 2.16878 +1982 13 2.77972 +1982 14 2.18696 +1982 15 1.50431 +1982 16 0.98206 +1982 17 1.84036 +1982 18 3.35471 +1982 19 2.87406 +1982 20 2.26643 +1982 21 4.38057 +1982 22 4.16401 +1982 23 4.56663 +1982 24 3.65384 +1982 25 3.45445 +1982 26 4.39385 +1982 27 4.22285 +1982 28 1.92354 +1982 29 2.18277 +1982 30 2.42651 +1982 31 2.54401 +1982 32 2.11950 +1982 33 4.03544 +1982 34 0.69584 +1982 35 2.49240 +1982 36 2.61325 +1982 37 1.12088 +1982 38 0.52360 +1982 39 1.25054 +1982 40 1.34614 +1982 41 2.80571 +1982 42 1.26448 +1982 43 2.69302 +1982 44 1.08468 +1982 45 3.34767 +1982 46 4.07999 +1982 47 4.16439 +1982 48 4.18026 +1982 49 3.14376 +1982 50 0.59525 +1982 51 3.12359 +1982 52 2.52386 +1982 53 4.73263 +1982 54 2.99008 +1982 55 2.94244 +1982 56 1.28901 +1982 57 1.08472 +1982 58 1.02986 +1982 59 2.57695 +1982 60 1.77810 +1982 61 3.30273 +1982 62 2.44574 +1982 63 0.93633 +1982 64 0.94424 +1982 65 1.64961 +1982 66 1.79671 +1982 67 2.11307 +1982 68 1.59914 +1982 69 2.20073 +1982 70 1.31186 +1982 71 2.77413 +1982 72 3.15808 +1982 73 3.81058 +1982 74 3.05450 +1982 75 1.61461 +1982 76 1.22761 +1982 77 0.74913 +1982 78 0.83198 +1982 79 0.90297 +1982 80 0.35789 +1982 81 1.84554 +1982 82 2.09115 +1982 83 2.98435 +1982 84 2.38811 +1982 85 0.21902 +1982 86 0.51925 +1982 87 0.81883 +1982 88 1.26853 +1982 89 2.36188 +1982 90 1.18174 +1982 91 1.01019 +1982 92 1.90151 +1982 93 2.50408 +1982 94 2.56711 +1982 95 2.47814 +1982 96 2.70053 +1982 97 1.06094 +1982 98 5.49808 +1982 99 4.90856 +1982 100 2.83391 +1982 101 1.57574 +1982 102 0.13711 +1982 103 1.17490 +1982 104 2.36487 +1982 105 2.91114 +1982 106 1.49092 +1982 107 1.18054 +1982 108 0.98404 +1982 109 1.55857 +1982 110 1.51933 +1982 111 2.57756 +1982 112 2.60378 +1982 113 1.80641 +1982 114 1.36628 +1982 115 0.85407 +1982 116 1.45676 +1982 117 1.02574 +1982 118 2.72443 +1982 119 1.63070 +1982 120 1.82611 +1982 121 4.21229 +1982 122 1.36856 +1982 123 0.52987 +1982 124 0.25329 +1982 125 0.82153 +1982 126 1.63432 +1982 127 2.51274 +1982 128 1.84256 +1982 129 1.70812 +1982 130 1.73771 +1982 131 2.37097 +1982 132 3.09151 +1982 133 1.98285 +1982 134 1.85738 +1982 135 2.53184 +1982 136 2.82676 +1982 137 3.83021 +1982 138 3.98661 +1982 139 4.67336 +1982 140 2.75997 +1982 141 3.21730 +1982 142 3.38403 +1982 143 3.96295 +1982 144 4.16741 +1982 145 3.74298 +1982 146 4.13215 +1982 147 1.44853 +1982 148 0.68534 +1982 149 0.56878 +1982 150 0.82090 +1982 151 1.10737 +1982 152 1.16734 +1982 153 3.48108 +1982 154 4.02551 +1982 155 0.83433 +1982 156 3.83801 +1982 157 1.89348 +1982 158 1.41114 +1982 159 1.84538 +1982 160 1.62067 +1982 161 1.24824 +1982 162 1.46853 +1982 163 2.36932 +1982 164 2.12355 +1982 165 2.10716 +1982 166 2.74880 +1982 167 3.04348 +1982 168 2.80042 +1982 169 2.36449 +1982 170 1.54408 +1982 171 1.62712 +1982 172 3.39988 +1982 173 0.75770 +1982 174 1.83565 +1982 175 1.71199 +1982 176 1.81337 +1982 177 1.63653 +1982 178 0.26714 +1982 179 1.37752 +1982 180 2.55929 +1982 181 3.11663 +1982 182 3.87053 +1982 183 3.76383 +1982 184 2.99330 +1982 185 1.47474 +1982 186 0.59966 +1982 187 0.93837 +1982 188 1.31329 +1982 189 2.19160 +1982 190 1.66460 +1982 191 1.93287 +1982 192 1.57125 +1982 193 3.25817 +1982 194 3.67167 +1982 195 3.73536 +1982 196 4.80272 +1982 197 4.33558 +1982 198 3.21717 +1982 199 2.16162 +1982 200 2.24874 +1982 201 1.54257 +1982 202 2.44590 +1982 203 2.08362 +1982 204 1.27814 +1982 205 0.23857 +1982 206 0.86957 +1982 207 2.22676 +1982 208 5.43764 +1982 209 5.42938 +1982 210 2.13430 +1982 211 2.23046 +1982 212 2.14459 +1982 213 5.49036 +1982 214 3.44000 +1982 215 1.95414 +1982 216 1.74652 +1982 217 0.63202 +1982 218 2.47624 +1982 219 3.18920 +1982 220 1.64083 +1982 221 2.93761 +1982 222 1.91398 +1982 223 0.48575 +1982 224 2.03528 +1982 225 1.90689 +1982 226 1.74458 +1982 227 1.63414 +1982 228 1.05696 +1982 229 1.82177 +1982 230 2.07318 +1982 231 3.28293 +1982 232 1.81740 +1982 233 3.82912 +1982 234 3.77426 +1982 235 1.87769 +1982 236 2.97243 +1982 237 2.13599 +1982 238 1.23321 +1982 239 1.66358 +1982 240 1.50215 +1982 241 0.61672 +1982 242 2.13959 +1982 243 1.90593 +1982 244 2.62761 +1982 245 1.04998 +1982 246 1.46095 +1982 247 2.67787 +1982 248 2.67640 +1982 249 0.35044 +1982 250 2.87717 +1982 251 3.19705 +1982 252 0.70159 +1982 253 2.73343 +1982 254 2.43523 +1982 255 1.78421 +1982 256 2.03136 +1982 257 2.96356 +1982 258 1.15463 +1982 259 0.45381 +1982 260 1.28641 +1982 261 2.22226 +1982 262 1.64934 +1982 263 1.78842 +1982 264 0.67352 +1982 265 1.98802 +1982 266 1.54725 +1982 267 3.13466 +1982 268 3.32083 +1982 269 3.07225 +1982 270 2.81051 +1982 271 0.48071 +1982 272 0.52282 +1982 273 1.54144 +1982 274 2.14054 +1982 275 4.82743 +1982 276 3.78891 +1982 277 1.90287 +1982 278 0.37342 +1982 279 1.41867 +1982 280 2.93785 +1982 281 4.06893 +1982 282 4.27779 +1982 283 4.96099 +1982 284 4.55036 +1982 285 4.05804 +1982 286 2.83112 +1982 287 1.04891 +1982 288 4.67608 +1982 289 4.01711 +1982 290 2.30838 +1982 291 4.79431 +1982 292 3.01428 +1982 293 0.76121 +1982 294 2.39992 +1982 295 2.54886 +1982 296 3.17501 +1982 297 3.40359 +1982 298 2.00964 +1982 299 2.36337 +1982 300 3.37670 +1982 301 4.18732 +1982 302 0.39916 +1982 303 2.08613 +1982 304 3.08741 +1982 305 3.09578 +1982 306 2.28026 +1982 307 2.31612 +1982 308 3.54861 +1982 309 4.57133 +1982 310 4.14973 +1982 311 2.50573 +1982 312 2.19023 +1982 313 1.51235 +1982 314 1.95845 +1982 315 2.63403 +1982 316 3.52007 +1982 317 3.36368 +1982 318 3.71400 +1982 319 1.44862 +1982 320 3.98574 +1982 321 4.23636 +1982 322 4.34453 +1982 323 4.31709 +1982 324 5.42925 +1982 325 5.44593 +1982 326 5.29521 +1982 327 5.14856 +1982 328 4.18246 +1982 329 4.24033 +1982 330 3.74715 +1982 331 3.97424 +1982 332 2.77325 +1982 333 2.64042 +1982 334 0.92831 +1982 335 2.45151 +1982 336 2.46313 +1982 337 0.34635 +1982 338 3.06521 +1982 339 2.35319 +1982 340 2.75857 +1982 341 2.67991 +1982 342 0.69517 +1982 343 1.55314 +1982 344 4.12179 +1982 345 5.22009 +1982 346 5.52607 +1982 347 1.07268 +1982 348 2.71665 +1982 349 2.10577 +1982 350 2.51095 +1982 351 3.32797 +1982 352 3.66820 +1982 353 3.25405 +1982 354 4.19761 +1982 355 3.52719 +1982 356 4.24645 +1982 357 4.24735 +1982 358 4.13691 +1982 359 3.79504 +1982 360 4.48073 +1982 361 2.51262 +1982 362 3.34886 +1982 363 3.36920 +1982 364 1.52989 +1982 365 0.91823 +1983 1 1.13595 +1983 2 1.77958 +1983 3 2.74491 +1983 4 3.28472 +1983 5 4.44294 +1983 6 4.45415 +1983 7 4.84504 +1983 8 3.96732 +1983 9 3.31403 +1983 10 2.52341 +1983 11 0.87994 +1983 12 1.38327 +1983 13 4.39570 +1983 14 3.83652 +1983 15 4.78039 +1983 16 4.39099 +1983 17 3.36401 +1983 18 3.45872 +1983 19 3.79160 +1983 20 3.58444 +1983 21 5.02892 +1983 22 4.99143 +1983 23 2.56888 +1983 24 3.36071 +1983 25 1.15308 +1983 26 1.30514 +1983 27 2.52008 +1983 28 3.73805 +1983 29 4.01479 +1983 30 5.24973 +1983 31 2.86064 +1983 32 1.38638 +1983 33 2.55840 +1983 34 3.87651 +1983 35 5.32613 +1983 36 4.36212 +1983 37 5.09998 +1983 38 5.47625 +1983 39 4.34247 +1983 40 4.34731 +1983 41 2.08499 +1983 42 2.62036 +1983 43 0.64108 +1983 44 0.39921 +1983 45 1.64587 +1983 46 2.22899 +1983 47 3.23149 +1983 48 2.51983 +1983 49 1.21350 +1983 50 1.07643 +1983 51 1.06689 +1983 52 0.73680 +1983 53 1.59334 +1983 54 1.74152 +1983 55 0.66204 +1983 56 0.98421 +1983 57 1.49214 +1983 58 1.99653 +1983 59 3.17898 +1983 60 3.53875 +1983 61 4.73975 +1983 62 3.06326 +1983 63 0.77751 +1983 64 2.67584 +1983 65 1.79216 +1983 66 3.52406 +1983 67 3.94631 +1983 68 3.30823 +1983 69 0.46392 +1983 70 1.32278 +1983 71 1.42165 +1983 72 1.65898 +1983 73 2.92344 +1983 74 1.70948 +1983 75 1.33567 +1983 76 1.64805 +1983 77 1.75762 +1983 78 0.93831 +1983 79 1.08255 +1983 80 1.24537 +1983 81 1.50842 +1983 82 2.48853 +1983 83 3.95150 +1983 84 3.79117 +1983 85 4.12580 +1983 86 3.40840 +1983 87 3.85395 +1983 88 1.77696 +1983 89 0.56815 +1983 90 2.36391 +1983 91 2.27333 +1983 92 2.34949 +1983 93 1.34458 +1983 94 3.36792 +1983 95 1.79092 +1983 96 3.47707 +1983 97 2.63324 +1983 98 2.56733 +1983 99 3.68187 +1983 100 1.53545 +1983 101 0.22121 +1983 102 0.98848 +1983 103 1.94883 +1983 104 3.44800 +1983 105 1.32441 +1983 106 0.61846 +1983 107 2.26475 +1983 108 3.47104 +1983 109 1.80985 +1983 110 0.58850 +1983 111 2.32070 +1983 112 2.25825 +1983 113 3.49456 +1983 114 3.49489 +1983 115 2.17944 +1983 116 3.20167 +1983 117 3.05765 +1983 118 0.80352 +1983 119 2.47420 +1983 120 1.72754 +1983 121 3.35172 +1983 122 3.60700 +1983 123 0.66399 +1983 124 2.78502 +1983 125 4.46554 +1983 126 5.55563 +1983 127 3.69226 +1983 128 3.00493 +1983 129 4.20333 +1983 130 2.60573 +1983 131 2.93485 +1983 132 3.91465 +1983 133 2.02567 +1983 134 1.49237 +1983 135 0.44044 +1983 136 2.15953 +1983 137 2.01516 +1983 138 0.70433 +1983 139 3.29163 +1983 140 2.92141 +1983 141 3.43209 +1983 142 4.66660 +1983 143 2.60578 +1983 144 0.76732 +1983 145 2.86158 +1983 146 3.67429 +1983 147 3.85689 +1983 148 1.56357 +1983 149 2.36220 +1983 150 4.14548 +1983 151 4.15335 +1983 152 3.40353 +1983 153 2.33532 +1983 154 1.46747 +1983 155 1.08679 +1983 156 2.83797 +1983 157 4.28571 +1983 158 5.01500 +1983 159 5.42699 +1983 160 3.16833 +1983 161 1.09933 +1983 162 0.97225 +1983 163 1.41269 +1983 164 1.24104 +1983 165 2.45994 +1983 166 2.00848 +1983 167 3.75384 +1983 168 4.63667 +1983 169 2.83856 +1983 170 2.64967 +1983 171 2.51336 +1983 172 2.51395 +1983 173 2.92440 +1983 174 1.18569 +1983 175 1.96448 +1983 176 0.53660 +1983 177 3.45399 +1983 178 3.12246 +1983 179 0.28473 +1983 180 2.19437 +1983 181 2.17428 +1983 182 2.06691 +1983 183 2.66083 +1983 184 2.66848 +1983 185 2.23154 +1983 186 1.73202 +1983 187 1.25932 +1983 188 1.95524 +1983 189 5.84321 +1983 190 3.93357 +1983 191 1.17327 +1983 192 3.16749 +1983 193 2.53422 +1983 194 1.51754 +1983 195 1.44685 +1983 196 2.09446 +1983 197 2.12886 +1983 198 2.38229 +1983 199 2.64169 +1983 200 2.39749 +1983 201 1.11509 +1983 202 0.07489 +1983 203 0.46563 +1983 204 2.41140 +1983 205 3.26853 +1983 206 1.75048 +1983 207 1.35211 +1983 208 1.42840 +1983 209 1.18995 +1983 210 0.43703 +1983 211 0.64872 +1983 212 2.22930 +1983 213 2.68679 +1983 214 3.34833 +1983 215 0.91244 +1983 216 2.22263 +1983 217 2.46514 +1983 218 2.95512 +1983 219 3.04643 +1983 220 2.06379 +1983 221 1.73016 +1983 222 1.21280 +1983 223 1.87098 +1983 224 3.67729 +1983 225 3.71825 +1983 226 2.38587 +1983 227 2.22053 +1983 228 0.66419 +1983 229 0.57943 +1983 230 1.66472 +1983 231 2.56571 +1983 232 2.26431 +1983 233 1.89405 +1983 234 1.71727 +1983 235 2.21169 +1983 236 2.56197 +1983 237 2.49669 +1983 238 2.07405 +1983 239 1.23265 +1983 240 1.68180 +1983 241 2.37361 +1983 242 1.94892 +1983 243 3.18863 +1983 244 4.83736 +1983 245 4.30687 +1983 246 2.39354 +1983 247 1.10640 +1983 248 2.18041 +1983 249 1.27194 +1983 250 2.87486 +1983 251 2.18973 +1983 252 3.79863 +1983 253 5.00869 +1983 254 2.60721 +1983 255 4.01034 +1983 256 4.10659 +1983 257 2.95253 +1983 258 2.36593 +1983 259 3.18463 +1983 260 2.48006 +1983 261 2.66232 +1983 262 2.98838 +1983 263 3.12700 +1983 264 2.77343 +1983 265 2.19230 +1983 266 2.07330 +1983 267 2.79187 +1983 268 2.90588 +1983 269 1.06831 +1983 270 2.32042 +1983 271 1.88143 +1983 272 3.00685 +1983 273 2.87318 +1983 274 3.52196 +1983 275 3.52596 +1983 276 2.14840 +1983 277 1.62141 +1983 278 2.18781 +1983 279 3.26580 +1983 280 4.61785 +1983 281 1.99800 +1983 282 3.04283 +1983 283 2.76491 +1983 284 1.16525 +1983 285 1.33834 +1983 286 1.53749 +1983 287 2.95660 +1983 288 2.09428 +1983 289 1.11013 +1983 290 0.78158 +1983 291 1.97002 +1983 292 3.26267 +1983 293 5.55863 +1983 294 2.07370 +1983 295 4.05919 +1983 296 4.97945 +1983 297 2.67838 +1983 298 2.59892 +1983 299 2.31874 +1983 300 2.50400 +1983 301 1.91111 +1983 302 1.79024 +1983 303 2.70116 +1983 304 3.80977 +1983 305 1.50251 +1983 306 2.25349 +1983 307 2.40766 +1983 308 3.78118 +1983 309 2.48568 +1983 310 1.73424 +1983 311 2.61226 +1983 312 2.91779 +1983 313 1.88152 +1983 314 1.63764 +1983 315 2.54366 +1983 316 0.68197 +1983 317 4.16012 +1983 318 2.62747 +1983 319 0.56415 +1983 320 1.17198 +1983 321 1.85329 +1983 322 2.29073 +1983 323 2.20731 +1983 324 0.51260 +1983 325 2.34225 +1983 326 2.56030 +1983 327 1.71813 +1983 328 0.58324 +1983 329 1.59190 +1983 330 2.00676 +1983 331 3.37228 +1983 332 1.73853 +1983 333 0.92833 +1983 334 0.96330 +1983 335 1.91877 +1983 336 1.93019 +1983 337 2.40952 +1983 338 1.02961 +1983 339 4.37015 +1983 340 6.17216 +1983 341 5.17654 +1983 342 5.09453 +1983 343 2.02318 +1983 344 0.51739 +1983 345 2.48910 +1983 346 2.32661 +1983 347 2.52805 +1983 348 3.76312 +1983 349 2.19526 +1983 350 3.14761 +1983 351 2.47006 +1983 352 1.80786 +1983 353 3.49890 +1983 354 2.83869 +1983 355 3.67599 +1983 356 3.38582 +1983 357 4.59507 +1983 358 3.67330 +1983 359 2.69085 +1983 360 3.00415 +1983 361 3.32313 +1983 362 2.66737 +1983 363 0.91584 +1983 364 3.14844 +1983 365 3.36059 +1984 1 0.40323 +1984 2 0.71851 +1984 3 2.11434 +1984 4 3.30568 +1984 5 1.63108 +1984 6 2.84521 +1984 7 0.82579 +1984 8 1.84498 +1984 9 2.50792 +1984 10 2.97335 +1984 11 2.58460 +1984 12 3.48604 +1984 13 2.18528 +1984 14 2.65343 +1984 15 1.64432 +1984 16 1.24503 +1984 17 2.21106 +1984 18 3.22707 +1984 19 1.94416 +1984 20 2.09962 +1984 21 0.54737 +1984 22 2.49935 +1984 23 3.34340 +1984 24 1.65313 +1984 25 2.42928 +1984 26 3.26836 +1984 27 2.43864 +1984 28 1.75982 +1984 29 3.36432 +1984 30 2.91880 +1984 31 2.18847 +1984 32 0.69994 +1984 33 1.10465 +1984 34 3.97164 +1984 35 2.56703 +1984 36 0.98222 +1984 37 1.94778 +1984 38 1.25392 +1984 39 1.47978 +1984 40 2.51411 +1984 41 3.80510 +1984 42 2.34947 +1984 43 3.28817 +1984 44 3.25790 +1984 45 2.83204 +1984 46 1.58745 +1984 47 1.18492 +1984 48 1.67466 +1984 49 0.85097 +1984 50 2.50571 +1984 51 2.64608 +1984 52 0.42616 +1984 53 1.23893 +1984 54 2.05935 +1984 55 1.28592 +1984 56 1.22639 +1984 57 1.59805 +1984 58 1.90357 +1984 59 2.84627 +1984 60 2.55928 +1984 61 2.17358 +1984 62 2.14927 +1984 63 2.62050 +1984 64 1.38573 +1984 65 2.87867 +1984 66 1.15543 +1984 67 0.67375 +1984 68 2.18830 +1984 69 2.23858 +1984 70 0.60114 +1984 71 1.60099 +1984 72 1.52090 +1984 73 1.57128 +1984 74 2.73667 +1984 75 2.33779 +1984 76 3.07309 +1984 77 2.66532 +1984 78 0.82231 +1984 79 0.98471 +1984 80 1.35901 +1984 81 1.11829 +1984 82 3.42414 +1984 83 3.72721 +1984 84 1.95321 +1984 85 2.01152 +1984 86 1.93706 +1984 87 3.37300 +1984 88 4.71118 +1984 89 5.45360 +1984 90 5.00156 +1984 91 1.97105 +1984 92 0.99763 +1984 93 2.14330 +1984 94 0.93552 +1984 95 0.76596 +1984 96 2.63226 +1984 97 3.24491 +1984 98 3.96746 +1984 99 3.56546 +1984 100 2.36586 +1984 101 0.43325 +1984 102 0.91721 +1984 103 0.72444 +1984 104 0.63306 +1984 105 0.81954 +1984 106 0.41055 +1984 107 2.77253 +1984 108 2.88049 +1984 109 2.37281 +1984 110 2.36725 +1984 111 3.59591 +1984 112 3.39199 +1984 113 1.92691 +1984 114 0.74152 +1984 115 1.17696 +1984 116 1.91719 +1984 117 2.84491 +1984 118 2.74647 +1984 119 1.68698 +1984 120 1.89011 +1984 121 5.77563 +1984 122 6.32364 +1984 123 2.56392 +1984 124 1.50493 +1984 125 1.77717 +1984 126 1.95013 +1984 127 0.63106 +1984 128 0.82729 +1984 129 2.21060 +1984 130 2.34767 +1984 131 3.28390 +1984 132 1.68473 +1984 133 0.82397 +1984 134 2.29392 +1984 135 3.12363 +1984 136 1.75874 +1984 137 0.65897 +1984 138 1.22023 +1984 139 1.35658 +1984 140 4.39912 +1984 141 2.07770 +1984 142 2.06296 +1984 143 3.70060 +1984 144 1.52455 +1984 145 3.76025 +1984 146 2.31494 +1984 147 1.11318 +1984 148 2.16905 +1984 149 3.39705 +1984 150 3.46197 +1984 151 2.08474 +1984 152 1.09827 +1984 153 1.43037 +1984 154 1.31684 +1984 155 2.25882 +1984 156 0.57567 +1984 157 3.82434 +1984 158 5.92548 +1984 159 1.36892 +1984 160 3.57925 +1984 161 3.76204 +1984 162 2.69263 +1984 163 3.02062 +1984 164 2.79063 +1984 165 1.66855 +1984 166 1.85216 +1984 167 2.31528 +1984 168 2.07935 +1984 169 2.83659 +1984 170 1.37147 +1984 171 2.28801 +1984 172 1.59728 +1984 173 1.97101 +1984 174 0.73759 +1984 175 2.95407 +1984 176 1.16563 +1984 177 2.20458 +1984 178 2.07686 +1984 179 0.98907 +1984 180 3.22594 +1984 181 3.86217 +1984 182 1.96988 +1984 183 1.04025 +1984 184 1.01609 +1984 185 0.66493 +1984 186 1.93144 +1984 187 2.16561 +1984 188 1.05615 +1984 189 2.17595 +1984 190 1.84988 +1984 191 1.86139 +1984 192 0.35259 +1984 193 3.09411 +1984 194 2.49547 +1984 195 2.62872 +1984 196 3.64013 +1984 197 4.13775 +1984 198 2.54221 +1984 199 0.92576 +1984 200 0.85886 +1984 201 1.54066 +1984 202 2.47081 +1984 203 4.55671 +1984 204 2.15078 +1984 205 1.80366 +1984 206 0.94156 +1984 207 1.73127 +1984 208 2.18140 +1984 209 1.43848 +1984 210 0.64651 +1984 211 2.61961 +1984 212 2.49721 +1984 213 5.29056 +1984 214 5.10321 +1984 215 2.91713 +1984 216 3.64215 +1984 217 4.04955 +1984 218 4.55711 +1984 219 0.57837 +1984 220 2.10113 +1984 221 2.16015 +1984 222 3.23214 +1984 223 3.96167 +1984 224 4.33387 +1984 225 5.00407 +1984 226 5.36374 +1984 227 5.07390 +1984 228 1.79410 +1984 229 1.42126 +1984 230 0.04384 +1984 231 0.91334 +1984 232 1.29397 +1984 233 1.58951 +1984 234 2.70273 +1984 235 4.22966 +1984 236 2.18704 +1984 237 1.67783 +1984 238 1.60298 +1984 239 2.88589 +1984 240 0.75917 +1984 241 0.39523 +1984 242 2.91511 +1984 243 1.20373 +1984 244 2.28029 +1984 245 1.45690 +1984 246 0.81705 +1984 247 0.94613 +1984 248 1.01188 +1984 249 1.95343 +1984 250 2.17681 +1984 251 2.29219 +1984 252 0.80460 +1984 253 1.89289 +1984 254 1.65360 +1984 255 2.34956 +1984 256 2.62557 +1984 257 2.95159 +1984 258 1.51016 +1984 259 2.27327 +1984 260 2.60295 +1984 261 3.14930 +1984 262 2.73578 +1984 263 2.97051 +1984 264 2.83674 +1984 265 2.14798 +1984 266 1.71406 +1984 267 1.12979 +1984 268 2.87130 +1984 269 2.75322 +1984 270 1.69436 +1984 271 4.90645 +1984 272 2.35956 +1984 273 2.20680 +1984 274 4.22664 +1984 275 3.35179 +1984 276 2.76394 +1984 277 2.33105 +1984 278 1.68593 +1984 279 2.68722 +1984 280 2.77397 +1984 281 3.53183 +1984 282 3.10111 +1984 283 3.66895 +1984 284 4.54040 +1984 285 4.09979 +1984 286 3.37837 +1984 287 3.79811 +1984 288 2.79149 +1984 289 2.12158 +1984 290 3.17818 +1984 291 4.02124 +1984 292 4.08070 +1984 293 3.40650 +1984 294 4.00411 +1984 295 5.00530 +1984 296 3.16034 +1984 297 0.39341 +1984 298 0.60148 +1984 299 1.65547 +1984 300 2.43778 +1984 301 0.55675 +1984 302 2.29991 +1984 303 2.12255 +1984 304 1.22488 +1984 305 1.23672 +1984 306 2.11713 +1984 307 2.30814 +1984 308 2.16070 +1984 309 2.22810 +1984 310 1.59612 +1984 311 1.37384 +1984 312 1.71302 +1984 313 1.24948 +1984 314 1.97415 +1984 315 2.29843 +1984 316 3.33295 +1984 317 2.86341 +1984 318 2.62415 +1984 319 2.81833 +1984 320 3.03864 +1984 321 3.63134 +1984 322 5.05812 +1984 323 4.30732 +1984 324 2.97275 +1984 325 3.34849 +1984 326 3.07529 +1984 327 3.62532 +1984 328 3.66864 +1984 329 2.27039 +1984 330 3.91129 +1984 331 2.48275 +1984 332 0.95716 +1984 333 1.36816 +1984 334 1.25244 +1984 335 0.59138 +1984 336 1.44659 +1984 337 1.35098 +1984 338 2.26313 +1984 339 3.04206 +1984 340 2.69388 +1984 341 1.57307 +1984 342 1.73843 +1984 343 1.30326 +1984 344 4.35633 +1984 345 2.63446 +1984 346 4.38702 +1984 347 2.74919 +1984 348 3.92640 +1984 349 1.91237 +1984 350 3.34289 +1984 351 3.46361 +1984 352 2.90223 +1984 353 1.74718 +1984 354 1.27082 +1984 355 2.62275 +1984 356 1.89640 +1984 357 2.17945 +1984 358 0.09936 +1984 359 1.31152 +1984 360 0.58851 +1984 361 1.34035 +1984 362 1.21331 +1984 363 0.97760 +1984 364 1.20080 +1984 365 0.57711 +1984 366 2.01910 +1985 1 1.58024 +1985 2 1.15576 +1985 3 3.39654 +1985 4 4.28697 +1985 5 3.07953 +1985 6 2.65359 +1985 7 2.92855 +1985 8 1.50684 +1985 9 1.63961 +1985 10 3.55697 +1985 11 3.03558 +1985 12 2.67414 +1985 13 1.82625 +1985 14 0.36391 +1985 15 1.38736 +1985 16 1.32452 +1985 17 0.33575 +1985 18 2.02146 +1985 19 2.40127 +1985 20 3.22015 +1985 21 3.40025 +1985 22 3.57378 +1985 23 3.21573 +1985 24 2.90872 +1985 25 2.36885 +1985 26 0.14272 +1985 27 0.41961 +1985 28 1.11996 +1985 29 2.46520 +1985 30 0.82375 +1985 31 1.66623 +1985 32 2.72034 +1985 33 2.75471 +1985 34 0.64116 +1985 35 0.60220 +1985 36 0.95043 +1985 37 1.05844 +1985 38 1.27271 +1985 39 2.47525 +1985 40 0.61620 +1985 41 2.78582 +1985 42 3.70176 +1985 43 1.20323 +1985 44 2.29902 +1985 45 3.01478 +1985 46 4.75680 +1985 47 2.51695 +1985 48 2.89035 +1985 49 3.79083 +1985 50 1.26151 +1985 51 0.10386 +1985 52 1.47911 +1985 53 1.50359 +1985 54 1.15991 +1985 55 1.35524 +1985 56 2.50674 +1985 57 3.91279 +1985 58 4.03803 +1985 59 3.76857 +1985 60 2.55897 +1985 61 2.30368 +1985 62 2.12641 +1985 63 2.27956 +1985 64 1.80018 +1985 65 0.82364 +1985 66 3.71636 +1985 67 3.67240 +1985 68 1.11698 +1985 69 0.55136 +1985 70 0.89494 +1985 71 2.94800 +1985 72 3.96015 +1985 73 4.34645 +1985 74 3.89799 +1985 75 2.20898 +1985 76 2.48499 +1985 77 1.31725 +1985 78 2.18715 +1985 79 0.77578 +1985 80 3.19748 +1985 81 3.29980 +1985 82 0.91913 +1985 83 1.52442 +1985 84 3.95538 +1985 85 4.59276 +1985 86 1.55407 +1985 87 0.68096 +1985 88 3.24177 +1985 89 2.28338 +1985 90 0.18857 +1985 91 1.30182 +1985 92 1.79054 +1985 93 4.70598 +1985 94 1.45964 +1985 95 2.37749 +1985 96 0.98576 +1985 97 1.21657 +1985 98 1.74535 +1985 99 1.82794 +1985 100 1.86584 +1985 101 1.43291 +1985 102 0.78560 +1985 103 1.12985 +1985 104 2.22908 +1985 105 2.83541 +1985 106 3.42705 +1985 107 4.59522 +1985 108 3.89041 +1985 109 4.27625 +1985 110 2.90819 +1985 111 4.43672 +1985 112 2.37392 +1985 113 2.10667 +1985 114 0.67762 +1985 115 2.57677 +1985 116 1.82662 +1985 117 2.25547 +1985 118 2.78426 +1985 119 3.23348 +1985 120 2.91982 +1985 121 2.31659 +1985 122 2.43590 +1985 123 1.72526 +1985 124 0.50826 +1985 125 1.26644 +1985 126 2.73316 +1985 127 1.79713 +1985 128 0.28333 +1985 129 1.10382 +1985 130 1.27144 +1985 131 2.29654 +1985 132 1.52656 +1985 133 0.70655 +1985 134 5.13616 +1985 135 3.94937 +1985 136 2.14185 +1985 137 0.73004 +1985 138 0.66108 +1985 139 0.28296 +1985 140 1.38298 +1985 141 2.39944 +1985 142 1.88798 +1985 143 2.22600 +1985 144 1.97335 +1985 145 2.84100 +1985 146 2.51342 +1985 147 2.46540 +1985 148 3.55494 +1985 149 3.39828 +1985 150 3.17745 +1985 151 3.43190 +1985 152 3.58824 +1985 153 2.00283 +1985 154 0.07280 +1985 155 2.40051 +1985 156 2.19812 +1985 157 2.15670 +1985 158 2.94128 +1985 159 2.08143 +1985 160 1.71986 +1985 161 2.09709 +1985 162 1.04678 +1985 163 1.58209 +1985 164 4.03044 +1985 165 4.72230 +1985 166 1.20404 +1985 167 1.47035 +1985 168 1.74645 +1985 169 1.11305 +1985 170 1.18105 +1985 171 3.25542 +1985 172 4.23237 +1985 173 2.31247 +1985 174 3.28714 +1985 175 3.19494 +1985 176 2.21256 +1985 177 0.96849 +1985 178 1.97126 +1985 179 1.25609 +1985 180 1.08372 +1985 181 1.41489 +1985 182 1.82331 +1985 183 0.88146 +1985 184 2.04320 +1985 185 1.95134 +1985 186 2.00038 +1985 187 2.92465 +1985 188 3.90953 +1985 189 3.39588 +1985 190 2.07056 +1985 191 1.40042 +1985 192 3.93203 +1985 193 0.71881 +1985 194 2.24464 +1985 195 0.51488 +1985 196 1.72581 +1985 197 2.08112 +1985 198 1.83278 +1985 199 1.26513 +1985 200 4.68376 +1985 201 3.66311 +1985 202 2.97769 +1985 203 3.07275 +1985 204 0.30918 +1985 205 3.89294 +1985 206 3.03947 +1985 207 2.88036 +1985 208 4.60326 +1985 209 2.72091 +1985 210 1.85714 +1985 211 2.07903 +1985 212 1.33776 +1985 213 0.89065 +1985 214 2.10224 +1985 215 2.57897 +1985 216 2.31077 +1985 217 1.99160 +1985 218 2.20395 +1985 219 2.70899 +1985 220 4.11633 +1985 221 3.47772 +1985 222 0.84965 +1985 223 2.49125 +1985 224 1.91405 +1985 225 2.83318 +1985 226 2.47163 +1985 227 1.07750 +1985 228 1.37950 +1985 229 1.52940 +1985 230 5.36577 +1985 231 3.75305 +1985 232 5.80002 +1985 233 2.71450 +1985 234 1.52530 +1985 235 0.89010 +1985 236 3.97726 +1985 237 2.34047 +1985 238 2.32342 +1985 239 2.19492 +1985 240 3.18122 +1985 241 0.23450 +1985 242 0.90423 +1985 243 1.46311 +1985 244 1.37474 +1985 245 5.36614 +1985 246 4.71235 +1985 247 3.84910 +1985 248 3.85007 +1985 249 2.32635 +1985 250 4.90524 +1985 251 4.06708 +1985 252 4.26024 +1985 253 1.31509 +1985 254 0.52912 +1985 255 0.57131 +1985 256 0.80606 +1985 257 2.30405 +1985 258 4.66480 +1985 259 5.82784 +1985 260 5.23281 +1985 261 3.63110 +1985 262 1.78849 +1985 263 1.11366 +1985 264 1.16746 +1985 265 2.11540 +1985 266 3.13349 +1985 267 4.06737 +1985 268 4.86871 +1985 269 3.03256 +1985 270 3.79218 +1985 271 3.74970 +1985 272 3.18719 +1985 273 0.59346 +1985 274 1.86970 +1985 275 1.90124 +1985 276 0.90001 +1985 277 0.89284 +1985 278 1.23782 +1985 279 2.88790 +1985 280 2.49997 +1985 281 0.86595 +1985 282 3.94994 +1985 283 1.00001 +1985 284 0.84748 +1985 285 2.73477 +1985 286 3.91469 +1985 287 2.90268 +1985 288 2.11725 +1985 289 1.46353 +1985 290 1.29229 +1985 291 1.12415 +1985 292 1.79952 +1985 293 1.85953 +1985 294 1.94568 +1985 295 2.80626 +1985 296 2.62228 +1985 297 1.20094 +1985 298 3.29057 +1985 299 4.27622 +1985 300 1.40915 +1985 301 0.70051 +1985 302 0.70677 +1985 303 1.42694 +1985 304 3.15217 +1985 305 3.62090 +1985 306 3.64671 +1985 307 4.17698 +1985 308 3.86557 +1985 309 0.55917 +1985 310 2.24431 +1985 311 0.27467 +1985 312 0.85116 +1985 313 0.90607 +1985 314 1.84042 +1985 315 2.00574 +1985 316 0.53838 +1985 317 1.02814 +1985 318 0.96867 +1985 319 0.99092 +1985 320 1.21238 +1985 321 2.00765 +1985 322 3.58418 +1985 323 2.49026 +1985 324 5.11180 +1985 325 2.50522 +1985 326 3.18446 +1985 327 3.20189 +1985 328 2.91139 +1985 329 1.59880 +1985 330 1.89146 +1985 331 0.40277 +1985 332 1.28651 +1985 333 1.48003 +1985 334 2.28822 +1985 335 3.22970 +1985 336 2.94672 +1985 337 1.99313 +1985 338 1.43019 +1985 339 1.51029 +1985 340 1.66753 +1985 341 1.54071 +1985 342 2.95104 +1985 343 1.31196 +1985 344 0.36325 +1985 345 0.40340 +1985 346 1.66850 +1985 347 1.56693 +1985 348 1.37666 +1985 349 1.08300 +1985 350 2.56678 +1985 351 0.60348 +1985 352 1.84420 +1985 353 2.08645 +1985 354 2.10560 +1985 355 2.06680 +1985 356 3.74681 +1985 357 2.91167 +1985 358 1.62782 +1985 359 2.87021 +1985 360 2.98579 +1985 361 2.01503 +1985 362 2.00703 +1985 363 2.48052 +1985 364 0.74742 +1985 365 1.37619 +1986 1 2.59995 +1986 2 2.27031 +1986 3 2.76827 +1986 4 1.84944 +1986 5 0.28880 +1986 6 1.22720 +1986 7 2.36716 +1986 8 3.11425 +1986 9 2.86294 +1986 10 0.95337 +1986 11 1.66490 +1986 12 2.77927 +1986 13 2.85548 +1986 14 1.85765 +1986 15 1.54428 +1986 16 1.68199 +1986 17 1.23440 +1986 18 0.77049 +1986 19 1.94857 +1986 20 1.74009 +1986 21 1.58516 +1986 22 1.83865 +1986 23 2.60924 +1986 24 5.68910 +1986 25 4.09131 +1986 26 2.55318 +1986 27 3.74411 +1986 28 3.71241 +1986 29 0.87478 +1986 30 1.74435 +1986 31 3.12826 +1986 32 4.34845 +1986 33 1.26921 +1986 34 1.45991 +1986 35 0.38345 +1986 36 0.76703 +1986 37 2.63978 +1986 38 2.28044 +1986 39 0.93198 +1986 40 0.10682 +1986 41 1.11190 +1986 42 2.26501 +1986 43 3.35538 +1986 44 2.01248 +1986 45 1.28066 +1986 46 3.17604 +1986 47 1.99849 +1986 48 2.64853 +1986 49 3.29666 +1986 50 2.76630 +1986 51 3.14727 +1986 52 2.42751 +1986 53 0.90660 +1986 54 2.72414 +1986 55 3.62118 +1986 56 1.95689 +1986 57 0.69970 +1986 58 0.49579 +1986 59 2.13182 +1986 60 1.22056 +1986 61 1.91061 +1986 62 1.24881 +1986 63 3.92954 +1986 64 3.57873 +1986 65 2.81518 +1986 66 0.57866 +1986 67 1.74003 +1986 68 1.63722 +1986 69 1.31777 +1986 70 2.03938 +1986 71 1.68159 +1986 72 1.39750 +1986 73 2.09787 +1986 74 2.91975 +1986 75 3.03832 +1986 76 1.09677 +1986 77 1.36716 +1986 78 0.47703 +1986 79 0.73436 +1986 80 2.13710 +1986 81 1.84551 +1986 82 2.53995 +1986 83 3.96275 +1986 84 0.86952 +1986 85 0.83945 +1986 86 1.64176 +1986 87 0.81132 +1986 88 1.51199 +1986 89 1.78108 +1986 90 3.88483 +1986 91 4.62855 +1986 92 3.54683 +1986 93 3.52055 +1986 94 3.26709 +1986 95 3.00631 +1986 96 3.12083 +1986 97 1.64620 +1986 98 0.82375 +1986 99 2.26858 +1986 100 2.07556 +1986 101 2.30393 +1986 102 2.76594 +1986 103 1.96181 +1986 104 2.62126 +1986 105 1.27771 +1986 106 1.91485 +1986 107 0.50990 +1986 108 0.41311 +1986 109 1.59610 +1986 110 1.76720 +1986 111 1.23850 +1986 112 0.43144 +1986 113 0.42549 +1986 114 0.99885 +1986 115 2.47039 +1986 116 2.30381 +1986 117 2.51111 +1986 118 1.91510 +1986 119 2.69338 +1986 120 2.74715 +1986 121 3.30826 +1986 122 2.06722 +1986 123 3.86413 +1986 124 3.04575 +1986 125 2.74895 +1986 126 0.29064 +1986 127 1.07476 +1986 128 0.95095 +1986 129 0.76708 +1986 130 0.32586 +1986 131 1.83560 +1986 132 1.85672 +1986 133 1.83342 +1986 134 1.57197 +1986 135 1.23147 +1986 136 2.76865 +1986 137 2.54671 +1986 138 1.24264 +1986 139 2.92255 +1986 140 2.67977 +1986 141 1.89988 +1986 142 2.32263 +1986 143 0.46969 +1986 144 0.95119 +1986 145 3.13877 +1986 146 3.24825 +1986 147 1.66806 +1986 148 1.88136 +1986 149 3.27592 +1986 150 3.42522 +1986 151 3.58549 +1986 152 0.46263 +1986 153 1.93423 +1986 154 2.38437 +1986 155 3.43765 +1986 156 3.04986 +1986 157 2.36539 +1986 158 0.37120 +1986 159 2.69788 +1986 160 2.78684 +1986 161 1.32207 +1986 162 2.09839 +1986 163 1.46013 +1986 164 1.81300 +1986 165 2.49093 +1986 166 3.51108 +1986 167 2.26951 +1986 168 1.40967 +1986 169 1.79798 +1986 170 4.05767 +1986 171 3.62215 +1986 172 1.78165 +1986 173 1.24137 +1986 174 1.24518 +1986 175 1.18018 +1986 176 2.59286 +1986 177 2.89054 +1986 178 2.95566 +1986 179 2.10901 +1986 180 0.10093 +1986 181 3.32627 +1986 182 4.75028 +1986 183 4.52600 +1986 184 2.14139 +1986 185 1.15256 +1986 186 1.64084 +1986 187 3.38365 +1986 188 2.47652 +1986 189 1.35829 +1986 190 2.20946 +1986 191 2.71320 +1986 192 2.41793 +1986 193 1.82702 +1986 194 1.33762 +1986 195 0.83825 +1986 196 0.69162 +1986 197 0.68562 +1986 198 1.02410 +1986 199 1.54203 +1986 200 1.74489 +1986 201 1.71722 +1986 202 2.45163 +1986 203 1.55904 +1986 204 2.41719 +1986 205 4.55319 +1986 206 3.22741 +1986 207 3.79024 +1986 208 4.15052 +1986 209 4.20984 +1986 210 3.04950 +1986 211 2.15207 +1986 212 2.36887 +1986 213 3.55261 +1986 214 1.31556 +1986 215 1.61360 +1986 216 2.04498 +1986 217 1.10307 +1986 218 1.32904 +1986 219 2.66817 +1986 220 1.95364 +1986 221 1.78227 +1986 222 1.52248 +1986 223 3.68774 +1986 224 3.14973 +1986 225 1.45435 +1986 226 1.78154 +1986 227 1.20024 +1986 228 0.57090 +1986 229 1.55715 +1986 230 3.38291 +1986 231 3.73091 +1986 232 4.81315 +1986 233 3.06907 +1986 234 1.52460 +1986 235 1.33139 +1986 236 2.68594 +1986 237 0.41070 +1986 238 0.57716 +1986 239 1.19449 +1986 240 2.23286 +1986 241 1.85198 +1986 242 0.69263 +1986 243 0.99587 +1986 244 1.71254 +1986 245 3.97085 +1986 246 3.72236 +1986 247 2.73431 +1986 248 2.87774 +1986 249 2.81257 +1986 250 3.41594 +1986 251 1.01718 +1986 252 2.18538 +1986 253 2.74807 +1986 254 2.83881 +1986 255 2.31659 +1986 256 1.27616 +1986 257 3.89565 +1986 258 1.45543 +1986 259 3.03956 +1986 260 3.07827 +1986 261 2.98486 +1986 262 4.11123 +1986 263 4.07025 +1986 264 3.33112 +1986 265 2.60773 +1986 266 2.08461 +1986 267 0.25070 +1986 268 1.04755 +1986 269 1.53741 +1986 270 3.42967 +1986 271 3.08462 +1986 272 4.01477 +1986 273 4.26707 +1986 274 4.52537 +1986 275 4.21096 +1986 276 3.63457 +1986 277 3.40966 +1986 278 2.61852 +1986 279 0.41747 +1986 280 0.66549 +1986 281 0.60994 +1986 282 1.93250 +1986 283 1.80489 +1986 284 3.10305 +1986 285 3.27495 +1986 286 1.76607 +1986 287 1.13468 +1986 288 0.99530 +1986 289 3.12034 +1986 290 3.04345 +1986 291 1.69764 +1986 292 1.87016 +1986 293 2.30536 +1986 294 4.14287 +1986 295 3.45845 +1986 296 2.55648 +1986 297 2.40361 +1986 298 2.20188 +1986 299 3.75227 +1986 300 0.81603 +1986 301 1.70479 +1986 302 1.29535 +1986 303 1.13055 +1986 304 0.86748 +1986 305 1.65793 +1986 306 2.73912 +1986 307 2.42339 +1986 308 2.01343 +1986 309 1.35078 +1986 310 2.03487 +1986 311 4.02028 +1986 312 4.12189 +1986 313 2.74729 +1986 314 1.81386 +1986 315 1.95242 +1986 316 5.47552 +1986 317 3.61085 +1986 318 1.11386 +1986 319 2.23955 +1986 320 1.87076 +1986 321 1.44286 +1986 322 3.28702 +1986 323 1.83980 +1986 324 1.26068 +1986 325 0.81261 +1986 326 2.46761 +1986 327 2.92188 +1986 328 2.93538 +1986 329 2.11326 +1986 330 2.13451 +1986 331 3.20306 +1986 332 3.21361 +1986 333 1.73969 +1986 334 1.47332 +1986 335 1.64659 +1986 336 1.07634 +1986 337 1.30138 +1986 338 1.09212 +1986 339 2.36759 +1986 340 4.22378 +1986 341 2.67650 +1986 342 2.53121 +1986 343 1.92783 +1986 344 1.00076 +1986 345 1.21921 +1986 346 1.29525 +1986 347 1.74133 +1986 348 2.10618 +1986 349 1.15579 +1986 350 1.49339 +1986 351 1.23860 +1986 352 2.07284 +1986 353 2.49614 +1986 354 5.26328 +1986 355 3.21596 +1986 356 2.56141 +1986 357 2.11113 +1986 358 3.30968 +1986 359 3.42444 +1986 360 2.42489 +1986 361 1.56129 +1986 362 1.61485 +1986 363 3.30831 +1986 364 0.74881 +1986 365 0.68882 +1987 1 0.79649 +1987 2 3.51061 +1987 3 3.71377 +1987 4 3.18043 +1987 5 1.99661 +1987 6 2.35834 +1987 7 2.38337 +1987 8 1.58641 +1987 9 1.37242 +1987 10 0.94388 +1987 11 2.25042 +1987 12 2.45696 +1987 13 2.99201 +1987 14 3.12800 +1987 15 3.56621 +1987 16 3.40605 +1987 17 4.18830 +1987 18 3.17664 +1987 19 3.07428 +1987 20 2.94526 +1987 21 4.82109 +1987 22 3.85398 +1987 23 4.03674 +1987 24 2.19041 +1987 25 1.51650 +1987 26 1.77182 +1987 27 0.93146 +1987 28 2.32572 +1987 29 2.17325 +1987 30 3.61408 +1987 31 2.72075 +1987 32 4.12466 +1987 33 3.85086 +1987 34 3.30073 +1987 35 2.89734 +1987 36 2.67540 +1987 37 3.22572 +1987 38 1.91674 +1987 39 1.28073 +1987 40 0.43365 +1987 41 1.22844 +1987 42 2.36680 +1987 43 3.45086 +1987 44 1.01191 +1987 45 2.19040 +1987 46 3.04361 +1987 47 0.79624 +1987 48 2.61028 +1987 49 2.81919 +1987 50 2.34790 +1987 51 1.70262 +1987 52 1.74687 +1987 53 2.19142 +1987 54 0.34218 +1987 55 1.13598 +1987 56 1.39196 +1987 57 2.12035 +1987 58 2.36898 +1987 59 2.46527 +1987 60 2.53021 +1987 61 0.65356 +1987 62 2.25072 +1987 63 4.52143 +1987 64 2.90114 +1987 65 0.54496 +1987 66 1.20996 +1987 67 1.24366 +1987 68 2.84885 +1987 69 2.01972 +1987 70 2.43116 +1987 71 1.64206 +1987 72 3.37161 +1987 73 0.49088 +1987 74 1.88782 +1987 75 1.86426 +1987 76 1.92715 +1987 77 1.89452 +1987 78 2.52757 +1987 79 2.07639 +1987 80 3.11819 +1987 81 1.34198 +1987 82 2.41143 +1987 83 3.90044 +1987 84 2.23543 +1987 85 2.79204 +1987 86 1.42429 +1987 87 1.09783 +1987 88 1.93560 +1987 89 3.65751 +1987 90 2.73915 +1987 91 4.05500 +1987 92 4.02160 +1987 93 1.20041 +1987 94 0.34453 +1987 95 1.68112 +1987 96 1.56748 +1987 97 0.50470 +1987 98 2.41335 +1987 99 2.10548 +1987 100 2.61639 +1987 101 1.53351 +1987 102 1.81814 +1987 103 0.47358 +1987 104 0.65733 +1987 105 3.39470 +1987 106 3.43782 +1987 107 2.30786 +1987 108 2.47133 +1987 109 3.25058 +1987 110 3.63643 +1987 111 3.91911 +1987 112 3.96028 +1987 113 3.27873 +1987 114 3.09310 +1987 115 5.28834 +1987 116 5.16771 +1987 117 5.11166 +1987 118 4.33718 +1987 119 2.88353 +1987 120 2.01503 +1987 121 3.06257 +1987 122 1.33539 +1987 123 1.45647 +1987 124 1.70723 +1987 125 1.48707 +1987 126 2.38374 +1987 127 1.07699 +1987 128 0.61680 +1987 129 1.07639 +1987 130 1.48814 +1987 131 2.11125 +1987 132 3.07417 +1987 133 1.21312 +1987 134 0.60731 +1987 135 2.27683 +1987 136 1.64564 +1987 137 1.60791 +1987 138 1.83215 +1987 139 2.17363 +1987 140 2.64893 +1987 141 2.03878 +1987 142 2.42156 +1987 143 0.72745 +1987 144 1.45111 +1987 145 1.07994 +1987 146 0.28376 +1987 147 2.81738 +1987 148 3.26811 +1987 149 0.52406 +1987 150 1.04888 +1987 151 3.71195 +1987 152 2.18740 +1987 153 2.43524 +1987 154 3.27449 +1987 155 2.42889 +1987 156 1.91343 +1987 157 1.63265 +1987 158 2.25226 +1987 159 2.39883 +1987 160 1.24698 +1987 161 1.02950 +1987 162 0.32439 +1987 163 0.95533 +1987 164 2.04440 +1987 165 3.42464 +1987 166 1.46375 +1987 167 1.86751 +1987 168 1.81675 +1987 169 4.11542 +1987 170 2.87932 +1987 171 1.69874 +1987 172 1.46796 +1987 173 0.92030 +1987 174 0.52677 +1987 175 0.75624 +1987 176 2.12917 +1987 177 1.32926 +1987 178 1.14005 +1987 179 2.65910 +1987 180 3.36632 +1987 181 1.71024 +1987 182 2.38477 +1987 183 1.73065 +1987 184 1.70527 +1987 185 2.09850 +1987 186 2.20738 +1987 187 1.99349 +1987 188 3.88791 +1987 189 5.38109 +1987 190 1.41429 +1987 191 1.82879 +1987 192 1.10092 +1987 193 2.80080 +1987 194 5.44517 +1987 195 4.77624 +1987 196 4.02725 +1987 197 2.28923 +1987 198 1.93430 +1987 199 2.04201 +1987 200 0.71290 +1987 201 1.11643 +1987 202 1.01584 +1987 203 1.12092 +1987 204 1.72194 +1987 205 3.99260 +1987 206 1.67240 +1987 207 2.87056 +1987 208 3.80565 +1987 209 3.28424 +1987 210 0.83262 +1987 211 0.34499 +1987 212 2.27259 +1987 213 2.51475 +1987 214 1.63235 +1987 215 2.61938 +1987 216 3.40725 +1987 217 1.97380 +1987 218 1.07024 +1987 219 2.48302 +1987 220 1.82522 +1987 221 3.46199 +1987 222 3.46347 +1987 223 1.44722 +1987 224 1.14800 +1987 225 0.43443 +1987 226 0.63259 +1987 227 1.27011 +1987 228 1.80492 +1987 229 2.03836 +1987 230 1.64147 +1987 231 0.87665 +1987 232 1.21385 +1987 233 2.08079 +1987 234 1.07293 +1987 235 0.34334 +1987 236 1.15876 +1987 237 2.21059 +1987 238 1.73786 +1987 239 2.68395 +1987 240 0.12829 +1987 241 1.12431 +1987 242 1.13892 +1987 243 1.66461 +1987 244 4.23039 +1987 245 2.98108 +1987 246 1.49978 +1987 247 3.67904 +1987 248 2.26862 +1987 249 2.39739 +1987 250 1.86671 +1987 251 3.12588 +1987 252 2.55768 +1987 253 2.24936 +1987 254 3.60509 +1987 255 5.52229 +1987 256 3.05650 +1987 257 5.13753 +1987 258 6.15734 +1987 259 4.53365 +1987 260 4.79103 +1987 261 2.87424 +1987 262 2.86353 +1987 263 1.42781 +1987 264 1.92115 +1987 265 2.89673 +1987 266 4.70175 +1987 267 1.53702 +1987 268 3.35511 +1987 269 1.08923 +1987 270 3.11932 +1987 271 4.10605 +1987 272 4.38292 +1987 273 2.57482 +1987 274 4.15124 +1987 275 4.85826 +1987 276 3.72500 +1987 277 2.12084 +1987 278 3.08249 +1987 279 3.27930 +1987 280 3.28720 +1987 281 2.77321 +1987 282 3.57020 +1987 283 4.90856 +1987 284 3.11699 +1987 285 4.06756 +1987 286 3.75275 +1987 287 0.30195 +1987 288 3.59126 +1987 289 1.28101 +1987 290 0.41435 +1987 291 0.60549 +1987 292 1.06414 +1987 293 1.11212 +1987 294 0.85659 +1987 295 2.05883 +1987 296 2.58755 +1987 297 1.36971 +1987 298 0.76856 +1987 299 1.07544 +1987 300 3.30202 +1987 301 3.25177 +1987 302 0.80979 +1987 303 0.95716 +1987 304 2.57492 +1987 305 4.14345 +1987 306 1.75887 +1987 307 4.01255 +1987 308 2.80102 +1987 309 1.47786 +1987 310 2.87461 +1987 311 3.26675 +1987 312 1.51698 +1987 313 1.99753 +1987 314 3.08524 +1987 315 1.81360 +1987 316 2.50933 +1987 317 2.15095 +1987 318 4.22454 +1987 319 2.98008 +1987 320 3.94525 +1987 321 3.52708 +1987 322 2.59527 +1987 323 2.33062 +1987 324 3.72963 +1987 325 3.50109 +1987 326 1.51776 +1987 327 1.90057 +1987 328 1.34460 +1987 329 2.14384 +1987 330 3.94973 +1987 331 3.04396 +1987 332 3.80973 +1987 333 2.97738 +1987 334 3.18405 +1987 335 2.54229 +1987 336 2.79628 +1987 337 3.70045 +1987 338 5.26918 +1987 339 3.80439 +1987 340 3.14657 +1987 341 1.98311 +1987 342 2.63564 +1987 343 1.93735 +1987 344 0.64830 +1987 345 0.57726 +1987 346 1.87117 +1987 347 2.68846 +1987 348 3.80859 +1987 349 4.75473 +1987 350 1.52729 +1987 351 0.27462 +1987 352 0.94820 +1987 353 1.32069 +1987 354 0.68657 +1987 355 1.19264 +1987 356 3.13480 +1987 357 2.51626 +1987 358 4.31147 +1987 359 4.93416 +1987 360 3.21674 +1987 361 0.79704 +1987 362 1.77073 +1987 363 3.03729 +1987 364 2.55503 +1987 365 3.44533 +1988 1 3.66956 +1988 2 4.79888 +1988 3 2.85223 +1988 4 3.07506 +1988 5 0.66509 +1988 6 3.79448 +1988 7 4.85833 +1988 8 4.38906 +1988 9 0.70534 +1988 10 1.90810 +1988 11 2.90891 +1988 12 2.07585 +1988 13 3.71732 +1988 14 2.33907 +1988 15 3.66303 +1988 16 2.91228 +1988 17 3.50469 +1988 18 3.38526 +1988 19 4.74446 +1988 20 2.82949 +1988 21 0.80059 +1988 22 1.70634 +1988 23 2.05425 +1988 24 1.75179 +1988 25 1.51230 +1988 26 0.53060 +1988 27 1.64313 +1988 28 1.07905 +1988 29 1.22125 +1988 30 1.11490 +1988 31 1.59365 +1988 32 1.43585 +1988 33 1.67787 +1988 34 1.02845 +1988 35 3.29492 +1988 36 1.92873 +1988 37 2.90497 +1988 38 3.18962 +1988 39 2.94136 +1988 40 3.12592 +1988 41 3.57611 +1988 42 2.99005 +1988 43 2.18678 +1988 44 2.19237 +1988 45 1.63768 +1988 46 1.71755 +1988 47 1.73209 +1988 48 4.34446 +1988 49 0.83873 +1988 50 2.57201 +1988 51 4.54751 +1988 52 3.81868 +1988 53 4.85551 +1988 54 4.33567 +1988 55 4.40356 +1988 56 4.01378 +1988 57 4.16518 +1988 58 3.74903 +1988 59 3.97303 +1988 60 2.27707 +1988 61 0.82009 +1988 62 0.89811 +1988 63 1.98114 +1988 64 1.53789 +1988 65 3.49427 +1988 66 7.05573 +1988 67 7.14296 +1988 68 4.63232 +1988 69 5.09537 +1988 70 3.74919 +1988 71 2.09680 +1988 72 2.51891 +1988 73 1.29573 +1988 74 1.91192 +1988 75 2.10968 +1988 76 4.49853 +1988 77 3.62870 +1988 78 1.54184 +1988 79 0.76563 +1988 80 0.49196 +1988 81 1.95670 +1988 82 0.81798 +1988 83 0.67558 +1988 84 0.30422 +1988 85 2.01409 +1988 86 0.53478 +1988 87 2.29984 +1988 88 3.24231 +1988 89 2.70651 +1988 90 1.84632 +1988 91 2.21411 +1988 92 1.98882 +1988 93 1.23258 +1988 94 0.50949 +1988 95 1.20966 +1988 96 2.87136 +1988 97 3.39459 +1988 98 1.72686 +1988 99 3.65651 +1988 100 1.86379 +1988 101 3.92924 +1988 102 2.64180 +1988 103 2.03248 +1988 104 1.79210 +1988 105 1.47507 +1988 106 1.86217 +1988 107 3.87717 +1988 108 2.42180 +1988 109 1.61484 +1988 110 2.77854 +1988 111 0.95601 +1988 112 1.55397 +1988 113 1.00166 +1988 114 1.30087 +1988 115 1.59441 +1988 116 1.21737 +1988 117 1.27228 +1988 118 0.21126 +1988 119 1.29265 +1988 120 3.07359 +1988 121 1.62463 +1988 122 0.75474 +1988 123 2.28176 +1988 124 2.85519 +1988 125 3.69110 +1988 126 2.25726 +1988 127 0.54978 +1988 128 2.38330 +1988 129 2.62244 +1988 130 2.77248 +1988 131 1.97948 +1988 132 3.55985 +1988 133 3.97152 +1988 134 3.18254 +1988 135 4.10792 +1988 136 4.15777 +1988 137 2.47345 +1988 138 2.90499 +1988 139 4.37495 +1988 140 3.18766 +1988 141 0.99451 +1988 142 0.89144 +1988 143 2.95009 +1988 144 2.99597 +1988 145 1.37105 +1988 146 2.24633 +1988 147 2.18618 +1988 148 2.13733 +1988 149 0.25673 +1988 150 1.13337 +1988 151 1.85463 +1988 152 1.82907 +1988 153 1.23875 +1988 154 1.20407 +1988 155 1.58171 +1988 156 2.92483 +1988 157 2.40523 +1988 158 2.60488 +1988 159 2.99938 +1988 160 1.82000 +1988 161 1.93909 +1988 162 1.91037 +1988 163 0.51480 +1988 164 1.47568 +1988 165 3.32388 +1988 166 1.83173 +1988 167 1.04623 +1988 168 0.62116 +1988 169 2.71274 +1988 170 3.14531 +1988 171 1.41198 +1988 172 1.00078 +1988 173 1.32741 +1988 174 1.64285 +1988 175 4.25059 +1988 176 4.55195 +1988 177 5.49632 +1988 178 4.75822 +1988 179 3.47949 +1988 180 3.27652 +1988 181 4.84087 +1988 182 1.49987 +1988 183 2.85529 +1988 184 4.67544 +1988 185 3.63723 +1988 186 4.39109 +1988 187 4.47552 +1988 188 2.40563 +1988 189 0.96622 +1988 190 0.85320 +1988 191 1.58787 +1988 192 2.89311 +1988 193 3.93449 +1988 194 1.30290 +1988 195 1.38047 +1988 196 3.79863 +1988 197 4.93963 +1988 198 4.50186 +1988 199 2.76677 +1988 200 1.74756 +1988 201 2.20081 +1988 202 1.26628 +1988 203 0.55386 +1988 204 3.32275 +1988 205 4.90551 +1988 206 2.12046 +1988 207 2.96027 +1988 208 3.36139 +1988 209 4.37488 +1988 210 4.26693 +1988 211 3.47932 +1988 212 3.32419 +1988 213 2.56641 +1988 214 3.26454 +1988 215 2.01506 +1988 216 0.46866 +1988 217 0.49362 +1988 218 0.88044 +1988 219 3.33608 +1988 220 6.30478 +1988 221 0.68549 +1988 222 2.44425 +1988 223 2.16061 +1988 224 2.99572 +1988 225 2.80423 +1988 226 2.73411 +1988 227 2.67312 +1988 228 3.00818 +1988 229 3.29523 +1988 230 4.86935 +1988 231 2.78936 +1988 232 1.43176 +1988 233 3.09988 +1988 234 2.80723 +1988 235 2.51076 +1988 236 3.29095 +1988 237 3.58557 +1988 238 1.68820 +1988 239 2.42245 +1988 240 0.42465 +1988 241 3.58562 +1988 242 2.40674 +1988 243 1.52979 +1988 244 6.22125 +1988 245 3.87991 +1988 246 2.18254 +1988 247 3.06725 +1988 248 2.44463 +1988 249 2.90032 +1988 250 3.64433 +1988 251 3.45032 +1988 252 3.09701 +1988 253 3.29752 +1988 254 3.99989 +1988 255 2.58196 +1988 256 2.81347 +1988 257 2.95684 +1988 258 2.26221 +1988 259 2.43250 +1988 260 2.35666 +1988 261 2.31381 +1988 262 1.05186 +1988 263 1.95766 +1988 264 1.97415 +1988 265 3.22375 +1988 266 4.12200 +1988 267 2.01221 +1988 268 1.44913 +1988 269 3.01762 +1988 270 3.14039 +1988 271 2.36121 +1988 272 1.41054 +1988 273 2.34716 +1988 274 5.82550 +1988 275 1.83888 +1988 276 4.30377 +1988 277 5.47004 +1988 278 5.20250 +1988 279 3.95449 +1988 280 3.44488 +1988 281 4.99829 +1988 282 2.14972 +1988 283 3.78850 +1988 284 2.46017 +1988 285 4.16480 +1988 286 3.52771 +1988 287 4.36946 +1988 288 3.04403 +1988 289 3.84416 +1988 290 2.43801 +1988 291 3.08634 +1988 292 2.96021 +1988 293 2.97603 +1988 294 2.12831 +1988 295 1.21206 +1988 296 1.49838 +1988 297 2.79425 +1988 298 3.13804 +1988 299 4.32770 +1988 300 3.72298 +1988 301 3.58527 +1988 302 2.54159 +1988 303 2.28316 +1988 304 2.96990 +1988 305 4.28478 +1988 306 4.36018 +1988 307 5.77808 +1988 308 5.58209 +1988 309 3.87567 +1988 310 4.20812 +1988 311 1.95081 +1988 312 1.00225 +1988 313 2.44420 +1988 314 4.14904 +1988 315 2.29237 +1988 316 4.23074 +1988 317 2.92518 +1988 318 0.75297 +1988 319 1.68074 +1988 320 2.58117 +1988 321 0.59722 +1988 322 2.22215 +1988 323 2.73328 +1988 324 1.68826 +1988 325 2.49499 +1988 326 0.64877 +1988 327 1.37772 +1988 328 2.11510 +1988 329 3.22626 +1988 330 4.56068 +1988 331 3.87793 +1988 332 3.58128 +1988 333 3.19305 +1988 334 2.00369 +1988 335 3.00251 +1988 336 2.20728 +1988 337 1.20851 +1988 338 0.81002 +1988 339 1.37686 +1988 340 1.62248 +1988 341 3.46434 +1988 342 4.05050 +1988 343 3.09262 +1988 344 1.28889 +1988 345 2.23650 +1988 346 3.32233 +1988 347 2.67265 +1988 348 2.13377 +1988 349 2.28248 +1988 350 0.89588 +1988 351 1.36070 +1988 352 2.36446 +1988 353 0.30416 +1988 354 2.32202 +1988 355 2.67698 +1988 356 2.57757 +1988 357 0.47780 +1988 358 1.51766 +1988 359 1.90011 +1988 360 2.90083 +1988 361 4.09385 +1988 362 4.37135 +1988 363 3.87333 +1988 364 2.56976 +1988 365 2.04045 +1988 366 5.35789 +1989 1 3.51701 +1989 2 3.10076 +1989 3 2.62259 +1989 4 2.94065 +1989 5 3.52529 +1989 6 3.90208 +1989 7 4.68030 +1989 8 3.41294 +1989 9 2.38131 +1989 10 2.23379 +1989 11 1.36256 +1989 12 2.76467 +1989 13 2.45767 +1989 14 1.74451 +1989 15 1.20575 +1989 16 1.83301 +1989 17 4.06939 +1989 18 3.63332 +1989 19 1.61923 +1989 20 1.92434 +1989 21 1.81321 +1989 22 2.05353 +1989 23 1.68053 +1989 24 2.73146 +1989 25 4.24123 +1989 26 1.78152 +1989 27 2.10691 +1989 28 2.45022 +1989 29 0.76134 +1989 30 1.66057 +1989 31 0.44337 +1989 32 2.32326 +1989 33 3.11993 +1989 34 3.63961 +1989 35 4.01494 +1989 36 1.55409 +1989 37 4.16594 +1989 38 4.13333 +1989 39 1.54041 +1989 40 2.35557 +1989 41 2.44451 +1989 42 1.39070 +1989 43 2.00115 +1989 44 3.11506 +1989 45 3.68760 +1989 46 0.81206 +1989 47 1.68441 +1989 48 0.83279 +1989 49 1.80401 +1989 50 1.61444 +1989 51 3.23991 +1989 52 3.92498 +1989 53 2.22029 +1989 54 1.42115 +1989 55 2.58083 +1989 56 1.52898 +1989 57 0.39538 +1989 58 0.82595 +1989 59 0.78122 +1989 60 1.08894 +1989 61 0.95743 +1989 62 1.11691 +1989 63 0.59167 +1989 64 0.48058 +1989 65 1.52101 +1989 66 1.88775 +1989 67 1.61131 +1989 68 1.36784 +1989 69 0.65289 +1989 70 1.38542 +1989 71 2.71633 +1989 72 2.65329 +1989 73 2.93473 +1989 74 2.88318 +1989 75 4.45282 +1989 76 3.61037 +1989 77 3.79875 +1989 78 4.68862 +1989 79 2.31147 +1989 80 0.32894 +1989 81 1.60746 +1989 82 2.73960 +1989 83 2.37714 +1989 84 1.93994 +1989 85 1.85075 +1989 86 2.56846 +1989 87 3.08374 +1989 88 3.45312 +1989 89 0.39890 +1989 90 0.49948 +1989 91 0.70976 +1989 92 2.65748 +1989 93 2.80712 +1989 94 1.61718 +1989 95 0.44782 +1989 96 0.40542 +1989 97 1.64221 +1989 98 2.79043 +1989 99 2.83102 +1989 100 3.10438 +1989 101 2.92146 +1989 102 1.39903 +1989 103 0.05594 +1989 104 1.01155 +1989 105 2.57850 +1989 106 2.42280 +1989 107 2.05929 +1989 108 1.79737 +1989 109 0.62195 +1989 110 0.62108 +1989 111 1.59806 +1989 112 3.84290 +1989 113 2.13347 +1989 114 3.24523 +1989 115 2.85908 +1989 116 1.45541 +1989 117 2.78300 +1989 118 2.98289 +1989 119 4.86489 +1989 120 4.52469 +1989 121 1.60643 +1989 122 1.54568 +1989 123 1.59855 +1989 124 2.15269 +1989 125 2.08799 +1989 126 0.69058 +1989 127 1.65979 +1989 128 3.76117 +1989 129 2.28460 +1989 130 1.45868 +1989 131 1.55040 +1989 132 1.63748 +1989 133 1.31661 +1989 134 1.51852 +1989 135 1.61487 +1989 136 2.52050 +1989 137 2.93909 +1989 138 1.28481 +1989 139 1.50370 +1989 140 0.71620 +1989 141 2.12327 +1989 142 1.74180 +1989 143 2.33028 +1989 144 4.45275 +1989 145 2.80328 +1989 146 2.67593 +1989 147 2.80432 +1989 148 1.70249 +1989 149 2.72377 +1989 150 3.73653 +1989 151 1.36847 +1989 152 2.13379 +1989 153 1.75252 +1989 154 3.21154 +1989 155 2.30483 +1989 156 0.98674 +1989 157 0.63221 +1989 158 2.55138 +1989 159 1.47105 +1989 160 3.29004 +1989 161 3.71895 +1989 162 3.96651 +1989 163 1.42964 +1989 164 0.86418 +1989 165 1.93618 +1989 166 1.94103 +1989 167 1.82967 +1989 168 1.48548 +1989 169 2.24369 +1989 170 3.22629 +1989 171 3.47000 +1989 172 2.20156 +1989 173 1.52738 +1989 174 3.58809 +1989 175 2.28807 +1989 176 1.16137 +1989 177 1.05749 +1989 178 1.95235 +1989 179 3.02637 +1989 180 2.62530 +1989 181 1.87527 +1989 182 2.09912 +1989 183 1.31143 +1989 184 0.57843 +1989 185 2.21034 +1989 186 2.36618 +1989 187 2.52096 +1989 188 2.14267 +1989 189 2.46178 +1989 190 2.36417 +1989 191 1.80529 +1989 192 2.68534 +1989 193 0.23239 +1989 194 0.90026 +1989 195 1.96578 +1989 196 3.17656 +1989 197 1.08136 +1989 198 0.54842 +1989 199 0.98296 +1989 200 2.35632 +1989 201 2.13907 +1989 202 1.74130 +1989 203 1.17152 +1989 204 1.10561 +1989 205 0.25394 +1989 206 2.52285 +1989 207 4.33224 +1989 208 2.66915 +1989 209 1.34489 +1989 210 1.41285 +1989 211 1.25043 +1989 212 1.84701 +1989 213 4.53397 +1989 214 5.27814 +1989 215 5.59525 +1989 216 4.63350 +1989 217 2.28702 +1989 218 1.22410 +1989 219 0.89732 +1989 220 2.12662 +1989 221 4.21207 +1989 222 3.11317 +1989 223 0.52699 +1989 224 2.46833 +1989 225 3.57948 +1989 226 2.48486 +1989 227 2.86929 +1989 228 3.00299 +1989 229 2.06437 +1989 230 1.79559 +1989 231 1.08767 +1989 232 2.61474 +1989 233 4.54718 +1989 234 5.00110 +1989 235 1.99527 +1989 236 1.36433 +1989 237 1.71936 +1989 238 2.81675 +1989 239 1.63620 +1989 240 2.68268 +1989 241 2.64007 +1989 242 1.33632 +1989 243 1.56870 +1989 244 1.43570 +1989 245 0.39337 +1989 246 1.30298 +1989 247 1.99303 +1989 248 2.74469 +1989 249 5.65728 +1989 250 5.88183 +1989 251 3.49320 +1989 252 3.49387 +1989 253 3.00131 +1989 254 3.34549 +1989 255 2.77225 +1989 256 1.77523 +1989 257 1.02888 +1989 258 0.46884 +1989 259 0.89292 +1989 260 1.16757 +1989 261 0.75237 +1989 262 1.58838 +1989 263 1.03731 +1989 264 3.84785 +1989 265 2.21774 +1989 266 2.26781 +1989 267 3.67780 +1989 268 3.83219 +1989 269 1.94646 +1989 270 1.67434 +1989 271 1.02035 +1989 272 1.84566 +1989 273 3.37369 +1989 274 3.27316 +1989 275 2.05023 +1989 276 2.84916 +1989 277 1.77330 +1989 278 1.02179 +1989 279 3.39112 +1989 280 2.81024 +1989 281 2.73387 +1989 282 2.24037 +1989 283 1.65488 +1989 284 4.45394 +1989 285 5.00115 +1989 286 4.53144 +1989 287 3.49088 +1989 288 3.41042 +1989 289 4.30661 +1989 290 3.90628 +1989 291 2.19820 +1989 292 1.46094 +1989 293 2.66887 +1989 294 4.57760 +1989 295 5.37376 +1989 296 4.40747 +1989 297 0.26420 +1989 298 2.55826 +1989 299 2.62033 +1989 300 2.85421 +1989 301 2.92506 +1989 302 2.77676 +1989 303 1.65262 +1989 304 2.51435 +1989 305 3.16983 +1989 306 1.48656 +1989 307 1.39582 +1989 308 2.66773 +1989 309 2.64877 +1989 310 1.54974 +1989 311 1.56146 +1989 312 2.25469 +1989 313 2.45827 +1989 314 3.91339 +1989 315 0.35723 +1989 316 1.67728 +1989 317 2.56924 +1989 318 1.81009 +1989 319 3.35165 +1989 320 1.05033 +1989 321 0.59056 +1989 322 2.58829 +1989 323 2.76583 +1989 324 3.03901 +1989 325 4.15497 +1989 326 5.18559 +1989 327 3.88917 +1989 328 4.21572 +1989 329 2.34676 +1989 330 1.39620 +1989 331 3.16206 +1989 332 3.11907 +1989 333 4.02241 +1989 334 4.63247 +1989 335 3.90585 +1989 336 3.56542 +1989 337 3.08932 +1989 338 1.86261 +1989 339 3.96341 +1989 340 3.81947 +1989 341 3.03474 +1989 342 1.20192 +1989 343 1.99375 +1989 344 0.41565 +1989 345 2.57764 +1989 346 2.80992 +1989 347 2.57748 +1989 348 3.18803 +1989 349 3.81519 +1989 350 3.00544 +1989 351 2.95739 +1989 352 1.23226 +1989 353 0.48296 +1989 354 1.71051 +1989 355 3.66115 +1989 356 4.07772 +1989 357 3.67522 +1989 358 4.24610 +1989 359 5.62080 +1989 360 3.52307 +1989 361 3.59194 +1989 362 2.84108 +1989 363 1.71790 +1989 364 1.29444 +1989 365 2.09849 +1990 1 1.44651 +1990 2 2.03311 +1990 3 2.43343 +1990 4 3.31780 +1990 5 2.03378 +1990 6 1.40930 +1990 7 2.45121 +1990 8 3.07246 +1990 9 0.78549 +1990 10 2.91877 +1990 11 4.87384 +1990 12 5.77198 +1990 13 3.65015 +1990 14 3.79057 +1990 15 2.50433 +1990 16 4.44197 +1990 17 3.00322 +1990 18 1.19024 +1990 19 2.28277 +1990 20 1.26215 +1990 21 2.85971 +1990 22 0.23393 +1990 23 0.30663 +1990 24 0.49593 +1990 25 0.78169 +1990 26 1.92924 +1990 27 2.67322 +1990 28 2.43697 +1990 29 1.32168 +1990 30 1.04624 +1990 31 0.95828 +1990 32 1.64478 +1990 33 0.82638 +1990 34 0.85775 +1990 35 1.30504 +1990 36 1.19998 +1990 37 2.29318 +1990 38 0.86470 +1990 39 1.91391 +1990 40 2.15358 +1990 41 1.33799 +1990 42 0.93420 +1990 43 1.86497 +1990 44 1.94011 +1990 45 1.34078 +1990 46 1.21966 +1990 47 1.81445 +1990 48 1.27625 +1990 49 1.79775 +1990 50 2.37157 +1990 51 0.90975 +1990 52 1.53077 +1990 53 1.90324 +1990 54 2.39504 +1990 55 3.97008 +1990 56 5.05491 +1990 57 3.43139 +1990 58 1.27489 +1990 59 2.13211 +1990 60 2.95377 +1990 61 2.69799 +1990 62 2.72378 +1990 63 1.31754 +1990 64 2.05088 +1990 65 1.31398 +1990 66 2.37057 +1990 67 3.93666 +1990 68 3.20968 +1990 69 2.80273 +1990 70 3.04355 +1990 71 3.04359 +1990 72 0.97334 +1990 73 1.60475 +1990 74 1.96927 +1990 75 3.53936 +1990 76 2.33814 +1990 77 1.87498 +1990 78 0.82368 +1990 79 1.13919 +1990 80 1.50912 +1990 81 4.93521 +1990 82 2.10163 +1990 83 3.38461 +1990 84 2.78162 +1990 85 1.52782 +1990 86 1.55895 +1990 87 2.33369 +1990 88 3.07627 +1990 89 3.02564 +1990 90 1.63389 +1990 91 2.43895 +1990 92 2.72523 +1990 93 2.04010 +1990 94 1.38010 +1990 95 1.05111 +1990 96 1.37584 +1990 97 3.61451 +1990 98 1.17982 +1990 99 0.53822 +1990 100 0.44354 +1990 101 0.78056 +1990 102 1.58968 +1990 103 2.69252 +1990 104 2.28406 +1990 105 2.76007 +1990 106 4.11223 +1990 107 5.14204 +1990 108 2.13765 +1990 109 3.47079 +1990 110 4.02258 +1990 111 1.89440 +1990 112 1.51468 +1990 113 3.05715 +1990 114 1.91248 +1990 115 1.59778 +1990 116 1.26841 +1990 117 2.11560 +1990 118 3.55985 +1990 119 2.92232 +1990 120 2.95556 +1990 121 4.45688 +1990 122 4.13466 +1990 123 4.46928 +1990 124 2.37979 +1990 125 2.57466 +1990 126 3.27942 +1990 127 3.64068 +1990 128 2.63463 +1990 129 0.75681 +1990 130 1.35457 +1990 131 1.66307 +1990 132 1.02324 +1990 133 2.52247 +1990 134 2.56434 +1990 135 2.57513 +1990 136 0.70473 +1990 137 0.90659 +1990 138 0.88352 +1990 139 2.57568 +1990 140 4.00467 +1990 141 2.10955 +1990 142 2.79426 +1990 143 2.27920 +1990 144 4.04659 +1990 145 2.57033 +1990 146 6.18501 +1990 147 3.38492 +1990 148 4.66528 +1990 149 4.05418 +1990 150 2.88151 +1990 151 0.79311 +1990 152 1.62551 +1990 153 2.13729 +1990 154 0.21183 +1990 155 1.72139 +1990 156 3.06212 +1990 157 2.91365 +1990 158 3.68027 +1990 159 2.76228 +1990 160 3.03393 +1990 161 3.10985 +1990 162 3.07011 +1990 163 2.31724 +1990 164 1.06097 +1990 165 1.75390 +1990 166 1.47141 +1990 167 1.13474 +1990 168 1.26758 +1990 169 0.41931 +1990 170 2.75205 +1990 171 1.48076 +1990 172 2.25206 +1990 173 4.04802 +1990 174 2.46650 +1990 175 1.35190 +1990 176 0.83120 +1990 177 4.59165 +1990 178 2.21237 +1990 179 0.70634 +1990 180 3.93698 +1990 181 3.32577 +1990 182 1.38357 +1990 183 0.82625 +1990 184 0.28226 +1990 185 2.67179 +1990 186 1.99370 +1990 187 0.60072 +1990 188 4.81935 +1990 189 4.80810 +1990 190 3.16286 +1990 191 1.61943 +1990 192 2.08599 +1990 193 1.81707 +1990 194 1.60182 +1990 195 2.64353 +1990 196 2.42695 +1990 197 1.52403 +1990 198 2.53085 +1990 199 3.75514 +1990 200 2.10885 +1990 201 2.81589 +1990 202 1.85361 +1990 203 1.32302 +1990 204 2.04045 +1990 205 1.22456 +1990 206 0.99867 +1990 207 1.87922 +1990 208 0.31074 +1990 209 4.12470 +1990 210 4.18165 +1990 211 3.03706 +1990 212 1.03581 +1990 213 1.39742 +1990 214 0.38303 +1990 215 2.57206 +1990 216 5.09288 +1990 217 2.55583 +1990 218 5.01543 +1990 219 3.43946 +1990 220 1.10847 +1990 221 1.48372 +1990 222 5.36537 +1990 223 3.71595 +1990 224 3.25257 +1990 225 2.74339 +1990 226 2.69638 +1990 227 0.77294 +1990 228 1.31746 +1990 229 2.75025 +1990 230 1.25469 +1990 231 2.91819 +1990 232 2.11543 +1990 233 2.51764 +1990 234 2.19907 +1990 235 1.16548 +1990 236 3.12189 +1990 237 2.45809 +1990 238 1.06442 +1990 239 2.61477 +1990 240 2.02583 +1990 241 1.78782 +1990 242 0.71507 +1990 243 2.07934 +1990 244 0.44998 +1990 245 2.91278 +1990 246 2.33543 +1990 247 3.37444 +1990 248 4.06366 +1990 249 2.95101 +1990 250 2.61940 +1990 251 1.52328 +1990 252 2.47733 +1990 253 1.32020 +1990 254 0.34714 +1990 255 0.26330 +1990 256 1.84957 +1990 257 3.60910 +1990 258 3.08358 +1990 259 2.69371 +1990 260 3.45775 +1990 261 2.00965 +1990 262 1.10982 +1990 263 1.77398 +1990 264 1.94833 +1990 265 2.67826 +1990 266 1.83827 +1990 267 1.57925 +1990 268 1.19063 +1990 269 1.33579 +1990 270 1.72560 +1990 271 0.87004 +1990 272 4.04756 +1990 273 3.70589 +1990 274 2.26620 +1990 275 3.12283 +1990 276 1.47555 +1990 277 2.20282 +1990 278 3.72929 +1990 279 3.73221 +1990 280 2.75363 +1990 281 2.87173 +1990 282 1.90364 +1990 283 2.59498 +1990 284 2.22485 +1990 285 1.61358 +1990 286 3.45049 +1990 287 3.36852 +1990 288 1.66516 +1990 289 3.09875 +1990 290 1.10065 +1990 291 1.71641 +1990 292 1.27939 +1990 293 1.89892 +1990 294 2.61992 +1990 295 1.17068 +1990 296 1.09518 +1990 297 0.51555 +1990 298 1.11953 +1990 299 1.79675 +1990 300 2.33521 +1990 301 2.61489 +1990 302 4.36402 +1990 303 4.41296 +1990 304 2.85983 +1990 305 0.59308 +1990 306 2.39554 +1990 307 2.01911 +1990 308 2.83347 +1990 309 2.58855 +1990 310 1.76235 +1990 311 0.68273 +1990 312 2.58185 +1990 313 0.77759 +1990 314 3.25557 +1990 315 4.42814 +1990 316 4.39087 +1990 317 2.87846 +1990 318 0.67436 +1990 319 0.88496 +1990 320 1.23764 +1990 321 2.54833 +1990 322 2.05502 +1990 323 1.60649 +1990 324 1.81075 +1990 325 1.22515 +1990 326 1.10949 +1990 327 2.66229 +1990 328 2.58865 +1990 329 2.67044 +1990 330 3.27427 +1990 331 4.23144 +1990 332 3.07197 +1990 333 3.31351 +1990 334 2.98328 +1990 335 3.81997 +1990 336 4.19550 +1990 337 3.35406 +1990 338 1.87593 +1990 339 2.74507 +1990 340 4.79254 +1990 341 3.57336 +1990 342 4.70210 +1990 343 1.22194 +1990 344 1.99177 +1990 345 3.25701 +1990 346 4.27420 +1990 347 3.55228 +1990 348 2.36462 +1990 349 3.66381 +1990 350 3.62803 +1990 351 1.27901 +1990 352 3.13754 +1990 353 4.40161 +1990 354 3.58757 +1990 355 2.14588 +1990 356 3.35716 +1990 357 3.38391 +1990 358 2.15130 +1990 359 0.65351 +1990 360 2.00143 +1990 361 3.42295 +1990 362 3.81058 +1990 363 5.82741 +1990 364 4.67228 +1990 365 1.06527 +1991 1 2.58906 +1991 2 2.87760 +1991 3 3.38033 +1991 4 2.98229 +1991 5 4.35755 +1991 6 3.44042 +1991 7 4.15702 +1991 8 4.69594 +1991 9 0.57377 +1991 10 1.24238 +1991 11 1.67672 +1991 12 3.07916 +1991 13 2.34346 +1991 14 3.51691 +1991 15 4.93286 +1991 16 4.96343 +1991 17 1.60464 +1991 18 0.83490 +1991 19 2.36991 +1991 20 2.69165 +1991 21 3.09558 +1991 22 4.21514 +1991 23 3.66358 +1991 24 2.20287 +1991 25 1.56008 +1991 26 0.81711 +1991 27 2.55038 +1991 28 3.10037 +1991 29 3.22223 +1991 30 5.01757 +1991 31 4.37442 +1991 32 3.00958 +1991 33 1.35952 +1991 34 3.70415 +1991 35 2.96889 +1991 36 2.96399 +1991 37 1.53518 +1991 38 0.82890 +1991 39 1.40132 +1991 40 1.84185 +1991 41 1.19593 +1991 42 2.02959 +1991 43 1.35803 +1991 44 2.46197 +1991 45 2.98212 +1991 46 1.58050 +1991 47 3.28750 +1991 48 2.67362 +1991 49 0.83283 +1991 50 1.78017 +1991 51 1.31533 +1991 52 0.01819 +1991 53 1.75095 +1991 54 1.97385 +1991 55 2.62454 +1991 56 1.92465 +1991 57 4.06715 +1991 58 2.27802 +1991 59 1.04861 +1991 60 1.72325 +1991 61 2.98657 +1991 62 2.32195 +1991 63 3.30224 +1991 64 3.12134 +1991 65 3.26044 +1991 66 3.12512 +1991 67 3.08757 +1991 68 2.84388 +1991 69 1.71004 +1991 70 1.65094 +1991 71 2.09704 +1991 72 1.45482 +1991 73 1.36985 +1991 74 3.04132 +1991 75 1.56587 +1991 76 1.21819 +1991 77 2.23925 +1991 78 3.07809 +1991 79 1.48931 +1991 80 0.05362 +1991 81 1.35338 +1991 82 1.56313 +1991 83 2.96251 +1991 84 4.63991 +1991 85 2.83602 +1991 86 0.52572 +1991 87 1.45840 +1991 88 1.53986 +1991 89 1.04788 +1991 90 0.47145 +1991 91 1.54798 +1991 92 2.24543 +1991 93 2.82928 +1991 94 2.88277 +1991 95 2.43520 +1991 96 2.87332 +1991 97 2.75273 +1991 98 3.29466 +1991 99 3.26946 +1991 100 3.66957 +1991 101 3.00565 +1991 102 1.38072 +1991 103 0.25815 +1991 104 0.88064 +1991 105 1.08921 +1991 106 2.23228 +1991 107 0.70821 +1991 108 3.65817 +1991 109 3.90354 +1991 110 3.90025 +1991 111 1.56766 +1991 112 3.38121 +1991 113 3.65872 +1991 114 3.60684 +1991 115 4.08068 +1991 116 0.41736 +1991 117 1.59762 +1991 118 2.23425 +1991 119 1.50813 +1991 120 3.38331 +1991 121 3.33554 +1991 122 0.67457 +1991 123 0.94382 +1991 124 0.57735 +1991 125 2.49221 +1991 126 2.92331 +1991 127 2.28106 +1991 128 0.89997 +1991 129 1.22760 +1991 130 1.55806 +1991 131 0.97080 +1991 132 2.13417 +1991 133 2.15256 +1991 134 2.47625 +1991 135 2.91977 +1991 136 4.25445 +1991 137 3.50832 +1991 138 3.70298 +1991 139 4.36326 +1991 140 0.90838 +1991 141 3.45555 +1991 142 1.23664 +1991 143 2.90372 +1991 144 0.91505 +1991 145 2.11131 +1991 146 1.58062 +1991 147 0.76668 +1991 148 1.77596 +1991 149 1.28515 +1991 150 3.11349 +1991 151 4.89772 +1991 152 4.22019 +1991 153 2.40562 +1991 154 1.15288 +1991 155 2.08564 +1991 156 1.58005 +1991 157 2.92306 +1991 158 3.99767 +1991 159 3.18998 +1991 160 2.71429 +1991 161 2.62166 +1991 162 2.95236 +1991 163 3.73992 +1991 164 0.65040 +1991 165 1.84851 +1991 166 2.61023 +1991 167 1.84487 +1991 168 0.08834 +1991 169 3.89648 +1991 170 3.60283 +1991 171 3.19221 +1991 172 1.60716 +1991 173 0.86169 +1991 174 4.08200 +1991 175 4.18718 +1991 176 3.33188 +1991 177 1.88124 +1991 178 4.16784 +1991 179 3.47427 +1991 180 0.41966 +1991 181 1.97393 +1991 182 1.68770 +1991 183 2.04580 +1991 184 2.53218 +1991 185 1.50920 +1991 186 1.14594 +1991 187 0.65335 +1991 188 1.13615 +1991 189 0.73590 +1991 190 1.80981 +1991 191 0.78647 +1991 192 2.92481 +1991 193 2.19330 +1991 194 1.81496 +1991 195 1.25928 +1991 196 1.34994 +1991 197 3.21786 +1991 198 1.67643 +1991 199 0.86190 +1991 200 0.55142 +1991 201 2.34957 +1991 202 4.36391 +1991 203 1.98385 +1991 204 2.89511 +1991 205 3.69397 +1991 206 4.44298 +1991 207 3.07979 +1991 208 2.32769 +1991 209 1.35399 +1991 210 2.75189 +1991 211 1.66388 +1991 212 2.54752 +1991 213 1.84275 +1991 214 2.60614 +1991 215 1.16585 +1991 216 2.02310 +1991 217 3.42307 +1991 218 5.42916 +1991 219 2.18189 +1991 220 3.86375 +1991 221 2.82720 +1991 222 2.54702 +1991 223 2.69519 +1991 224 3.51020 +1991 225 1.82735 +1991 226 2.15589 +1991 227 2.53826 +1991 228 3.80813 +1991 229 4.02598 +1991 230 3.66263 +1991 231 4.75488 +1991 232 2.31263 +1991 233 2.43802 +1991 234 3.61308 +1991 235 3.21622 +1991 236 2.72966 +1991 237 1.91477 +1991 238 2.76350 +1991 239 2.12957 +1991 240 2.16095 +1991 241 2.30904 +1991 242 2.42535 +1991 243 3.40884 +1991 244 1.95769 +1991 245 2.88230 +1991 246 2.13312 +1991 247 1.11143 +1991 248 1.50532 +1991 249 0.54529 +1991 250 0.64327 +1991 251 1.88398 +1991 252 2.88274 +1991 253 1.69796 +1991 254 2.27259 +1991 255 3.68647 +1991 256 3.09445 +1991 257 2.04837 +1991 258 2.78174 +1991 259 1.51231 +1991 260 1.57681 +1991 261 3.36859 +1991 262 3.23678 +1991 263 3.52147 +1991 264 2.47427 +1991 265 2.64834 +1991 266 2.59286 +1991 267 0.71329 +1991 268 2.74227 +1991 269 3.32708 +1991 270 1.94491 +1991 271 3.70815 +1991 272 5.23974 +1991 273 3.48609 +1991 274 4.11664 +1991 275 4.17365 +1991 276 3.72094 +1991 277 3.49546 +1991 278 3.53545 +1991 279 3.81231 +1991 280 3.58932 +1991 281 3.41561 +1991 282 2.78677 +1991 283 1.20156 +1991 284 0.76517 +1991 285 3.22388 +1991 286 5.57757 +1991 287 5.36956 +1991 288 4.18535 +1991 289 3.09327 +1991 290 2.49245 +1991 291 1.54618 +1991 292 2.91303 +1991 293 0.94686 +1991 294 1.80210 +1991 295 2.18301 +1991 296 1.32000 +1991 297 0.64836 +1991 298 1.63781 +1991 299 2.75388 +1991 300 2.92582 +1991 301 0.96079 +1991 302 1.40182 +1991 303 1.02549 +1991 304 3.01872 +1991 305 2.21311 +1991 306 2.92125 +1991 307 3.99337 +1991 308 2.40723 +1991 309 1.50916 +1991 310 1.92615 +1991 311 2.64403 +1991 312 2.15284 +1991 313 4.76122 +1991 314 4.57375 +1991 315 4.15329 +1991 316 4.06256 +1991 317 3.19280 +1991 318 0.98534 +1991 319 1.10596 +1991 320 0.78569 +1991 321 1.36535 +1991 322 3.19434 +1991 323 2.45585 +1991 324 3.88956 +1991 325 5.20057 +1991 326 6.00208 +1991 327 5.05675 +1991 328 4.08025 +1991 329 4.05103 +1991 330 2.22904 +1991 331 4.05954 +1991 332 3.87309 +1991 333 2.33725 +1991 334 2.50207 +1991 335 3.80784 +1991 336 5.56207 +1991 337 5.21272 +1991 338 1.81753 +1991 339 2.69962 +1991 340 1.94081 +1991 341 2.26756 +1991 342 4.20621 +1991 343 2.02736 +1991 344 0.76151 +1991 345 3.15858 +1991 346 1.58028 +1991 347 1.87828 +1991 348 2.60512 +1991 349 1.65675 +1991 350 0.47689 +1991 351 0.55872 +1991 352 2.91402 +1991 353 3.75175 +1991 354 3.06377 +1991 355 2.83299 +1991 356 2.04720 +1991 357 1.26356 +1991 358 1.60941 +1991 359 1.60473 +1991 360 1.24655 +1991 361 2.66136 +1991 362 2.23667 +1991 363 1.78613 +1991 364 3.16854 +1991 365 1.96982 +1992 1 3.35037 +1992 2 0.80981 +1992 3 1.40772 +1992 4 1.28928 +1992 5 1.65187 +1992 6 2.34698 +1992 7 2.89190 +1992 8 3.67331 +1992 9 0.53048 +1992 10 1.73876 +1992 11 3.09206 +1992 12 2.49222 +1992 13 2.18305 +1992 14 1.58177 +1992 15 1.45963 +1992 16 3.72369 +1992 17 0.41705 +1992 18 5.01392 +1992 19 2.90510 +1992 20 0.96615 +1992 21 1.28500 +1992 22 0.52814 +1992 23 2.95786 +1992 24 1.86275 +1992 25 1.80276 +1992 26 2.07221 +1992 27 0.72802 +1992 28 2.76019 +1992 29 0.70303 +1992 30 1.80373 +1992 31 2.33288 +1992 32 3.33601 +1992 33 3.56283 +1992 34 3.00778 +1992 35 2.25124 +1992 36 1.90684 +1992 37 2.46573 +1992 38 2.26185 +1992 39 2.12716 +1992 40 2.53745 +1992 41 0.72462 +1992 42 0.36546 +1992 43 1.16468 +1992 44 3.48292 +1992 45 3.60599 +1992 46 1.27194 +1992 47 1.34014 +1992 48 2.47231 +1992 49 4.35282 +1992 50 2.76190 +1992 51 2.03967 +1992 52 2.52381 +1992 53 2.57961 +1992 54 2.39414 +1992 55 2.07971 +1992 56 1.60196 +1992 57 4.58619 +1992 58 3.95215 +1992 59 3.82594 +1992 60 2.86355 +1992 61 2.25950 +1992 62 1.78578 +1992 63 1.07012 +1992 64 0.31093 +1992 65 1.88560 +1992 66 3.80920 +1992 67 4.03615 +1992 68 1.54177 +1992 69 4.51767 +1992 70 4.12880 +1992 71 4.18000 +1992 72 1.41229 +1992 73 0.97167 +1992 74 3.37239 +1992 75 3.98360 +1992 76 5.60561 +1992 77 3.92631 +1992 78 3.01747 +1992 79 3.80685 +1992 80 3.91768 +1992 81 3.88013 +1992 82 2.35963 +1992 83 1.36465 +1992 84 2.29517 +1992 85 0.53512 +1992 86 1.67929 +1992 87 1.79794 +1992 88 2.54725 +1992 89 3.55674 +1992 90 3.58624 +1992 91 0.70841 +1992 92 3.76485 +1992 93 3.68238 +1992 94 3.44889 +1992 95 3.14782 +1992 96 2.32318 +1992 97 0.41551 +1992 98 1.13309 +1992 99 1.17318 +1992 100 1.12188 +1992 101 1.14444 +1992 102 2.52813 +1992 103 1.19973 +1992 104 0.08524 +1992 105 0.99443 +1992 106 1.50633 +1992 107 1.35589 +1992 108 0.55388 +1992 109 1.53792 +1992 110 1.96011 +1992 111 2.00646 +1992 112 2.69951 +1992 113 1.28283 +1992 114 1.18898 +1992 115 0.54728 +1992 116 2.00501 +1992 117 1.85336 +1992 118 2.72076 +1992 119 1.94320 +1992 120 1.39096 +1992 121 0.55821 +1992 122 1.60756 +1992 123 2.68411 +1992 124 0.55256 +1992 125 0.83742 +1992 126 1.17252 +1992 127 1.74673 +1992 128 2.43606 +1992 129 3.32134 +1992 130 4.82388 +1992 131 2.61506 +1992 132 1.38804 +1992 133 1.25915 +1992 134 1.03191 +1992 135 0.45617 +1992 136 0.88584 +1992 137 3.35163 +1992 138 4.04152 +1992 139 4.85426 +1992 140 4.94465 +1992 141 4.31204 +1992 142 3.14305 +1992 143 0.68006 +1992 144 4.10401 +1992 145 2.98411 +1992 146 1.30634 +1992 147 1.24454 +1992 148 3.47176 +1992 149 3.16661 +1992 150 2.82402 +1992 151 1.78426 +1992 152 0.86595 +1992 153 2.07213 +1992 154 1.46400 +1992 155 0.48600 +1992 156 1.61282 +1992 157 4.37717 +1992 158 0.83217 +1992 159 2.35856 +1992 160 1.42994 +1992 161 0.79931 +1992 162 0.05889 +1992 163 1.77500 +1992 164 3.52568 +1992 165 3.50664 +1992 166 4.20685 +1992 167 3.98154 +1992 168 2.54205 +1992 169 2.45952 +1992 170 1.19449 +1992 171 2.54221 +1992 172 1.21464 +1992 173 1.01197 +1992 174 2.92564 +1992 175 2.55724 +1992 176 2.79565 +1992 177 1.48435 +1992 178 1.11687 +1992 179 0.95702 +1992 180 2.63213 +1992 181 1.64816 +1992 182 2.25471 +1992 183 2.92019 +1992 184 3.92385 +1992 185 2.61060 +1992 186 2.92398 +1992 187 3.84168 +1992 188 2.55670 +1992 189 3.21349 +1992 190 1.65969 +1992 191 2.37134 +1992 192 3.27975 +1992 193 3.58421 +1992 194 2.25723 +1992 195 3.02254 +1992 196 1.39948 +1992 197 1.82509 +1992 198 2.09511 +1992 199 0.85647 +1992 200 1.01828 +1992 201 3.32239 +1992 202 1.21317 +1992 203 0.92344 +1992 204 6.41120 +1992 205 4.72050 +1992 206 4.69307 +1992 207 3.93976 +1992 208 3.36105 +1992 209 4.71674 +1992 210 3.22199 +1992 211 3.24612 +1992 212 2.53207 +1992 213 2.90799 +1992 214 4.18024 +1992 215 4.32059 +1992 216 2.57950 +1992 217 3.68433 +1992 218 3.66581 +1992 219 3.85753 +1992 220 3.21622 +1992 221 3.27664 +1992 222 2.15373 +1992 223 4.32150 +1992 224 2.97664 +1992 225 3.11195 +1992 226 4.13842 +1992 227 5.12583 +1992 228 4.18804 +1992 229 3.22891 +1992 230 1.86662 +1992 231 2.03102 +1992 232 4.59142 +1992 233 3.00694 +1992 234 4.44186 +1992 235 3.26150 +1992 236 2.28557 +1992 237 1.88602 +1992 238 3.92360 +1992 239 3.13008 +1992 240 2.60442 +1992 241 1.86431 +1992 242 2.01785 +1992 243 0.60217 +1992 244 2.22403 +1992 245 2.94731 +1992 246 3.17013 +1992 247 2.54980 +1992 248 1.75346 +1992 249 1.20657 +1992 250 1.53717 +1992 251 3.44581 +1992 252 1.34217 +1992 253 3.12459 +1992 254 2.29611 +1992 255 2.63737 +1992 256 2.13072 +1992 257 1.82867 +1992 258 0.55913 +1992 259 2.48620 +1992 260 1.98608 +1992 261 3.56569 +1992 262 2.69959 +1992 263 2.81141 +1992 264 3.50940 +1992 265 3.22047 +1992 266 3.21451 +1992 267 1.61460 +1992 268 1.93168 +1992 269 2.61189 +1992 270 3.55345 +1992 271 5.17100 +1992 272 2.53136 +1992 273 0.32423 +1992 274 2.11479 +1992 275 1.69007 +1992 276 1.06729 +1992 277 3.60648 +1992 278 0.65526 +1992 279 1.60779 +1992 280 2.84642 +1992 281 1.36159 +1992 282 2.34899 +1992 283 2.63826 +1992 284 1.86001 +1992 285 2.05332 +1992 286 1.92752 +1992 287 2.73624 +1992 288 1.13877 +1992 289 2.56721 +1992 290 1.37389 +1992 291 0.68050 +1992 292 1.41319 +1992 293 2.57511 +1992 294 3.04568 +1992 295 3.82831 +1992 296 5.52017 +1992 297 1.27284 +1992 298 0.68180 +1992 299 3.63934 +1992 300 0.91903 +1992 301 1.06721 +1992 302 1.14544 +1992 303 1.39777 +1992 304 2.21737 +1992 305 0.51553 +1992 306 1.67873 +1992 307 4.09580 +1992 308 3.64297 +1992 309 3.71238 +1992 310 2.15429 +1992 311 0.88543 +1992 312 1.76063 +1992 313 2.98425 +1992 314 3.01774 +1992 315 2.88001 +1992 316 3.56303 +1992 317 2.68945 +1992 318 3.08247 +1992 319 3.29399 +1992 320 1.40605 +1992 321 2.85101 +1992 322 1.55747 +1992 323 2.77916 +1992 324 2.13634 +1992 325 2.37853 +1992 326 4.91255 +1992 327 4.93348 +1992 328 2.76093 +1992 329 1.97898 +1992 330 3.44540 +1992 331 3.37116 +1992 332 2.44767 +1992 333 2.01120 +1992 334 3.25136 +1992 335 0.97135 +1992 336 3.19334 +1992 337 3.98636 +1992 338 2.14406 +1992 339 2.42047 +1992 340 3.16616 +1992 341 0.72207 +1992 342 1.79053 +1992 343 1.57810 +1992 344 2.66119 +1992 345 2.24667 +1992 346 4.17312 +1992 347 3.63810 +1992 348 2.70689 +1992 349 0.76390 +1992 350 0.71898 +1992 351 1.42428 +1992 352 3.73994 +1992 353 2.49142 +1992 354 1.99667 +1992 355 2.35674 +1992 356 2.43860 +1992 357 4.14722 +1992 358 1.01480 +1992 359 2.24326 +1992 360 2.61791 +1992 361 1.83535 +1992 362 1.28388 +1992 363 2.50394 +1992 364 3.86842 +1992 365 2.75459 +1992 366 2.05759 +1993 1 1.31845 +1993 2 1.53399 +1993 3 1.68614 +1993 4 2.05930 +1993 5 4.53970 +1993 6 2.79382 +1993 7 2.56170 +1993 8 3.27709 +1993 9 3.61405 +1993 10 4.03307 +1993 11 2.68158 +1993 12 3.17422 +1993 13 1.42040 +1993 14 3.07395 +1993 15 1.68681 +1993 16 2.46139 +1993 17 4.24162 +1993 18 4.07237 +1993 19 3.37200 +1993 20 3.78258 +1993 21 4.61616 +1993 22 0.99991 +1993 23 2.33683 +1993 24 2.03939 +1993 25 4.18080 +1993 26 3.99367 +1993 27 1.97839 +1993 28 2.93392 +1993 29 4.84843 +1993 30 5.04135 +1993 31 3.67638 +1993 32 4.14492 +1993 33 1.80285 +1993 34 1.39939 +1993 35 3.07651 +1993 36 2.91764 +1993 37 1.73012 +1993 38 1.44819 +1993 39 0.58822 +1993 40 1.41456 +1993 41 2.69551 +1993 42 3.82355 +1993 43 1.66856 +1993 44 2.30106 +1993 45 2.50097 +1993 46 2.76698 +1993 47 1.91033 +1993 48 3.13903 +1993 49 4.04005 +1993 50 3.65269 +1993 51 2.40776 +1993 52 4.07217 +1993 53 2.45070 +1993 54 1.58664 +1993 55 1.61771 +1993 56 1.24323 +1993 57 2.04693 +1993 58 0.24671 +1993 59 1.04266 +1993 60 2.68047 +1993 61 4.58356 +1993 62 3.12954 +1993 63 2.21333 +1993 64 4.22302 +1993 65 0.57646 +1993 66 1.21838 +1993 67 1.11011 +1993 68 0.18166 +1993 69 1.48483 +1993 70 2.25421 +1993 71 1.87150 +1993 72 1.77708 +1993 73 1.19447 +1993 74 0.79430 +1993 75 1.43807 +1993 76 2.02333 +1993 77 2.49923 +1993 78 1.94683 +1993 79 3.61345 +1993 80 3.84752 +1993 81 2.02433 +1993 82 1.48689 +1993 83 2.37771 +1993 84 3.42258 +1993 85 4.35583 +1993 86 2.94247 +1993 87 0.54608 +1993 88 2.80510 +1993 89 2.89598 +1993 90 2.12367 +1993 91 2.82046 +1993 92 2.58772 +1993 93 2.55002 +1993 94 0.99700 +1993 95 1.81611 +1993 96 1.43473 +1993 97 1.88263 +1993 98 2.31090 +1993 99 3.48046 +1993 100 1.65416 +1993 101 3.49694 +1993 102 1.54657 +1993 103 1.97382 +1993 104 1.04457 +1993 105 0.78259 +1993 106 1.16166 +1993 107 2.52288 +1993 108 2.36121 +1993 109 2.47183 +1993 110 3.04213 +1993 111 3.64929 +1993 112 2.86293 +1993 113 2.06267 +1993 114 2.20306 +1993 115 1.05846 +1993 116 2.28891 +1993 117 2.91420 +1993 118 1.04771 +1993 119 2.64188 +1993 120 3.20977 +1993 121 2.48283 +1993 122 1.40568 +1993 123 2.09645 +1993 124 2.38366 +1993 125 1.14806 +1993 126 3.37191 +1993 127 0.63850 +1993 128 0.53001 +1993 129 1.42897 +1993 130 1.14422 +1993 131 2.20231 +1993 132 0.82448 +1993 133 1.58303 +1993 134 2.45422 +1993 135 5.87660 +1993 136 3.15528 +1993 137 3.74616 +1993 138 5.56802 +1993 139 3.87345 +1993 140 1.11521 +1993 141 1.20052 +1993 142 0.46546 +1993 143 1.46237 +1993 144 1.77742 +1993 145 0.65564 +1993 146 2.64711 +1993 147 4.70247 +1993 148 4.11247 +1993 149 4.39791 +1993 150 3.00027 +1993 151 3.75875 +1993 152 1.44194 +1993 153 1.17263 +1993 154 2.79309 +1993 155 3.52260 +1993 156 3.08723 +1993 157 1.85600 +1993 158 4.19203 +1993 159 4.71488 +1993 160 3.07425 +1993 161 1.43456 +1993 162 2.09291 +1993 163 4.34851 +1993 164 4.91868 +1993 165 4.28087 +1993 166 5.35575 +1993 167 3.63855 +1993 168 2.53116 +1993 169 0.94049 +1993 170 1.92107 +1993 171 2.37333 +1993 172 2.61038 +1993 173 1.33684 +1993 174 1.30437 +1993 175 4.73038 +1993 176 2.98088 +1993 177 2.49771 +1993 178 1.84424 +1993 179 4.96961 +1993 180 3.45405 +1993 181 2.11543 +1993 182 1.27891 +1993 183 0.41706 +1993 184 1.24816 +1993 185 1.85716 +1993 186 1.00886 +1993 187 3.09852 +1993 188 4.59955 +1993 189 4.59680 +1993 190 3.71476 +1993 191 1.64590 +1993 192 0.90651 +1993 193 1.24538 +1993 194 0.76317 +1993 195 1.00470 +1993 196 0.33771 +1993 197 0.47087 +1993 198 1.90150 +1993 199 1.76888 +1993 200 0.97164 +1993 201 0.38539 +1993 202 3.76901 +1993 203 3.40889 +1993 204 3.91308 +1993 205 1.76437 +1993 206 0.99528 +1993 207 1.85320 +1993 208 0.83763 +1993 209 0.71986 +1993 210 1.29587 +1993 211 1.25817 +1993 212 2.59967 +1993 213 3.54678 +1993 214 2.06705 +1993 215 2.22133 +1993 216 1.66914 +1993 217 1.05733 +1993 218 1.63516 +1993 219 3.05814 +1993 220 4.26500 +1993 221 2.73938 +1993 222 1.52274 +1993 223 0.89013 +1993 224 0.44431 +1993 225 1.55360 +1993 226 2.82015 +1993 227 2.56329 +1993 228 1.68637 +1993 229 2.72458 +1993 230 2.10603 +1993 231 2.89338 +1993 232 3.11450 +1993 233 2.35895 +1993 234 2.17977 +1993 235 3.32037 +1993 236 2.04899 +1993 237 1.74043 +1993 238 3.18973 +1993 239 2.62308 +1993 240 2.92423 +1993 241 0.93499 +1993 242 1.20546 +1993 243 0.84259 +1993 244 1.95182 +1993 245 1.86491 +1993 246 3.42729 +1993 247 2.43157 +1993 248 3.43532 +1993 249 2.61148 +1993 250 1.49930 +1993 251 0.37335 +1993 252 1.75946 +1993 253 1.52178 +1993 254 4.44879 +1993 255 4.49741 +1993 256 4.70884 +1993 257 5.10963 +1993 258 3.58881 +1993 259 0.44896 +1993 260 0.96602 +1993 261 4.29762 +1993 262 4.49510 +1993 263 2.30292 +1993 264 2.61580 +1993 265 2.81845 +1993 266 2.07885 +1993 267 2.99600 +1993 268 3.18224 +1993 269 2.87031 +1993 270 2.88593 +1993 271 2.24053 +1993 272 0.96609 +1993 273 1.90689 +1993 274 1.25794 +1993 275 2.91421 +1993 276 0.79798 +1993 277 2.53490 +1993 278 3.10595 +1993 279 3.61648 +1993 280 2.58757 +1993 281 0.99759 +1993 282 2.63523 +1993 283 3.32505 +1993 284 3.45118 +1993 285 3.28090 +1993 286 4.36825 +1993 287 5.52295 +1993 288 2.21403 +1993 289 1.71289 +1993 290 1.36891 +1993 291 3.63445 +1993 292 4.25095 +1993 293 2.46944 +1993 294 4.04063 +1993 295 3.83674 +1993 296 3.11720 +1993 297 0.54360 +1993 298 1.51165 +1993 299 1.54473 +1993 300 1.19904 +1993 301 2.91563 +1993 302 3.73154 +1993 303 2.31419 +1993 304 2.51130 +1993 305 1.35524 +1993 306 1.01868 +1993 307 1.69129 +1993 308 1.23181 +1993 309 2.20755 +1993 310 1.13376 +1993 311 3.41843 +1993 312 3.72962 +1993 313 2.69175 +1993 314 1.56139 +1993 315 1.09517 +1993 316 2.67801 +1993 317 2.80492 +1993 318 2.69008 +1993 319 3.78025 +1993 320 3.15056 +1993 321 0.51802 +1993 322 1.96708 +1993 323 3.98458 +1993 324 3.76360 +1993 325 1.30204 +1993 326 2.86342 +1993 327 2.80310 +1993 328 1.07412 +1993 329 1.34363 +1993 330 1.27629 +1993 331 0.43256 +1993 332 5.33438 +1993 333 3.89324 +1993 334 4.55221 +1993 335 4.23822 +1993 336 5.22622 +1993 337 0.85540 +1993 338 2.45254 +1993 339 2.60614 +1993 340 2.30887 +1993 341 2.20630 +1993 342 1.72414 +1993 343 1.26247 +1993 344 0.91967 +1993 345 2.20225 +1993 346 2.22371 +1993 347 2.19041 +1993 348 1.59093 +1993 349 1.14039 +1993 350 1.67170 +1993 351 2.95033 +1993 352 3.72357 +1993 353 3.51419 +1993 354 2.43287 +1993 355 1.59316 +1993 356 3.01665 +1993 357 1.85209 +1993 358 2.03078 +1993 359 4.58010 +1993 360 2.74921 +1993 361 0.84403 +1993 362 0.86033 +1993 363 1.18782 +1993 364 2.07926 +1993 365 3.57849 +1994 1 4.34995 +1994 2 3.17206 +1994 3 2.31907 +1994 4 3.35050 +1994 5 0.88999 +1994 6 1.95124 +1994 7 1.63055 +1994 8 1.58703 +1994 9 2.25778 +1994 10 1.39175 +1994 11 2.43611 +1994 12 1.96421 +1994 13 1.89570 +1994 14 2.84607 +1994 15 3.30131 +1994 16 1.53231 +1994 17 2.50628 +1994 18 1.71435 +1994 19 1.85872 +1994 20 1.56479 +1994 21 2.57604 +1994 22 2.58329 +1994 23 2.23286 +1994 24 1.61162 +1994 25 2.71904 +1994 26 4.33385 +1994 27 2.77829 +1994 28 0.66144 +1994 29 1.58806 +1994 30 2.30688 +1994 31 3.27021 +1994 32 1.95415 +1994 33 3.30030 +1994 34 2.16279 +1994 35 0.50680 +1994 36 3.12737 +1994 37 1.49607 +1994 38 1.83667 +1994 39 1.14933 +1994 40 1.32828 +1994 41 1.60967 +1994 42 1.50708 +1994 43 1.05383 +1994 44 2.22526 +1994 45 2.74380 +1994 46 2.52472 +1994 47 1.58238 +1994 48 1.56082 +1994 49 1.93081 +1994 50 3.13108 +1994 51 1.86172 +1994 52 1.36902 +1994 53 0.33389 +1994 54 1.74106 +1994 55 0.84935 +1994 56 0.79448 +1994 57 1.96555 +1994 58 2.90229 +1994 59 1.55928 +1994 60 3.36996 +1994 61 3.46241 +1994 62 3.04135 +1994 63 1.42491 +1994 64 0.83727 +1994 65 3.46429 +1994 66 4.00609 +1994 67 3.16052 +1994 68 3.01556 +1994 69 1.74850 +1994 70 0.45740 +1994 71 1.06609 +1994 72 2.15911 +1994 73 3.16393 +1994 74 1.76792 +1994 75 2.27897 +1994 76 1.39831 +1994 77 1.70460 +1994 78 2.59453 +1994 79 3.47323 +1994 80 2.52694 +1994 81 1.94782 +1994 82 2.35702 +1994 83 2.11343 +1994 84 2.85298 +1994 85 1.70312 +1994 86 1.03025 +1994 87 1.62778 +1994 88 0.62905 +1994 89 2.26235 +1994 90 1.40788 +1994 91 1.66860 +1994 92 1.15528 +1994 93 2.82546 +1994 94 1.27629 +1994 95 1.90516 +1994 96 1.50197 +1994 97 1.82122 +1994 98 1.61622 +1994 99 1.97459 +1994 100 1.89977 +1994 101 1.68706 +1994 102 2.15890 +1994 103 1.40896 +1994 104 1.45543 +1994 105 2.21747 +1994 106 0.52200 +1994 107 1.74883 +1994 108 2.70023 +1994 109 2.59473 +1994 110 4.37735 +1994 111 3.28972 +1994 112 2.93404 +1994 113 2.16552 +1994 114 2.15038 +1994 115 2.31516 +1994 116 2.18618 +1994 117 0.81933 +1994 118 0.96878 +1994 119 1.17642 +1994 120 1.35029 +1994 121 1.41880 +1994 122 2.19279 +1994 123 1.37895 +1994 124 1.19997 +1994 125 1.26949 +1994 126 2.09985 +1994 127 2.57279 +1994 128 3.64777 +1994 129 2.44408 +1994 130 3.70181 +1994 131 4.72102 +1994 132 3.59426 +1994 133 3.02818 +1994 134 3.10782 +1994 135 5.52974 +1994 136 5.94584 +1994 137 3.68602 +1994 138 3.46430 +1994 139 3.69155 +1994 140 4.24219 +1994 141 3.57981 +1994 142 2.30719 +1994 143 2.36493 +1994 144 4.01597 +1994 145 4.52386 +1994 146 3.90595 +1994 147 4.29539 +1994 148 5.32580 +1994 149 4.26157 +1994 150 3.72322 +1994 151 2.72806 +1994 152 1.45510 +1994 153 1.53445 +1994 154 3.41323 +1994 155 3.70510 +1994 156 4.06740 +1994 157 2.78943 +1994 158 0.17363 +1994 159 0.98526 +1994 160 3.37971 +1994 161 2.73681 +1994 162 1.52564 +1994 163 1.55559 +1994 164 2.96695 +1994 165 1.86784 +1994 166 0.32992 +1994 167 1.26110 +1994 168 1.23997 +1994 169 2.47808 +1994 170 1.40082 +1994 171 1.19283 +1994 172 0.93072 +1994 173 2.61107 +1994 174 2.53552 +1994 175 3.92506 +1994 176 4.36202 +1994 177 3.87713 +1994 178 2.42567 +1994 179 2.50739 +1994 180 2.34441 +1994 181 3.04838 +1994 182 2.30005 +1994 183 2.01191 +1994 184 1.98662 +1994 185 3.69105 +1994 186 5.37272 +1994 187 4.39088 +1994 188 4.25616 +1994 189 3.00000 +1994 190 4.40388 +1994 191 4.53147 +1994 192 2.33764 +1994 193 2.47095 +1994 194 0.94486 +1994 195 2.27244 +1994 196 3.92561 +1994 197 4.15945 +1994 198 1.52435 +1994 199 3.12907 +1994 200 3.16427 +1994 201 2.08140 +1994 202 2.68172 +1994 203 1.92119 +1994 204 1.92364 +1994 205 5.51943 +1994 206 2.66241 +1994 207 1.08962 +1994 208 0.69708 +1994 209 0.99405 +1994 210 1.72380 +1994 211 0.69741 +1994 212 2.47829 +1994 213 5.32414 +1994 214 2.15648 +1994 215 0.53294 +1994 216 0.91969 +1994 217 1.53434 +1994 218 2.16829 +1994 219 3.17158 +1994 220 2.26508 +1994 221 3.14160 +1994 222 1.89117 +1994 223 1.97969 +1994 224 2.40688 +1994 225 2.90650 +1994 226 2.66092 +1994 227 1.33130 +1994 228 1.24324 +1994 229 2.30567 +1994 230 2.00361 +1994 231 3.04136 +1994 232 2.59003 +1994 233 1.33477 +1994 234 0.85915 +1994 235 1.89670 +1994 236 1.08737 +1994 237 2.60682 +1994 238 0.43870 +1994 239 1.06058 +1994 240 1.75999 +1994 241 2.67781 +1994 242 4.37386 +1994 243 3.83076 +1994 244 1.47050 +1994 245 2.93472 +1994 246 2.60094 +1994 247 0.79071 +1994 248 2.30096 +1994 249 3.73644 +1994 250 3.03722 +1994 251 3.69671 +1994 252 3.25090 +1994 253 3.90751 +1994 254 4.27524 +1994 255 2.96563 +1994 256 3.18629 +1994 257 0.63790 +1994 258 2.82005 +1994 259 0.91398 +1994 260 0.91271 +1994 261 3.10652 +1994 262 3.39132 +1994 263 2.54691 +1994 264 2.37824 +1994 265 3.04343 +1994 266 3.48335 +1994 267 2.90705 +1994 268 2.94985 +1994 269 3.13866 +1994 270 2.62109 +1994 271 5.48301 +1994 272 1.13012 +1994 273 0.57863 +1994 274 3.64382 +1994 275 0.13250 +1994 276 2.58615 +1994 277 2.73843 +1994 278 2.45759 +1994 279 3.51060 +1994 280 0.93586 +1994 281 3.25283 +1994 282 3.79585 +1994 283 3.88223 +1994 284 3.35436 +1994 285 2.93258 +1994 286 2.16051 +1994 287 4.16878 +1994 288 3.62762 +1994 289 4.10888 +1994 290 5.01861 +1994 291 3.33538 +1994 292 4.00453 +1994 293 4.02414 +1994 294 1.95583 +1994 295 2.47384 +1994 296 3.63187 +1994 297 3.19119 +1994 298 4.57303 +1994 299 3.42737 +1994 300 2.57171 +1994 301 3.13302 +1994 302 2.28041 +1994 303 2.56191 +1994 304 2.72035 +1994 305 1.30319 +1994 306 0.85140 +1994 307 1.79855 +1994 308 2.59373 +1994 309 4.70183 +1994 310 5.57285 +1994 311 6.05785 +1994 312 3.76369 +1994 313 3.73637 +1994 314 3.85568 +1994 315 4.35261 +1994 316 3.06583 +1994 317 3.83693 +1994 318 5.05111 +1994 319 4.05217 +1994 320 4.64413 +1994 321 4.11023 +1994 322 4.24726 +1994 323 2.62579 +1994 324 3.95425 +1994 325 4.20505 +1994 326 4.37004 +1994 327 4.33049 +1994 328 1.07001 +1994 329 1.56195 +1994 330 1.39894 +1994 331 1.12880 +1994 332 0.60164 +1994 333 2.02820 +1994 334 2.41759 +1994 335 2.12278 +1994 336 1.38635 +1994 337 1.24696 +1994 338 1.83221 +1994 339 1.30750 +1994 340 1.81025 +1994 341 3.11938 +1994 342 4.29606 +1994 343 2.97227 +1994 344 2.09837 +1994 345 2.73475 +1994 346 0.91617 +1994 347 0.73907 +1994 348 1.10832 +1994 349 0.81000 +1994 350 1.27225 +1994 351 0.73318 +1994 352 2.45081 +1994 353 4.32901 +1994 354 1.79574 +1994 355 5.09370 +1994 356 4.31285 +1994 357 1.96408 +1994 358 4.82312 +1994 359 2.69483 +1994 360 2.66746 +1994 361 2.06342 +1994 362 0.86320 +1994 363 2.01653 +1994 364 2.66966 +1994 365 0.69685 +1995 1 1.93625 +1995 2 2.90549 +1995 3 1.86469 +1995 4 1.40089 +1995 5 2.33362 +1995 6 2.03816 +1995 7 2.31402 +1995 8 1.72905 +1995 9 0.95469 +1995 10 3.43958 +1995 11 1.27546 +1995 12 0.77336 +1995 13 1.67320 +1995 14 1.32170 +1995 15 1.76441 +1995 16 1.96078 +1995 17 2.90290 +1995 18 1.53363 +1995 19 3.30439 +1995 20 3.20531 +1995 21 3.02529 +1995 22 1.18264 +1995 23 1.60298 +1995 24 0.94871 +1995 25 2.11617 +1995 26 2.80220 +1995 27 1.72667 +1995 28 0.99200 +1995 29 1.12102 +1995 30 2.57144 +1995 31 3.30603 +1995 32 1.84391 +1995 33 4.20071 +1995 34 3.63805 +1995 35 1.42747 +1995 36 2.20630 +1995 37 1.17250 +1995 38 0.63615 +1995 39 0.87213 +1995 40 0.76265 +1995 41 1.52368 +1995 42 3.86245 +1995 43 3.59361 +1995 44 3.49014 +1995 45 2.99759 +1995 46 1.76498 +1995 47 0.36362 +1995 48 1.61542 +1995 49 2.33673 +1995 50 3.09048 +1995 51 0.16134 +1995 52 3.17156 +1995 53 2.97544 +1995 54 1.52455 +1995 55 1.19365 +1995 56 1.26263 +1995 57 0.92068 +1995 58 0.87643 +1995 59 1.73306 +1995 60 1.55202 +1995 61 2.00147 +1995 62 2.45158 +1995 63 0.86547 +1995 64 1.84530 +1995 65 0.41756 +1995 66 0.79097 +1995 67 1.51846 +1995 68 2.74098 +1995 69 0.70715 +1995 70 2.62809 +1995 71 2.97688 +1995 72 4.86236 +1995 73 3.07742 +1995 74 2.78788 +1995 75 1.56642 +1995 76 1.96159 +1995 77 3.68992 +1995 78 2.79260 +1995 79 3.56230 +1995 80 3.43456 +1995 81 2.94312 +1995 82 1.67035 +1995 83 0.93097 +1995 84 0.84064 +1995 85 1.70233 +1995 86 1.45691 +1995 87 2.19381 +1995 88 1.96538 +1995 89 1.16306 +1995 90 1.77008 +1995 91 1.63026 +1995 92 1.64796 +1995 93 1.63376 +1995 94 2.48257 +1995 95 1.81854 +1995 96 4.00564 +1995 97 2.20379 +1995 98 2.17664 +1995 99 1.59929 +1995 100 2.57203 +1995 101 0.96676 +1995 102 1.51431 +1995 103 1.07304 +1995 104 0.50509 +1995 105 0.64067 +1995 106 1.59121 +1995 107 1.50498 +1995 108 2.00591 +1995 109 2.37697 +1995 110 1.90096 +1995 111 2.26153 +1995 112 1.15956 +1995 113 2.65559 +1995 114 3.44324 +1995 115 1.54643 +1995 116 1.79966 +1995 117 3.94306 +1995 118 3.77559 +1995 119 3.98749 +1995 120 4.42210 +1995 121 4.40859 +1995 122 3.11923 +1995 123 1.49671 +1995 124 1.58448 +1995 125 1.36939 +1995 126 2.73176 +1995 127 2.24685 +1995 128 2.06657 +1995 129 2.14319 +1995 130 0.56676 +1995 131 1.62356 +1995 132 1.87500 +1995 133 0.89220 +1995 134 1.44483 +1995 135 1.99897 +1995 136 3.32350 +1995 137 4.58326 +1995 138 3.54166 +1995 139 1.21181 +1995 140 1.55363 +1995 141 1.25894 +1995 142 2.81434 +1995 143 0.84543 +1995 144 0.58302 +1995 145 1.90145 +1995 146 4.53762 +1995 147 6.26787 +1995 148 1.99173 +1995 149 2.11822 +1995 150 4.00519 +1995 151 2.95865 +1995 152 2.04641 +1995 153 2.22019 +1995 154 3.18944 +1995 155 3.09907 +1995 156 3.38640 +1995 157 2.95631 +1995 158 2.30660 +1995 159 3.88765 +1995 160 2.06542 +1995 161 0.52068 +1995 162 1.36929 +1995 163 0.66823 +1995 164 1.74605 +1995 165 0.76201 +1995 166 2.15386 +1995 167 1.49707 +1995 168 2.66192 +1995 169 1.49758 +1995 170 1.94497 +1995 171 2.41728 +1995 172 1.39436 +1995 173 2.33110 +1995 174 1.97522 +1995 175 3.00464 +1995 176 3.96916 +1995 177 4.80047 +1995 178 3.50645 +1995 179 2.83856 +1995 180 3.42374 +1995 181 2.37259 +1995 182 3.02902 +1995 183 1.74337 +1995 184 1.80795 +1995 185 1.27142 +1995 186 3.51056 +1995 187 3.83310 +1995 188 4.73267 +1995 189 3.86002 +1995 190 3.33630 +1995 191 2.96596 +1995 192 3.76532 +1995 193 1.86369 +1995 194 1.12679 +1995 195 2.22076 +1995 196 0.50085 +1995 197 2.67182 +1995 198 2.53097 +1995 199 1.53244 +1995 200 3.22302 +1995 201 3.69185 +1995 202 4.33357 +1995 203 4.86439 +1995 204 2.09214 +1995 205 2.49293 +1995 206 2.72825 +1995 207 4.07439 +1995 208 2.05644 +1995 209 1.89912 +1995 210 1.32513 +1995 211 1.53685 +1995 212 0.70717 +1995 213 1.93469 +1995 214 0.53617 +1995 215 1.39679 +1995 216 1.44273 +1995 217 1.02217 +1995 218 0.21570 +1995 219 2.55958 +1995 220 2.40230 +1995 221 1.79216 +1995 222 2.34931 +1995 223 1.02611 +1995 224 2.20569 +1995 225 3.02974 +1995 226 2.09858 +1995 227 2.93222 +1995 228 3.45999 +1995 229 4.63041 +1995 230 4.00521 +1995 231 4.11488 +1995 232 3.39243 +1995 233 1.17538 +1995 234 0.35625 +1995 235 2.59535 +1995 236 4.20594 +1995 237 3.31843 +1995 238 2.20714 +1995 239 1.63486 +1995 240 3.71320 +1995 241 2.81545 +1995 242 3.75577 +1995 243 3.15388 +1995 244 3.67361 +1995 245 2.24438 +1995 246 1.16290 +1995 247 2.52651 +1995 248 4.93072 +1995 249 4.69369 +1995 250 2.67848 +1995 251 1.11004 +1995 252 1.36965 +1995 253 1.20687 +1995 254 0.70794 +1995 255 2.41991 +1995 256 2.64335 +1995 257 2.68455 +1995 258 2.75544 +1995 259 1.02925 +1995 260 1.60603 +1995 261 2.08365 +1995 262 0.40740 +1995 263 1.21732 +1995 264 3.01020 +1995 265 3.16677 +1995 266 2.68115 +1995 267 2.14825 +1995 268 0.84555 +1995 269 1.91980 +1995 270 3.67082 +1995 271 2.83279 +1995 272 1.99984 +1995 273 1.70655 +1995 274 1.57061 +1995 275 0.10125 +1995 276 1.04652 +1995 277 3.12708 +1995 278 2.91491 +1995 279 3.05295 +1995 280 1.68313 +1995 281 2.24759 +1995 282 3.24424 +1995 283 4.22011 +1995 284 4.64685 +1995 285 2.33756 +1995 286 3.15131 +1995 287 3.45613 +1995 288 5.07217 +1995 289 2.52235 +1995 290 1.75933 +1995 291 2.42483 +1995 292 1.56046 +1995 293 3.29302 +1995 294 2.40010 +1995 295 3.14293 +1995 296 2.11876 +1995 297 2.69059 +1995 298 2.51503 +1995 299 2.18328 +1995 300 1.46031 +1995 301 0.44052 +1995 302 1.76065 +1995 303 3.40721 +1995 304 1.72950 +1995 305 1.84817 +1995 306 0.58301 +1995 307 2.93432 +1995 308 5.96490 +1995 309 2.60803 +1995 310 0.95910 +1995 311 0.87731 +1995 312 2.81033 +1995 313 2.57370 +1995 314 2.82233 +1995 315 3.87726 +1995 316 2.00031 +1995 317 1.82934 +1995 318 4.08677 +1995 319 0.30100 +1995 320 0.94964 +1995 321 0.42262 +1995 322 2.89279 +1995 323 3.22458 +1995 324 3.27792 +1995 325 0.87091 +1995 326 2.33436 +1995 327 5.37784 +1995 328 2.96357 +1995 329 3.83099 +1995 330 4.13713 +1995 331 2.15014 +1995 332 0.60255 +1995 333 0.98199 +1995 334 2.88832 +1995 335 0.44063 +1995 336 0.65563 +1995 337 1.31968 +1995 338 1.01484 +1995 339 0.31251 +1995 340 1.49089 +1995 341 3.82942 +1995 342 2.44934 +1995 343 2.14614 +1995 344 3.52402 +1995 345 3.89611 +1995 346 4.34574 +1995 347 4.03449 +1995 348 1.95126 +1995 349 1.97246 +1995 350 3.38092 +1995 351 1.87753 +1995 352 2.98471 +1995 353 3.26358 +1995 354 5.10912 +1995 355 5.28866 +1995 356 4.27050 +1995 357 3.06479 +1995 358 2.16584 +1995 359 2.13553 +1995 360 3.45822 +1995 361 2.66652 +1995 362 3.22303 +1995 363 3.74643 +1995 364 0.83233 +1995 365 1.35003 +1996 1 1.09864 +1996 2 1.73269 +1996 3 0.83738 +1996 4 1.82565 +1996 5 1.58545 +1996 6 1.66821 +1996 7 1.61903 +1996 8 1.03797 +1996 9 1.94723 +1996 10 1.64639 +1996 11 2.10659 +1996 12 3.93268 +1996 13 3.74590 +1996 14 1.28360 +1996 15 1.27339 +1996 16 2.39698 +1996 17 1.94930 +1996 18 1.37989 +1996 19 2.65288 +1996 20 1.94026 +1996 21 2.35230 +1996 22 1.36271 +1996 23 1.66662 +1996 24 4.39260 +1996 25 4.51290 +1996 26 5.09482 +1996 27 4.19686 +1996 28 1.94425 +1996 29 1.88022 +1996 30 0.90010 +1996 31 1.26436 +1996 32 1.88148 +1996 33 2.14858 +1996 34 3.04829 +1996 35 3.01088 +1996 36 2.69343 +1996 37 2.14065 +1996 38 0.95278 +1996 39 1.57732 +1996 40 1.31250 +1996 41 1.12408 +1996 42 2.07071 +1996 43 0.85931 +1996 44 0.83225 +1996 45 1.65677 +1996 46 1.81318 +1996 47 1.07872 +1996 48 2.17979 +1996 49 3.01151 +1996 50 3.01595 +1996 51 2.72285 +1996 52 3.02759 +1996 53 3.92078 +1996 54 2.69834 +1996 55 1.59518 +1996 56 3.18291 +1996 57 3.49316 +1996 58 1.74031 +1996 59 0.43412 +1996 60 1.47500 +1996 61 4.20972 +1996 62 1.97246 +1996 63 0.33465 +1996 64 3.41055 +1996 65 3.87166 +1996 66 3.23536 +1996 67 1.39654 +1996 68 1.78281 +1996 69 2.92442 +1996 70 3.41232 +1996 71 1.54338 +1996 72 0.57621 +1996 73 1.85142 +1996 74 2.28543 +1996 75 4.15668 +1996 76 3.98814 +1996 77 2.65260 +1996 78 2.77939 +1996 79 2.06404 +1996 80 0.49016 +1996 81 3.03230 +1996 82 2.85813 +1996 83 2.04590 +1996 84 1.29890 +1996 85 0.73003 +1996 86 0.66027 +1996 87 1.71616 +1996 88 1.65258 +1996 89 3.87745 +1996 90 6.06941 +1996 91 4.32301 +1996 92 3.69844 +1996 93 3.90086 +1996 94 3.22112 +1996 95 2.83514 +1996 96 0.43241 +1996 97 1.83418 +1996 98 1.53573 +1996 99 2.33448 +1996 100 1.15215 +1996 101 1.61447 +1996 102 1.77472 +1996 103 2.26541 +1996 104 1.95695 +1996 105 2.02958 +1996 106 1.79175 +1996 107 1.34670 +1996 108 1.09609 +1996 109 1.88833 +1996 110 1.71588 +1996 111 2.02221 +1996 112 3.07000 +1996 113 1.59560 +1996 114 1.01139 +1996 115 1.26433 +1996 116 0.61986 +1996 117 2.05313 +1996 118 0.91374 +1996 119 3.37218 +1996 120 2.39905 +1996 121 3.26569 +1996 122 3.35896 +1996 123 3.25665 +1996 124 2.33668 +1996 125 1.49704 +1996 126 1.38826 +1996 127 0.96228 +1996 128 2.37028 +1996 129 1.00806 +1996 130 1.19709 +1996 131 1.97305 +1996 132 3.67115 +1996 133 1.08836 +1996 134 1.90293 +1996 135 1.64308 +1996 136 4.32349 +1996 137 2.83510 +1996 138 0.81335 +1996 139 1.31756 +1996 140 2.04881 +1996 141 4.23124 +1996 142 3.28007 +1996 143 4.23228 +1996 144 3.26192 +1996 145 4.23859 +1996 146 3.80644 +1996 147 3.14457 +1996 148 1.34391 +1996 149 1.04133 +1996 150 2.08790 +1996 151 5.04977 +1996 152 5.22895 +1996 153 3.97643 +1996 154 1.87320 +1996 155 1.66124 +1996 156 1.43753 +1996 157 0.84985 +1996 158 0.95470 +1996 159 0.79726 +1996 160 1.58124 +1996 161 2.49277 +1996 162 3.27095 +1996 163 2.12552 +1996 164 2.95672 +1996 165 1.41115 +1996 166 1.11663 +1996 167 3.12230 +1996 168 2.32400 +1996 169 1.37407 +1996 170 1.09670 +1996 171 2.49064 +1996 172 4.14414 +1996 173 6.31033 +1996 174 4.58808 +1996 175 2.20882 +1996 176 2.38013 +1996 177 3.76914 +1996 178 0.51221 +1996 179 1.63967 +1996 180 3.99781 +1996 181 4.55073 +1996 182 3.01401 +1996 183 1.78806 +1996 184 2.57338 +1996 185 3.95306 +1996 186 3.36813 +1996 187 2.82397 +1996 188 2.41935 +1996 189 2.03906 +1996 190 0.75275 +1996 191 1.22744 +1996 192 2.92026 +1996 193 1.05913 +1996 194 0.41534 +1996 195 2.47022 +1996 196 0.14911 +1996 197 1.67028 +1996 198 1.92857 +1996 199 0.41411 +1996 200 1.58114 +1996 201 1.02308 +1996 202 1.29603 +1996 203 3.42879 +1996 204 1.99966 +1996 205 3.22235 +1996 206 1.37313 +1996 207 2.07802 +1996 208 3.22706 +1996 209 2.65879 +1996 210 3.71452 +1996 211 3.25566 +1996 212 1.79253 +1996 213 3.58081 +1996 214 2.98069 +1996 215 4.93393 +1996 216 3.36587 +1996 217 2.37722 +1996 218 1.43381 +1996 219 4.11138 +1996 220 1.86284 +1996 221 0.38648 +1996 222 4.22346 +1996 223 2.04183 +1996 224 2.51896 +1996 225 3.16863 +1996 226 1.80859 +1996 227 3.35049 +1996 228 4.85201 +1996 229 1.82878 +1996 230 1.90475 +1996 231 0.61553 +1996 232 4.56464 +1996 233 4.77308 +1996 234 3.23550 +1996 235 0.67453 +1996 236 0.60796 +1996 237 1.17587 +1996 238 0.99383 +1996 239 4.57404 +1996 240 4.60280 +1996 241 2.80436 +1996 242 2.39520 +1996 243 1.90283 +1996 244 0.66420 +1996 245 3.80785 +1996 246 3.19166 +1996 247 4.20149 +1996 248 2.06050 +1996 249 1.80277 +1996 250 1.63208 +1996 251 2.16585 +1996 252 3.27171 +1996 253 1.73770 +1996 254 1.72865 +1996 255 2.44148 +1996 256 2.29023 +1996 257 3.60742 +1996 258 1.23051 +1996 259 2.50310 +1996 260 2.94558 +1996 261 2.76725 +1996 262 3.30780 +1996 263 3.25382 +1996 264 2.83413 +1996 265 1.72259 +1996 266 1.25091 +1996 267 2.11893 +1996 268 2.11006 +1996 269 1.64818 +1996 270 0.86674 +1996 271 1.44183 +1996 272 4.15177 +1996 273 2.32774 +1996 274 2.86777 +1996 275 3.01237 +1996 276 3.37831 +1996 277 3.59425 +1996 278 1.49715 +1996 279 2.30854 +1996 280 2.63502 +1996 281 3.64748 +1996 282 2.39898 +1996 283 3.65963 +1996 284 2.31931 +1996 285 2.71615 +1996 286 5.22219 +1996 287 5.24485 +1996 288 3.40451 +1996 289 1.62438 +1996 290 1.48645 +1996 291 2.36144 +1996 292 2.13801 +1996 293 2.28010 +1996 294 1.80770 +1996 295 3.50284 +1996 296 1.15017 +1996 297 1.67660 +1996 298 1.19242 +1996 299 2.00663 +1996 300 2.87577 +1996 301 3.66572 +1996 302 1.28780 +1996 303 2.53047 +1996 304 3.49305 +1996 305 2.41905 +1996 306 1.87962 +1996 307 1.74504 +1996 308 1.04003 +1996 309 0.61158 +1996 310 2.27503 +1996 311 4.88266 +1996 312 1.99340 +1996 313 1.90377 +1996 314 2.55780 +1996 315 2.89256 +1996 316 4.39932 +1996 317 4.45453 +1996 318 5.39437 +1996 319 4.76342 +1996 320 4.02445 +1996 321 3.71032 +1996 322 0.67686 +1996 323 5.03818 +1996 324 5.72384 +1996 325 3.78578 +1996 326 3.26398 +1996 327 4.67211 +1996 328 5.17293 +1996 329 5.07462 +1996 330 3.86504 +1996 331 3.90681 +1996 332 1.66125 +1996 333 4.66774 +1996 334 3.09940 +1996 335 3.70037 +1996 336 2.35204 +1996 337 3.52068 +1996 338 3.56405 +1996 339 3.44735 +1996 340 2.65021 +1996 341 3.73917 +1996 342 3.26215 +1996 343 2.33907 +1996 344 2.42508 +1996 345 1.27616 +1996 346 3.11397 +1996 347 0.82447 +1996 348 2.26733 +1996 349 2.84418 +1996 350 1.92837 +1996 351 3.04699 +1996 352 3.44310 +1996 353 2.74638 +1996 354 2.94060 +1996 355 4.11352 +1996 356 3.04473 +1996 357 1.06799 +1996 358 0.37489 +1996 359 1.42858 +1996 360 1.89729 +1996 361 1.83783 +1996 362 1.99394 +1996 363 3.45868 +1996 364 5.74472 +1996 365 2.54545 +1996 366 1.89521 +1997 1 1.58796 +1997 2 1.73995 +1997 3 3.51629 +1997 4 4.33305 +1997 5 3.16159 +1997 6 1.89289 +1997 7 0.47719 +1997 8 2.58364 +1997 9 5.12035 +1997 10 4.61744 +1997 11 3.54187 +1997 12 1.80766 +1997 13 0.95593 +1997 14 2.37111 +1997 15 2.89737 +1997 16 2.06373 +1997 17 4.61587 +1997 18 4.11767 +1997 19 1.68527 +1997 20 3.25990 +1997 21 4.75997 +1997 22 0.48489 +1997 23 1.94329 +1997 24 1.94770 +1997 25 2.45042 +1997 26 2.83070 +1997 27 2.16062 +1997 28 2.16974 +1997 29 1.38287 +1997 30 2.87592 +1997 31 1.99767 +1997 32 0.79781 +1997 33 1.05985 +1997 34 2.36089 +1997 35 3.68170 +1997 36 1.50604 +1997 37 0.39500 +1997 38 0.84779 +1997 39 4.38070 +1997 40 3.45653 +1997 41 3.81640 +1997 42 2.89880 +1997 43 3.13923 +1997 44 0.51692 +1997 45 1.14802 +1997 46 1.35743 +1997 47 0.97974 +1997 48 1.65500 +1997 49 4.21191 +1997 50 0.20484 +1997 51 2.90112 +1997 52 2.05926 +1997 53 0.50944 +1997 54 0.83257 +1997 55 2.44054 +1997 56 2.36705 +1997 57 2.48762 +1997 58 0.97440 +1997 59 3.27758 +1997 60 1.68829 +1997 61 1.05301 +1997 62 1.83443 +1997 63 1.33340 +1997 64 1.44604 +1997 65 2.54414 +1997 66 1.85942 +1997 67 2.12885 +1997 68 1.60539 +1997 69 4.76711 +1997 70 6.23586 +1997 71 3.38778 +1997 72 2.40516 +1997 73 2.50951 +1997 74 3.72805 +1997 75 3.39833 +1997 76 3.60645 +1997 77 2.93471 +1997 78 3.78228 +1997 79 2.38152 +1997 80 2.45149 +1997 81 1.15457 +1997 82 1.91024 +1997 83 3.88511 +1997 84 2.76261 +1997 85 2.46075 +1997 86 2.38813 +1997 87 1.83481 +1997 88 1.12576 +1997 89 0.63539 +1997 90 1.90790 +1997 91 2.19103 +1997 92 0.95022 +1997 93 1.36885 +1997 94 2.24675 +1997 95 3.38197 +1997 96 2.78329 +1997 97 3.76891 +1997 98 1.82529 +1997 99 2.71921 +1997 100 1.94155 +1997 101 1.37521 +1997 102 1.36898 +1997 103 1.34935 +1997 104 1.06484 +1997 105 2.89861 +1997 106 3.33408 +1997 107 2.44911 +1997 108 3.11817 +1997 109 2.38683 +1997 110 1.98553 +1997 111 2.77899 +1997 112 2.40086 +1997 113 2.05964 +1997 114 2.85558 +1997 115 1.93618 +1997 116 3.24481 +1997 117 3.15840 +1997 118 2.42610 +1997 119 0.59464 +1997 120 0.78958 +1997 121 0.38033 +1997 122 1.32159 +1997 123 1.22515 +1997 124 1.48802 +1997 125 1.49148 +1997 126 0.28455 +1997 127 0.19156 +1997 128 0.21909 +1997 129 0.32647 +1997 130 1.07505 +1997 131 2.51154 +1997 132 3.32401 +1997 133 5.14296 +1997 134 4.57738 +1997 135 3.68850 +1997 136 1.01988 +1997 137 1.33653 +1997 138 2.11560 +1997 139 2.22607 +1997 140 1.24969 +1997 141 1.85020 +1997 142 2.50647 +1997 143 2.81484 +1997 144 0.15879 +1997 145 0.42341 +1997 146 1.36712 +1997 147 2.08253 +1997 148 1.04233 +1997 149 1.68323 +1997 150 2.57758 +1997 151 0.52021 +1997 152 4.49649 +1997 153 4.57060 +1997 154 3.14021 +1997 155 1.85784 +1997 156 1.54403 +1997 157 1.31183 +1997 158 0.62566 +1997 159 1.78251 +1997 160 3.16955 +1997 161 1.08914 +1997 162 2.48206 +1997 163 2.52250 +1997 164 1.79243 +1997 165 0.54643 +1997 166 0.61241 +1997 167 3.37942 +1997 168 1.41227 +1997 169 2.20953 +1997 170 1.82916 +1997 171 3.72061 +1997 172 3.15197 +1997 173 1.08535 +1997 174 1.78971 +1997 175 2.57526 +1997 176 1.88913 +1997 177 1.71295 +1997 178 0.87873 +1997 179 1.70915 +1997 180 4.45917 +1997 181 5.13896 +1997 182 3.72377 +1997 183 1.82553 +1997 184 2.26521 +1997 185 2.69830 +1997 186 1.12678 +1997 187 0.56188 +1997 188 1.07945 +1997 189 1.59223 +1997 190 3.00843 +1997 191 3.05424 +1997 192 3.05661 +1997 193 2.85086 +1997 194 0.93674 +1997 195 3.92194 +1997 196 2.41366 +1997 197 0.78494 +1997 198 0.49466 +1997 199 2.41019 +1997 200 2.42971 +1997 201 1.32323 +1997 202 1.56635 +1997 203 2.25954 +1997 204 3.79111 +1997 205 1.23149 +1997 206 1.67859 +1997 207 1.16675 +1997 208 0.56853 +1997 209 0.43282 +1997 210 0.45712 +1997 211 3.24140 +1997 212 2.29682 +1997 213 1.30892 +1997 214 4.30651 +1997 215 3.06846 +1997 216 2.82721 +1997 217 1.80272 +1997 218 2.00808 +1997 219 0.77849 +1997 220 0.39705 +1997 221 1.85896 +1997 222 3.31732 +1997 223 2.58115 +1997 224 3.35573 +1997 225 4.06052 +1997 226 4.32999 +1997 227 2.64246 +1997 228 3.46938 +1997 229 2.27375 +1997 230 2.32366 +1997 231 0.84261 +1997 232 3.50606 +1997 233 4.07199 +1997 234 3.52696 +1997 235 2.54304 +1997 236 1.50502 +1997 237 2.67571 +1997 238 2.42403 +1997 239 3.61564 +1997 240 2.96743 +1997 241 2.65438 +1997 242 1.75344 +1997 243 2.92397 +1997 244 1.36211 +1997 245 0.36477 +1997 246 1.38435 +1997 247 2.84546 +1997 248 3.02042 +1997 249 3.67831 +1997 250 4.11513 +1997 251 4.71142 +1997 252 4.21844 +1997 253 2.95941 +1997 254 0.48052 +1997 255 3.51130 +1997 256 2.22331 +1997 257 2.14180 +1997 258 0.65178 +1997 259 2.27084 +1997 260 0.37466 +1997 261 2.81037 +1997 262 1.72164 +1997 263 1.91375 +1997 264 2.54125 +1997 265 1.54310 +1997 266 3.83467 +1997 267 2.52056 +1997 268 1.44895 +1997 269 3.57828 +1997 270 0.74341 +1997 271 1.61033 +1997 272 1.71575 +1997 273 4.14128 +1997 274 3.73189 +1997 275 3.31317 +1997 276 4.09808 +1997 277 1.55915 +1997 278 5.18734 +1997 279 5.69775 +1997 280 4.17512 +1997 281 3.41567 +1997 282 2.89363 +1997 283 1.82703 +1997 284 3.12138 +1997 285 3.39392 +1997 286 2.61829 +1997 287 3.72655 +1997 288 3.60579 +1997 289 2.58366 +1997 290 2.12967 +1997 291 1.39801 +1997 292 3.75366 +1997 293 2.78104 +1997 294 3.31543 +1997 295 4.58107 +1997 296 4.71339 +1997 297 5.48727 +1997 298 3.43938 +1997 299 1.24253 +1997 300 2.73442 +1997 301 0.47614 +1997 302 1.33885 +1997 303 0.80451 +1997 304 2.89602 +1997 305 1.79996 +1997 306 4.02691 +1997 307 2.72900 +1997 308 0.61697 +1997 309 2.29337 +1997 310 2.39468 +1997 311 4.38038 +1997 312 5.35425 +1997 313 6.07298 +1997 314 3.04685 +1997 315 4.01565 +1997 316 3.82371 +1997 317 2.04251 +1997 318 3.10333 +1997 319 0.83370 +1997 320 0.67952 +1997 321 4.65840 +1997 322 4.79342 +1997 323 4.90966 +1997 324 5.64840 +1997 325 4.01906 +1997 326 3.43191 +1997 327 3.92333 +1997 328 4.33031 +1997 329 4.84017 +1997 330 3.55224 +1997 331 3.87217 +1997 332 3.88260 +1997 333 2.81629 +1997 334 3.08660 +1997 335 1.79412 +1997 336 4.29637 +1997 337 2.79954 +1997 338 2.50952 +1997 339 3.75267 +1997 340 1.30933 +1997 341 2.15370 +1997 342 1.88972 +1997 343 2.18973 +1997 344 1.18112 +1997 345 1.52570 +1997 346 2.78479 +1997 347 1.60081 +1997 348 2.09007 +1997 349 3.79994 +1997 350 1.61210 +1997 351 2.29871 +1997 352 2.26753 +1997 353 2.25279 +1997 354 3.34450 +1997 355 1.75817 +1997 356 1.84565 +1997 357 2.48405 +1997 358 2.80055 +1997 359 2.72871 +1997 360 1.33665 +1997 361 2.60052 +1997 362 3.87976 +1997 363 0.45500 +1997 364 1.39213 +1997 365 1.33586 +1998 1 1.45089 +1998 2 2.16515 +1998 3 3.47554 +1998 4 3.57687 +1998 5 2.44160 +1998 6 2.40366 +1998 7 2.69576 +1998 8 4.19229 +1998 9 4.79592 +1998 10 3.62405 +1998 11 5.60389 +1998 12 3.14149 +1998 13 1.99401 +1998 14 3.24358 +1998 15 3.95693 +1998 16 2.82870 +1998 17 1.73751 +1998 18 4.40819 +1998 19 1.39392 +1998 20 3.09394 +1998 21 3.82657 +1998 22 3.69981 +1998 23 2.60013 +1998 24 1.31669 +1998 25 1.01528 +1998 26 1.71561 +1998 27 2.81202 +1998 28 2.93175 +1998 29 2.56454 +1998 30 2.87935 +1998 31 0.47152 +1998 32 0.60645 +1998 33 0.95111 +1998 34 0.82628 +1998 35 0.76905 +1998 36 0.72978 +1998 37 2.59740 +1998 38 1.95799 +1998 39 2.42025 +1998 40 2.72533 +1998 41 2.30607 +1998 42 2.19055 +1998 43 1.98734 +1998 44 1.70893 +1998 45 1.58536 +1998 46 1.49252 +1998 47 2.68087 +1998 48 3.48016 +1998 49 1.81901 +1998 50 1.94665 +1998 51 3.01545 +1998 52 2.69742 +1998 53 3.10607 +1998 54 2.65896 +1998 55 2.46697 +1998 56 2.19622 +1998 57 1.59153 +1998 58 3.70552 +1998 59 3.05673 +1998 60 0.87319 +1998 61 1.05511 +1998 62 1.23381 +1998 63 2.45015 +1998 64 2.55777 +1998 65 3.05479 +1998 66 2.79167 +1998 67 2.52890 +1998 68 3.24155 +1998 69 2.26400 +1998 70 1.34440 +1998 71 2.88216 +1998 72 2.83797 +1998 73 4.01240 +1998 74 1.76874 +1998 75 1.37597 +1998 76 0.85040 +1998 77 3.60894 +1998 78 4.75091 +1998 79 4.08994 +1998 80 2.40914 +1998 81 1.78074 +1998 82 1.29233 +1998 83 2.27535 +1998 84 0.99591 +1998 85 0.64069 +1998 86 2.34891 +1998 87 3.09836 +1998 88 4.01641 +1998 89 2.45580 +1998 90 2.80848 +1998 91 3.44303 +1998 92 3.92016 +1998 93 3.92786 +1998 94 1.86644 +1998 95 2.77888 +1998 96 0.39422 +1998 97 2.70817 +1998 98 1.52976 +1998 99 3.37256 +1998 100 0.29651 +1998 101 0.82178 +1998 102 1.11779 +1998 103 1.22962 +1998 104 1.32352 +1998 105 1.91887 +1998 106 1.23996 +1998 107 0.98819 +1998 108 0.79975 +1998 109 2.09116 +1998 110 3.10340 +1998 111 3.57288 +1998 112 3.03149 +1998 113 1.91225 +1998 114 1.01025 +1998 115 1.57478 +1998 116 2.07455 +1998 117 2.45460 +1998 118 3.19385 +1998 119 0.66951 +1998 120 1.59536 +1998 121 1.64315 +1998 122 3.22809 +1998 123 2.11329 +1998 124 0.64438 +1998 125 1.18061 +1998 126 2.72173 +1998 127 3.51998 +1998 128 2.46750 +1998 129 0.37026 +1998 130 1.17441 +1998 131 2.97705 +1998 132 1.85666 +1998 133 3.96696 +1998 134 2.39658 +1998 135 2.98037 +1998 136 0.98439 +1998 137 0.89997 +1998 138 1.09790 +1998 139 1.32721 +1998 140 2.03977 +1998 141 3.50934 +1998 142 2.95206 +1998 143 2.72752 +1998 144 1.66116 +1998 145 2.99151 +1998 146 1.59556 +1998 147 2.43792 +1998 148 3.26665 +1998 149 3.68639 +1998 150 5.72084 +1998 151 2.33479 +1998 152 3.56712 +1998 153 2.47695 +1998 154 1.79600 +1998 155 1.40323 +1998 156 1.15265 +1998 157 2.32837 +1998 158 1.86467 +1998 159 0.95739 +1998 160 2.21381 +1998 161 2.86551 +1998 162 2.43588 +1998 163 4.38587 +1998 164 1.30523 +1998 165 3.35350 +1998 166 0.98316 +1998 167 0.94113 +1998 168 2.36502 +1998 169 3.50057 +1998 170 1.64378 +1998 171 0.45077 +1998 172 1.47111 +1998 173 2.21726 +1998 174 0.77686 +1998 175 3.18410 +1998 176 2.50162 +1998 177 1.82865 +1998 178 2.11721 +1998 179 1.38651 +1998 180 0.80159 +1998 181 5.56915 +1998 182 5.05378 +1998 183 1.92326 +1998 184 2.22800 +1998 185 2.13524 +1998 186 0.28131 +1998 187 1.55910 +1998 188 3.52624 +1998 189 6.55114 +1998 190 2.54544 +1998 191 3.04369 +1998 192 3.29150 +1998 193 0.15740 +1998 194 2.47380 +1998 195 0.85692 +1998 196 2.20714 +1998 197 3.27178 +1998 198 1.56825 +1998 199 0.14707 +1998 200 0.81923 +1998 201 1.52474 +1998 202 2.45055 +1998 203 2.88908 +1998 204 1.37354 +1998 205 4.11126 +1998 206 4.73789 +1998 207 4.19339 +1998 208 2.49333 +1998 209 1.35471 +1998 210 2.55404 +1998 211 1.75571 +1998 212 1.80530 +1998 213 2.34465 +1998 214 2.07516 +1998 215 0.64978 +1998 216 1.55179 +1998 217 1.86365 +1998 218 1.43687 +1998 219 2.78230 +1998 220 3.34194 +1998 221 4.49619 +1998 222 3.88164 +1998 223 2.14169 +1998 224 0.66606 +1998 225 0.68315 +1998 226 2.94653 +1998 227 3.28990 +1998 228 2.43999 +1998 229 2.94895 +1998 230 3.84622 +1998 231 3.67806 +1998 232 2.92618 +1998 233 2.29580 +1998 234 2.02011 +1998 235 2.17501 +1998 236 2.51165 +1998 237 4.74035 +1998 238 3.95682 +1998 239 0.33693 +1998 240 3.06322 +1998 241 1.96547 +1998 242 0.77743 +1998 243 1.33947 +1998 244 1.62218 +1998 245 1.81222 +1998 246 2.11120 +1998 247 2.91664 +1998 248 3.87813 +1998 249 3.29850 +1998 250 3.62844 +1998 251 3.10153 +1998 252 3.39719 +1998 253 3.91177 +1998 254 0.69459 +1998 255 1.84367 +1998 256 1.56618 +1998 257 4.08453 +1998 258 4.59048 +1998 259 2.01371 +1998 260 2.52686 +1998 261 3.33121 +1998 262 0.42082 +1998 263 3.15033 +1998 264 3.11145 +1998 265 1.41682 +1998 266 3.23233 +1998 267 2.85377 +1998 268 1.35544 +1998 269 2.53964 +1998 270 0.65140 +1998 271 1.59921 +1998 272 1.10738 +1998 273 3.94380 +1998 274 4.52224 +1998 275 5.01238 +1998 276 3.40176 +1998 277 4.63932 +1998 278 3.16131 +1998 279 1.33015 +1998 280 3.63760 +1998 281 4.35806 +1998 282 4.43505 +1998 283 4.12078 +1998 284 4.17031 +1998 285 5.06953 +1998 286 2.71707 +1998 287 3.76121 +1998 288 4.07121 +1998 289 3.63731 +1998 290 3.54298 +1998 291 3.84071 +1998 292 5.06890 +1998 293 5.17443 +1998 294 5.39685 +1998 295 5.11320 +1998 296 2.37474 +1998 297 2.62946 +1998 298 2.36698 +1998 299 3.64613 +1998 300 3.77449 +1998 301 3.05622 +1998 302 2.96361 +1998 303 1.18286 +1998 304 0.81066 +1998 305 1.95690 +1998 306 2.61103 +1998 307 2.90104 +1998 308 0.53454 +1998 309 1.52507 +1998 310 1.71128 +1998 311 0.68306 +1998 312 2.66199 +1998 313 3.95034 +1998 314 0.90531 +1998 315 1.49275 +1998 316 2.60846 +1998 317 3.27335 +1998 318 3.35323 +1998 319 2.83581 +1998 320 2.53183 +1998 321 1.80172 +1998 322 0.42020 +1998 323 2.32849 +1998 324 3.38539 +1998 325 3.88272 +1998 326 1.24043 +1998 327 3.21165 +1998 328 3.29504 +1998 329 2.14357 +1998 330 3.87565 +1998 331 5.37202 +1998 332 5.95315 +1998 333 2.37715 +1998 334 2.16514 +1998 335 1.44298 +1998 336 1.73217 +1998 337 1.46455 +1998 338 2.92411 +1998 339 2.37389 +1998 340 3.79889 +1998 341 4.64862 +1998 342 4.54137 +1998 343 4.78028 +1998 344 3.68559 +1998 345 2.63560 +1998 346 3.66313 +1998 347 4.18220 +1998 348 1.62055 +1998 349 1.07153 +1998 350 1.96926 +1998 351 4.19745 +1998 352 3.43892 +1998 353 1.82592 +1998 354 0.89500 +1998 355 1.11368 +1998 356 1.53594 +1998 357 3.10821 +1998 358 2.50603 +1998 359 2.58377 +1998 360 2.72203 +1998 361 2.72324 +1998 362 2.00638 +1998 363 1.55222 +1998 364 1.00545 +1998 365 2.04730 +1999 1 2.57393 +1999 2 1.06730 +1999 3 0.70189 +1999 4 0.90695 +1999 5 0.94357 +1999 6 1.51475 +1999 7 2.77140 +1999 8 0.83327 +1999 9 1.64417 +1999 10 2.63021 +1999 11 2.53800 +1999 12 2.40853 +1999 13 3.23028 +1999 14 1.27251 +1999 15 1.46605 +1999 16 0.27363 +1999 17 0.50839 +1999 18 1.05588 +1999 19 1.45575 +1999 20 0.85664 +1999 21 3.60872 +1999 22 4.40507 +1999 23 4.95860 +1999 24 3.88605 +1999 25 2.57088 +1999 26 0.32804 +1999 27 1.72652 +1999 28 2.20070 +1999 29 4.35283 +1999 30 1.79646 +1999 31 2.57379 +1999 32 1.54958 +1999 33 0.98165 +1999 34 0.75165 +1999 35 1.04792 +1999 36 1.75617 +1999 37 2.14279 +1999 38 2.11990 +1999 39 1.40535 +1999 40 2.90116 +1999 41 3.38758 +1999 42 2.06901 +1999 43 1.59643 +1999 44 1.75979 +1999 45 2.04481 +1999 46 1.93978 +1999 47 1.45227 +1999 48 1.51686 +1999 49 2.27796 +1999 50 1.63630 +1999 51 3.04883 +1999 52 0.49092 +1999 53 0.98309 +1999 54 1.55703 +1999 55 2.35922 +1999 56 3.02677 +1999 57 3.73284 +1999 58 2.71396 +1999 59 4.38008 +1999 60 3.26998 +1999 61 1.18645 +1999 62 2.84587 +1999 63 4.18984 +1999 64 2.77531 +1999 65 2.23303 +1999 66 2.07837 +1999 67 2.27034 +1999 68 3.13910 +1999 69 1.93572 +1999 70 0.73816 +1999 71 1.84212 +1999 72 2.70512 +1999 73 1.28273 +1999 74 0.18339 +1999 75 1.39342 +1999 76 0.51757 +1999 77 1.94874 +1999 78 0.73747 +1999 79 0.52651 +1999 80 1.75783 +1999 81 2.93494 +1999 82 2.35598 +1999 83 2.77721 +1999 84 2.58570 +1999 85 2.26572 +1999 86 2.04866 +1999 87 2.87297 +1999 88 1.94145 +1999 89 0.98459 +1999 90 2.68170 +1999 91 3.00768 +1999 92 2.31269 +1999 93 0.53821 +1999 94 2.65251 +1999 95 4.32247 +1999 96 3.61218 +1999 97 1.64316 +1999 98 1.88859 +1999 99 3.96766 +1999 100 3.10566 +1999 101 0.76532 +1999 102 0.70920 +1999 103 1.19907 +1999 104 2.90137 +1999 105 3.53857 +1999 106 4.65042 +1999 107 2.86062 +1999 108 1.41879 +1999 109 0.50440 +1999 110 0.05312 +1999 111 0.75556 +1999 112 1.86841 +1999 113 3.16990 +1999 114 2.78624 +1999 115 2.77943 +1999 116 2.61802 +1999 117 3.07180 +1999 118 1.88398 +1999 119 2.58525 +1999 120 1.66986 +1999 121 1.55846 +1999 122 4.22027 +1999 123 2.88418 +1999 124 4.96396 +1999 125 5.53102 +1999 126 3.59256 +1999 127 1.39384 +1999 128 1.75943 +1999 129 2.80633 +1999 130 1.35231 +1999 131 0.91715 +1999 132 1.26875 +1999 133 3.16065 +1999 134 3.38701 +1999 135 2.96780 +1999 136 2.52505 +1999 137 1.39367 +1999 138 1.14945 +1999 139 1.20426 +1999 140 1.00712 +1999 141 0.92267 +1999 142 0.97952 +1999 143 0.82724 +1999 144 0.49342 +1999 145 1.57265 +1999 146 2.48713 +1999 147 2.99803 +1999 148 1.61969 +1999 149 1.95177 +1999 150 1.72053 +1999 151 1.68206 +1999 152 1.83745 +1999 153 2.01588 +1999 154 1.00535 +1999 155 2.61824 +1999 156 2.86714 +1999 157 0.49930 +1999 158 2.27928 +1999 159 1.32831 +1999 160 1.42527 +1999 161 0.49164 +1999 162 2.01399 +1999 163 2.87300 +1999 164 1.53349 +1999 165 3.58030 +1999 166 3.63166 +1999 167 2.97252 +1999 168 2.20237 +1999 169 1.03839 +1999 170 0.38016 +1999 171 2.74985 +1999 172 3.15149 +1999 173 1.11492 +1999 174 1.52077 +1999 175 0.73468 +1999 176 0.68977 +1999 177 3.00832 +1999 178 2.37721 +1999 179 2.13010 +1999 180 1.23489 +1999 181 1.42920 +1999 182 2.52417 +1999 183 5.03324 +1999 184 1.84896 +1999 185 2.87224 +1999 186 3.22176 +1999 187 2.58966 +1999 188 2.09197 +1999 189 3.29236 +1999 190 1.52941 +1999 191 1.93213 +1999 192 1.61217 +1999 193 2.24133 +1999 194 0.18566 +1999 195 0.86307 +1999 196 4.65889 +1999 197 1.64241 +1999 198 2.41095 +1999 199 3.50486 +1999 200 2.89017 +1999 201 1.68099 +1999 202 1.48707 +1999 203 1.32394 +1999 204 2.64584 +1999 205 2.29848 +1999 206 2.48657 +1999 207 2.96359 +1999 208 3.22416 +1999 209 1.58011 +1999 210 3.05273 +1999 211 2.73446 +1999 212 1.70067 +1999 213 2.06034 +1999 214 1.48729 +1999 215 0.99484 +1999 216 2.10643 +1999 217 1.32058 +1999 218 2.44954 +1999 219 2.49587 +1999 220 0.90255 +1999 221 0.66299 +1999 222 1.71884 +1999 223 1.60258 +1999 224 1.81793 +1999 225 0.92555 +1999 226 2.56785 +1999 227 2.21147 +1999 228 0.73722 +1999 229 2.97853 +1999 230 1.67448 +1999 231 3.11622 +1999 232 3.48233 +1999 233 4.55133 +1999 234 4.34527 +1999 235 4.09286 +1999 236 5.13113 +1999 237 1.13316 +1999 238 0.47561 +1999 239 1.20300 +1999 240 0.69266 +1999 241 1.73612 +1999 242 2.83025 +1999 243 0.38269 +1999 244 1.58477 +1999 245 1.27093 +1999 246 1.22659 +1999 247 1.85707 +1999 248 1.86949 +1999 249 1.97315 +1999 250 2.66230 +1999 251 2.57291 +1999 252 1.40621 +1999 253 1.05234 +1999 254 3.20394 +1999 255 4.26802 +1999 256 1.40102 +1999 257 1.65986 +1999 258 0.59226 +1999 259 2.06699 +1999 260 1.66562 +1999 261 2.27473 +1999 262 3.73603 +1999 263 3.18840 +1999 264 2.32599 +1999 265 0.80182 +1999 266 0.44186 +1999 267 1.98819 +1999 268 2.62508 +1999 269 3.66036 +1999 270 2.63848 +1999 271 2.08100 +1999 272 2.81239 +1999 273 0.60722 +1999 274 2.01882 +1999 275 3.29321 +1999 276 2.37904 +1999 277 1.94351 +1999 278 0.91722 +1999 279 2.28807 +1999 280 3.71176 +1999 281 1.21131 +1999 282 2.05701 +1999 283 0.84175 +1999 284 2.61482 +1999 285 2.62451 +1999 286 3.49035 +1999 287 3.97186 +1999 288 1.86032 +1999 289 0.91429 +1999 290 1.04348 +1999 291 1.47845 +1999 292 1.83473 +1999 293 2.74405 +1999 294 3.63015 +1999 295 3.28336 +1999 296 2.30018 +1999 297 0.66721 +1999 298 2.22533 +1999 299 3.30137 +1999 300 2.69535 +1999 301 2.53356 +1999 302 2.53202 +1999 303 1.63222 +1999 304 2.18989 +1999 305 1.61317 +1999 306 2.57253 +1999 307 5.03942 +1999 308 4.63646 +1999 309 3.35995 +1999 310 3.22062 +1999 311 2.19441 +1999 312 2.36804 +1999 313 4.02465 +1999 314 3.45543 +1999 315 4.08197 +1999 316 2.86038 +1999 317 0.39341 +1999 318 1.51553 +1999 319 2.10479 +1999 320 3.26551 +1999 321 2.95007 +1999 322 2.67513 +1999 323 2.70453 +1999 324 1.01924 +1999 325 3.00381 +1999 326 1.57817 +1999 327 1.75410 +1999 328 0.14430 +1999 329 2.01162 +1999 330 2.55452 +1999 331 2.81949 +1999 332 2.40392 +1999 333 2.68466 +1999 334 3.32320 +1999 335 1.09922 +1999 336 4.07179 +1999 337 1.33311 +1999 338 2.92232 +1999 339 2.82264 +1999 340 2.37135 +1999 341 1.32642 +1999 342 1.25187 +1999 343 1.48955 +1999 344 2.21318 +1999 345 2.74674 +1999 346 4.18427 +1999 347 4.59475 +1999 348 1.73227 +1999 349 2.65406 +1999 350 1.17973 +1999 351 2.51385 +1999 352 1.93178 +1999 353 2.25368 +1999 354 2.33811 +1999 355 3.65076 +1999 356 2.29490 +1999 357 1.54589 +1999 358 1.91892 +1999 359 3.42417 +1999 360 2.24984 +1999 361 1.54046 +1999 362 0.29603 +1999 363 1.49396 +1999 364 3.59277 +1999 365 1.66811 +2000 1 2.47047 +2000 2 3.89672 +2000 3 1.63648 +2000 4 1.48728 +2000 5 1.17422 +2000 6 0.97778 +2000 7 1.01678 +2000 8 1.38063 +2000 9 2.79632 +2000 10 3.05982 +2000 11 2.74090 +2000 12 0.80117 +2000 13 0.62534 +2000 14 1.24560 +2000 15 1.84726 +2000 16 0.64866 +2000 17 1.90329 +2000 18 1.71019 +2000 19 1.25123 +2000 20 1.19617 +2000 21 1.59372 +2000 22 1.45186 +2000 23 3.58273 +2000 24 3.59298 +2000 25 1.59645 +2000 26 1.27048 +2000 27 0.73443 +2000 28 3.00340 +2000 29 3.16637 +2000 30 4.37260 +2000 31 3.72981 +2000 32 3.19924 +2000 33 1.40303 +2000 34 2.67066 +2000 35 2.46123 +2000 36 2.94907 +2000 37 2.98348 +2000 38 2.41074 +2000 39 1.65642 +2000 40 1.74742 +2000 41 1.75565 +2000 42 1.81621 +2000 43 1.78910 +2000 44 2.08636 +2000 45 3.27164 +2000 46 2.49570 +2000 47 2.46020 +2000 48 1.87835 +2000 49 1.20431 +2000 50 1.01487 +2000 51 2.43931 +2000 52 1.98639 +2000 53 2.27326 +2000 54 0.34483 +2000 55 1.62193 +2000 56 0.47277 +2000 57 2.06058 +2000 58 2.09911 +2000 59 1.47157 +2000 60 1.17662 +2000 61 3.36851 +2000 62 2.88932 +2000 63 0.62625 +2000 64 0.43858 +2000 65 1.25294 +2000 66 1.99534 +2000 67 0.77473 +2000 68 0.54343 +2000 69 1.31429 +2000 70 0.21711 +2000 71 2.26481 +2000 72 3.03427 +2000 73 1.70404 +2000 74 3.51684 +2000 75 2.79590 +2000 76 2.29267 +2000 77 0.32400 +2000 78 2.62502 +2000 79 0.22391 +2000 80 1.49385 +2000 81 2.32717 +2000 82 3.83377 +2000 83 3.54116 +2000 84 3.99131 +2000 85 3.48618 +2000 86 1.17870 +2000 87 1.12142 +2000 88 1.21768 +2000 89 0.84286 +2000 90 1.12427 +2000 91 1.09577 +2000 92 2.56332 +2000 93 1.86806 +2000 94 2.78015 +2000 95 2.08610 +2000 96 3.25345 +2000 97 3.44928 +2000 98 1.74790 +2000 99 3.90541 +2000 100 1.58044 +2000 101 1.14384 +2000 102 0.56122 +2000 103 0.42793 +2000 104 1.62349 +2000 105 0.62049 +2000 106 1.25063 +2000 107 1.36209 +2000 108 2.04638 +2000 109 3.49522 +2000 110 1.35237 +2000 111 2.01216 +2000 112 1.87791 +2000 113 1.11703 +2000 114 3.42829 +2000 115 1.71360 +2000 116 3.61276 +2000 117 1.60313 +2000 118 1.81661 +2000 119 0.89907 +2000 120 2.00036 +2000 121 2.85370 +2000 122 3.19485 +2000 123 2.31721 +2000 124 0.57443 +2000 125 1.62907 +2000 126 0.61158 +2000 127 3.03126 +2000 128 1.12532 +2000 129 1.29667 +2000 130 1.73314 +2000 131 2.82473 +2000 132 3.05529 +2000 133 2.04991 +2000 134 1.58698 +2000 135 2.50855 +2000 136 3.26430 +2000 137 2.98549 +2000 138 2.54376 +2000 139 3.00640 +2000 140 2.99666 +2000 141 2.66086 +2000 142 1.78786 +2000 143 2.63821 +2000 144 0.50764 +2000 145 0.76156 +2000 146 1.18984 +2000 147 1.20731 +2000 148 1.01170 +2000 149 2.13042 +2000 150 4.20682 +2000 151 0.83062 +2000 152 3.18160 +2000 153 3.75017 +2000 154 2.60987 +2000 155 3.99799 +2000 156 5.50839 +2000 157 2.32216 +2000 158 0.84611 +2000 159 2.58317 +2000 160 1.69323 +2000 161 2.18633 +2000 162 3.36521 +2000 163 2.47483 +2000 164 3.24410 +2000 165 2.67368 +2000 166 1.91880 +2000 167 1.80868 +2000 168 3.24746 +2000 169 4.00666 +2000 170 3.14856 +2000 171 1.53607 +2000 172 0.35015 +2000 173 0.88021 +2000 174 1.03654 +2000 175 2.23713 +2000 176 2.75851 +2000 177 1.78093 +2000 178 3.06049 +2000 179 4.93222 +2000 180 3.05864 +2000 181 1.31252 +2000 182 2.12848 +2000 183 3.79145 +2000 184 5.00594 +2000 185 5.07579 +2000 186 4.20178 +2000 187 3.81593 +2000 188 3.99766 +2000 189 3.24983 +2000 190 1.89491 +2000 191 1.26775 +2000 192 1.54000 +2000 193 1.60302 +2000 194 2.82410 +2000 195 3.60196 +2000 196 4.96850 +2000 197 4.69746 +2000 198 3.71309 +2000 199 3.40164 +2000 200 3.27158 +2000 201 3.91800 +2000 202 2.88892 +2000 203 1.56639 +2000 204 3.71011 +2000 205 2.85054 +2000 206 3.57365 +2000 207 3.38513 +2000 208 3.33878 +2000 209 3.41666 +2000 210 1.86107 +2000 211 0.92045 +2000 212 3.42047 +2000 213 1.69228 +2000 214 1.26310 +2000 215 1.28439 +2000 216 1.94777 +2000 217 2.72135 +2000 218 2.69242 +2000 219 1.20086 +2000 220 1.57332 +2000 221 2.99935 +2000 222 2.52665 +2000 223 3.61001 +2000 224 2.90383 +2000 225 2.84276 +2000 226 1.74548 +2000 227 0.78591 +2000 228 1.46703 +2000 229 1.56123 +2000 230 4.01224 +2000 231 1.57193 +2000 232 3.25383 +2000 233 1.48176 +2000 234 1.71428 +2000 235 1.32864 +2000 236 0.28008 +2000 237 1.93274 +2000 238 4.29421 +2000 239 2.27552 +2000 240 3.58850 +2000 241 2.03541 +2000 242 3.62502 +2000 243 1.27870 +2000 244 2.32545 +2000 245 2.63211 +2000 246 0.59937 +2000 247 1.95849 +2000 248 2.19971 +2000 249 2.80490 +2000 250 3.55496 +2000 251 3.41144 +2000 252 3.44881 +2000 253 3.60689 +2000 254 1.76905 +2000 255 1.12023 +2000 256 1.49181 +2000 257 2.95273 +2000 258 3.02212 +2000 259 0.65160 +2000 260 1.09108 +2000 261 1.93972 +2000 262 3.23110 +2000 263 3.51148 +2000 264 1.81880 +2000 265 1.01629 +2000 266 3.53368 +2000 267 3.66984 +2000 268 0.76919 +2000 269 5.05853 +2000 270 2.55205 +2000 271 1.13397 +2000 272 2.63109 +2000 273 4.19066 +2000 274 3.71580 +2000 275 4.00422 +2000 276 3.11537 +2000 277 4.89079 +2000 278 5.13177 +2000 279 5.06521 +2000 280 4.70047 +2000 281 2.94017 +2000 282 4.85249 +2000 283 2.06750 +2000 284 2.64177 +2000 285 4.67916 +2000 286 3.37020 +2000 287 1.26808 +2000 288 2.06585 +2000 289 3.37849 +2000 290 2.20855 +2000 291 2.63556 +2000 292 2.91947 +2000 293 1.18872 +2000 294 0.61152 +2000 295 0.60084 +2000 296 0.53080 +2000 297 2.79402 +2000 298 1.26700 +2000 299 0.02096 +2000 300 2.26924 +2000 301 2.28696 +2000 302 3.09711 +2000 303 1.97755 +2000 304 3.69866 +2000 305 0.90350 +2000 306 3.58548 +2000 307 3.74318 +2000 308 4.04181 +2000 309 3.85546 +2000 310 2.06685 +2000 311 3.16108 +2000 312 4.06781 +2000 313 3.51981 +2000 314 4.20352 +2000 315 3.37806 +2000 316 1.02675 +2000 317 0.41870 +2000 318 2.68387 +2000 319 4.46590 +2000 320 3.06648 +2000 321 5.47242 +2000 322 5.40818 +2000 323 5.15674 +2000 324 2.13173 +2000 325 3.33417 +2000 326 3.30890 +2000 327 2.24931 +2000 328 1.06697 +2000 329 2.83319 +2000 330 1.88593 +2000 331 2.14274 +2000 332 2.95137 +2000 333 1.44132 +2000 334 2.71434 +2000 335 3.19070 +2000 336 2.27999 +2000 337 1.93238 +2000 338 2.03494 +2000 339 1.22607 +2000 340 2.02941 +2000 341 0.96302 +2000 342 0.39825 +2000 343 1.84338 +2000 344 3.11956 +2000 345 3.14551 +2000 346 0.96138 +2000 347 0.90664 +2000 348 1.70477 +2000 349 1.79595 +2000 350 1.18291 +2000 351 1.05040 +2000 352 1.33673 +2000 353 1.73385 +2000 354 1.51956 +2000 355 3.95717 +2000 356 4.18012 +2000 357 3.40947 +2000 358 4.35583 +2000 359 4.31621 +2000 360 3.53970 +2000 361 2.91814 +2000 362 3.27700 +2000 363 3.06054 +2000 364 2.24456 +2000 365 3.55084 +2000 366 4.13992 +2001 1 2.54046 +2001 2 0.09749 +2001 3 1.19511 +2001 4 1.94702 +2001 5 0.30072 +2001 6 0.96332 +2001 7 1.64584 +2001 8 1.24418 +2001 9 1.26289 +2001 10 3.97855 +2001 11 3.57098 +2001 12 3.17108 +2001 13 2.45158 +2001 14 0.58261 +2001 15 3.50671 +2001 16 3.85235 +2001 17 1.28694 +2001 18 1.65017 +2001 19 3.81553 +2001 20 3.54847 +2001 21 3.95426 +2001 22 1.33779 +2001 23 3.99165 +2001 24 4.09236 +2001 25 4.58929 +2001 26 4.73159 +2001 27 0.71120 +2001 28 2.38210 +2001 29 2.11922 +2001 30 1.66024 +2001 31 2.13046 +2001 32 0.11777 +2001 33 1.57741 +2001 34 3.67677 +2001 35 4.42824 +2001 36 2.19016 +2001 37 2.29714 +2001 38 2.22340 +2001 39 1.01074 +2001 40 1.44088 +2001 41 3.00942 +2001 42 3.18720 +2001 43 1.51261 +2001 44 1.90528 +2001 45 2.04332 +2001 46 0.83987 +2001 47 1.48047 +2001 48 0.69098 +2001 49 2.11857 +2001 50 2.13390 +2001 51 0.78719 +2001 52 1.67863 +2001 53 2.26467 +2001 54 0.75136 +2001 55 0.99192 +2001 56 1.25253 +2001 57 1.76708 +2001 58 1.77194 +2001 59 2.09292 +2001 60 1.19620 +2001 61 1.15535 +2001 62 1.61349 +2001 63 1.78153 +2001 64 0.76945 +2001 65 1.76441 +2001 66 1.71153 +2001 67 2.08596 +2001 68 3.40648 +2001 69 0.71888 +2001 70 1.87686 +2001 71 1.69321 +2001 72 2.42331 +2001 73 1.57433 +2001 74 1.03839 +2001 75 1.31017 +2001 76 2.15494 +2001 77 2.04185 +2001 78 2.36687 +2001 79 0.56932 +2001 80 0.15869 +2001 81 0.42575 +2001 82 0.41056 +2001 83 1.11357 +2001 84 1.72494 +2001 85 2.28352 +2001 86 3.21713 +2001 87 3.73865 +2001 88 2.93476 +2001 89 1.17529 +2001 90 2.38781 +2001 91 4.19092 +2001 92 2.14436 +2001 93 3.76523 +2001 94 3.58487 +2001 95 4.15309 +2001 96 2.07835 +2001 97 1.81651 +2001 98 0.07277 +2001 99 2.12004 +2001 100 1.40674 +2001 101 3.39005 +2001 102 2.03494 +2001 103 4.61437 +2001 104 1.78563 +2001 105 0.88866 +2001 106 1.12479 +2001 107 1.28525 +2001 108 2.42976 +2001 109 1.17594 +2001 110 1.41411 +2001 111 1.97534 +2001 112 1.16459 +2001 113 2.14502 +2001 114 0.84288 +2001 115 0.59938 +2001 116 0.91313 +2001 117 1.80456 +2001 118 2.20686 +2001 119 2.72606 +2001 120 3.72180 +2001 121 4.05480 +2001 122 2.85778 +2001 123 3.18196 +2001 124 4.40384 +2001 125 1.48870 +2001 126 1.71123 +2001 127 1.99723 +2001 128 1.12489 +2001 129 4.29716 +2001 130 1.90195 +2001 131 1.21000 +2001 132 0.54717 +2001 133 2.14980 +2001 134 3.19111 +2001 135 2.66272 +2001 136 2.92390 +2001 137 2.16540 +2001 138 3.00242 +2001 139 4.32528 +2001 140 4.86057 +2001 141 2.88358 +2001 142 4.64735 +2001 143 3.27314 +2001 144 3.51007 +2001 145 3.89817 +2001 146 2.88416 +2001 147 1.64876 +2001 148 1.94410 +2001 149 3.68477 +2001 150 1.82995 +2001 151 1.07708 +2001 152 1.93970 +2001 153 1.47133 +2001 154 0.60959 +2001 155 0.96028 +2001 156 0.54059 +2001 157 0.73368 +2001 158 1.21336 +2001 159 2.31947 +2001 160 2.82281 +2001 161 3.65713 +2001 162 1.22390 +2001 163 1.46476 +2001 164 1.27839 +2001 165 2.05408 +2001 166 2.29085 +2001 167 1.09237 +2001 168 2.10943 +2001 169 1.81814 +2001 170 1.01212 +2001 171 1.26475 +2001 172 1.44653 +2001 173 1.35859 +2001 174 2.19756 +2001 175 3.30514 +2001 176 2.87538 +2001 177 2.18337 +2001 178 1.38443 +2001 179 2.48395 +2001 180 1.24675 +2001 181 2.50101 +2001 182 2.31299 +2001 183 1.60921 +2001 184 1.72816 +2001 185 3.27574 +2001 186 3.81215 +2001 187 3.39936 +2001 188 3.27660 +2001 189 2.30505 +2001 190 1.26239 +2001 191 1.61549 +2001 192 1.89505 +2001 193 1.38018 +2001 194 1.03452 +2001 195 0.38850 +2001 196 1.28081 +2001 197 1.81368 +2001 198 1.51894 +2001 199 2.19129 +2001 200 1.99380 +2001 201 3.17890 +2001 202 3.24618 +2001 203 2.68543 +2001 204 2.28862 +2001 205 1.79540 +2001 206 1.98726 +2001 207 2.08926 +2001 208 0.81547 +2001 209 1.78349 +2001 210 2.00132 +2001 211 0.86508 +2001 212 2.23316 +2001 213 1.72070 +2001 214 2.47417 +2001 215 1.08674 +2001 216 2.09171 +2001 217 1.52959 +2001 218 0.92120 +2001 219 1.70553 +2001 220 2.17249 +2001 221 1.23819 +2001 222 2.09703 +2001 223 2.51512 +2001 224 1.61292 +2001 225 2.50165 +2001 226 3.87874 +2001 227 3.43161 +2001 228 1.31994 +2001 229 1.38445 +2001 230 2.65924 +2001 231 4.03755 +2001 232 2.06710 +2001 233 1.52117 +2001 234 1.50866 +2001 235 2.64538 +2001 236 2.43508 +2001 237 1.38670 +2001 238 1.66135 +2001 239 0.36537 +2001 240 2.26842 +2001 241 3.25623 +2001 242 3.25363 +2001 243 3.21143 +2001 244 2.74210 +2001 245 1.90160 +2001 246 4.28209 +2001 247 2.87778 +2001 248 1.11412 +2001 249 2.86076 +2001 250 2.45916 +2001 251 1.58028 +2001 252 1.96941 +2001 253 1.53325 +2001 254 0.68855 +2001 255 1.02824 +2001 256 2.07332 +2001 257 2.95393 +2001 258 1.05971 +2001 259 1.87492 +2001 260 3.24308 +2001 261 2.75581 +2001 262 2.07916 +2001 263 3.69868 +2001 264 3.78703 +2001 265 1.20091 +2001 266 2.21010 +2001 267 0.73831 +2001 268 1.24675 +2001 269 1.47251 +2001 270 1.78056 +2001 271 1.75154 +2001 272 2.13508 +2001 273 0.37320 +2001 274 0.85272 +2001 275 1.04904 +2001 276 2.04721 +2001 277 2.59203 +2001 278 3.94393 +2001 279 3.01497 +2001 280 1.29729 +2001 281 3.48122 +2001 282 0.81601 +2001 283 3.55747 +2001 284 1.78429 +2001 285 0.57113 +2001 286 1.50502 +2001 287 1.70967 +2001 288 3.70579 +2001 289 2.94687 +2001 290 2.01276 +2001 291 1.79275 +2001 292 2.43739 +2001 293 0.49216 +2001 294 2.84480 +2001 295 4.25918 +2001 296 2.78341 +2001 297 2.32575 +2001 298 2.74147 +2001 299 1.78686 +2001 300 1.48663 +2001 301 5.03183 +2001 302 4.09102 +2001 303 3.61959 +2001 304 3.93844 +2001 305 3.89572 +2001 306 2.72129 +2001 307 0.58912 +2001 308 3.54841 +2001 309 3.91070 +2001 310 3.34194 +2001 311 1.45561 +2001 312 1.34679 +2001 313 1.65601 +2001 314 3.28880 +2001 315 2.03066 +2001 316 1.91330 +2001 317 3.85550 +2001 318 2.44132 +2001 319 1.23271 +2001 320 2.16628 +2001 321 0.84000 +2001 322 2.14777 +2001 323 2.14476 +2001 324 1.91413 +2001 325 2.62993 +2001 326 1.19146 +2001 327 2.54742 +2001 328 3.01113 +2001 329 1.51053 +2001 330 2.43072 +2001 331 2.43384 +2001 332 2.60035 +2001 333 3.96795 +2001 334 3.64538 +2001 335 3.32442 +2001 336 2.78866 +2001 337 2.63656 +2001 338 2.30227 +2001 339 3.59359 +2001 340 3.78486 +2001 341 2.42681 +2001 342 1.67639 +2001 343 2.43716 +2001 344 3.02038 +2001 345 2.23330 +2001 346 2.65065 +2001 347 0.40669 +2001 348 1.76762 +2001 349 1.98752 +2001 350 1.82991 +2001 351 2.35508 +2001 352 3.11254 +2001 353 2.34133 +2001 354 0.70908 +2001 355 2.05134 +2001 356 2.95449 +2001 357 2.12131 +2001 358 2.94572 +2001 359 1.79833 +2001 360 2.20065 +2001 361 3.84324 +2001 362 4.45968 +2001 363 4.40676 +2001 364 3.84443 +2001 365 2.02551 +2002 1 2.06001 +2002 2 1.44350 +2002 3 3.43647 +2002 4 5.04324 +2002 5 1.82731 +2002 6 1.94737 +2002 7 0.99346 +2002 8 1.98827 +2002 9 0.54202 +2002 10 2.96449 +2002 11 1.14076 +2002 12 1.94892 +2002 13 2.08939 +2002 14 3.16546 +2002 15 2.84356 +2002 16 1.77159 +2002 17 1.63000 +2002 18 2.28567 +2002 19 1.48749 +2002 20 1.36635 +2002 21 0.61740 +2002 22 1.43077 +2002 23 1.51212 +2002 24 0.57211 +2002 25 1.23444 +2002 26 1.62754 +2002 27 0.88255 +2002 28 1.77911 +2002 29 0.90564 +2002 30 0.52863 +2002 31 1.71587 +2002 32 2.93981 +2002 33 1.90849 +2002 34 1.31286 +2002 35 2.73814 +2002 36 4.04387 +2002 37 0.26618 +2002 38 1.60060 +2002 39 1.85884 +2002 40 3.87677 +2002 41 3.10631 +2002 42 0.98203 +2002 43 3.24727 +2002 44 4.02781 +2002 45 3.50430 +2002 46 2.79039 +2002 47 1.57448 +2002 48 0.77393 +2002 49 2.55185 +2002 50 0.90570 +2002 51 1.02713 +2002 52 2.55319 +2002 53 3.02380 +2002 54 3.36086 +2002 55 1.76190 +2002 56 0.95512 +2002 57 1.87076 +2002 58 2.27422 +2002 59 2.36232 +2002 60 2.95392 +2002 61 2.97807 +2002 62 4.03531 +2002 63 1.28258 +2002 64 1.31170 +2002 65 0.42580 +2002 66 1.37683 +2002 67 1.51261 +2002 68 1.84691 +2002 69 3.45591 +2002 70 2.40892 +2002 71 1.93783 +2002 72 0.64716 +2002 73 0.33203 +2002 74 2.85009 +2002 75 3.01870 +2002 76 4.34950 +2002 77 3.37473 +2002 78 2.93798 +2002 79 2.00458 +2002 80 1.86490 +2002 81 0.67532 +2002 82 0.57348 +2002 83 0.19343 +2002 84 2.05338 +2002 85 0.91188 +2002 86 2.45317 +2002 87 3.85900 +2002 88 3.91539 +2002 89 2.69904 +2002 90 3.55801 +2002 91 3.06898 +2002 92 2.99266 +2002 93 2.67645 +2002 94 2.02423 +2002 95 1.59762 +2002 96 4.24426 +2002 97 1.22838 +2002 98 1.81387 +2002 99 0.96129 +2002 100 0.39685 +2002 101 0.63555 +2002 102 0.67343 +2002 103 0.54062 +2002 104 1.08421 +2002 105 1.94411 +2002 106 0.38530 +2002 107 0.44690 +2002 108 1.17090 +2002 109 0.60792 +2002 110 0.82631 +2002 111 0.04840 +2002 112 2.80259 +2002 113 3.65012 +2002 114 2.69806 +2002 115 2.22550 +2002 116 0.77847 +2002 117 1.30584 +2002 118 3.16158 +2002 119 0.51817 +2002 120 2.58669 +2002 121 4.07331 +2002 122 4.97460 +2002 123 6.19261 +2002 124 3.16246 +2002 125 1.44675 +2002 126 3.37464 +2002 127 3.20937 +2002 128 2.54891 +2002 129 1.59789 +2002 130 1.30779 +2002 131 0.41931 +2002 132 2.05611 +2002 133 1.50411 +2002 134 2.04079 +2002 135 1.35979 +2002 136 1.58341 +2002 137 1.72616 +2002 138 2.07132 +2002 139 1.57665 +2002 140 3.55341 +2002 141 2.13162 +2002 142 3.86725 +2002 143 4.41799 +2002 144 4.29349 +2002 145 5.64263 +2002 146 5.29513 +2002 147 5.12578 +2002 148 3.97766 +2002 149 3.18941 +2002 150 1.75070 +2002 151 1.37272 +2002 152 2.80978 +2002 153 4.70688 +2002 154 3.23695 +2002 155 4.66726 +2002 156 5.19793 +2002 157 3.28892 +2002 158 4.07463 +2002 159 2.59933 +2002 160 3.42691 +2002 161 5.02489 +2002 162 3.76889 +2002 163 2.25403 +2002 164 3.62905 +2002 165 4.20989 +2002 166 1.77351 +2002 167 2.53184 +2002 168 2.66595 +2002 169 0.93726 +2002 170 4.89498 +2002 171 1.61273 +2002 172 3.26818 +2002 173 2.19080 +2002 174 3.16806 +2002 175 3.08399 +2002 176 2.38819 +2002 177 0.98117 +2002 178 2.13096 +2002 179 1.80001 +2002 180 1.98686 +2002 181 0.48484 +2002 182 3.16644 +2002 183 3.74814 +2002 184 2.21015 +2002 185 2.87525 +2002 186 3.91785 +2002 187 4.03978 +2002 188 3.75973 +2002 189 4.36234 +2002 190 2.16399 +2002 191 1.49087 +2002 192 4.92017 +2002 193 5.07641 +2002 194 3.13169 +2002 195 3.34219 +2002 196 1.46905 +2002 197 0.54851 +2002 198 1.15461 +2002 199 1.71283 +2002 200 3.72712 +2002 201 2.61328 +2002 202 1.09129 +2002 203 3.44315 +2002 204 1.41291 +2002 205 2.71433 +2002 206 3.17611 +2002 207 4.94070 +2002 208 4.17085 +2002 209 3.25725 +2002 210 2.15065 +2002 211 1.95371 +2002 212 0.54342 +2002 213 0.69545 +2002 214 0.97930 +2002 215 2.06574 +2002 216 2.44634 +2002 217 4.65652 +2002 218 1.04308 +2002 219 3.35833 +2002 220 3.49701 +2002 221 3.75576 +2002 222 4.94636 +2002 223 4.14236 +2002 224 2.14827 +2002 225 2.40867 +2002 226 1.97352 +2002 227 0.82589 +2002 228 2.12730 +2002 229 4.14466 +2002 230 4.31482 +2002 231 3.47601 +2002 232 2.43131 +2002 233 2.00367 +2002 234 0.54067 +2002 235 3.23095 +2002 236 4.30927 +2002 237 4.28078 +2002 238 2.65624 +2002 239 2.29204 +2002 240 2.04042 +2002 241 1.14166 +2002 242 1.17634 +2002 243 1.17746 +2002 244 1.28796 +2002 245 2.87648 +2002 246 2.08904 +2002 247 2.66841 +2002 248 2.35905 +2002 249 0.44273 +2002 250 1.98489 +2002 251 2.39215 +2002 252 1.91888 +2002 253 2.18304 +2002 254 1.79048 +2002 255 4.05684 +2002 256 2.68883 +2002 257 2.85520 +2002 258 2.60829 +2002 259 2.98438 +2002 260 2.20598 +2002 261 4.07386 +2002 262 4.07850 +2002 263 4.67895 +2002 264 3.29438 +2002 265 3.12927 +2002 266 3.24828 +2002 267 3.49134 +2002 268 2.28006 +2002 269 4.40811 +2002 270 3.72065 +2002 271 3.84641 +2002 272 4.25649 +2002 273 2.74502 +2002 274 4.34575 +2002 275 5.45187 +2002 276 2.37569 +2002 277 2.78739 +2002 278 2.40274 +2002 279 3.04501 +2002 280 2.88295 +2002 281 0.75153 +2002 282 2.23306 +2002 283 3.32678 +2002 284 3.14281 +2002 285 3.69455 +2002 286 1.32023 +2002 287 0.84778 +2002 288 2.47364 +2002 289 4.21906 +2002 290 3.43185 +2002 291 4.50319 +2002 292 3.99466 +2002 293 4.44206 +2002 294 4.14430 +2002 295 2.89912 +2002 296 1.06829 +2002 297 2.50960 +2002 298 4.69942 +2002 299 3.49761 +2002 300 3.94288 +2002 301 3.43032 +2002 302 2.15769 +2002 303 3.41660 +2002 304 3.90432 +2002 305 2.79430 +2002 306 2.54440 +2002 307 4.99911 +2002 308 3.50919 +2002 309 4.56209 +2002 310 3.21677 +2002 311 3.21372 +2002 312 4.40527 +2002 313 5.41722 +2002 314 5.84927 +2002 315 2.66298 +2002 316 2.22579 +2002 317 2.61410 +2002 318 3.52210 +2002 319 3.03636 +2002 320 1.39324 +2002 321 1.71766 +2002 322 3.34124 +2002 323 3.30802 +2002 324 2.35042 +2002 325 2.17303 +2002 326 0.69121 +2002 327 3.07384 +2002 328 0.99171 +2002 329 0.62382 +2002 330 1.26249 +2002 331 0.71272 +2002 332 1.50565 +2002 333 3.05750 +2002 334 2.32128 +2002 335 0.94184 +2002 336 1.03449 +2002 337 1.11017 +2002 338 1.33696 +2002 339 2.38364 +2002 340 3.41956 +2002 341 3.66453 +2002 342 3.87522 +2002 343 4.27879 +2002 344 3.89463 +2002 345 2.67420 +2002 346 4.60050 +2002 347 4.68732 +2002 348 4.47068 +2002 349 4.12312 +2002 350 2.07352 +2002 351 1.46132 +2002 352 1.99134 +2002 353 0.74504 +2002 354 2.27110 +2002 355 0.89768 +2002 356 3.41822 +2002 357 3.19659 +2002 358 2.92180 +2002 359 3.34876 +2002 360 1.77010 +2002 361 1.79036 +2002 362 2.41587 +2002 363 0.58327 +2002 364 0.81619 +2002 365 1.19021 +2003 1 1.17948 +2003 2 1.17363 +2003 3 1.70175 +2003 4 1.96710 +2003 5 1.15449 +2003 6 2.22087 +2003 7 4.79556 +2003 8 4.75247 +2003 9 4.22222 +2003 10 3.23040 +2003 11 1.61863 +2003 12 2.37709 +2003 13 2.79930 +2003 14 2.54633 +2003 15 1.82153 +2003 16 0.62192 +2003 17 1.42135 +2003 18 1.68500 +2003 19 2.65640 +2003 20 3.10583 +2003 21 3.35982 +2003 22 3.72857 +2003 23 4.76580 +2003 24 2.75592 +2003 25 3.03918 +2003 26 4.31981 +2003 27 4.50105 +2003 28 3.65786 +2003 29 1.45035 +2003 30 1.73811 +2003 31 2.00929 +2003 32 2.54612 +2003 33 0.74675 +2003 34 2.13038 +2003 35 1.42325 +2003 36 1.14960 +2003 37 0.67547 +2003 38 1.85569 +2003 39 2.82938 +2003 40 0.63363 +2003 41 1.21025 +2003 42 0.10689 +2003 43 1.09516 +2003 44 1.58698 +2003 45 1.61446 +2003 46 0.87865 +2003 47 1.80363 +2003 48 2.54057 +2003 49 2.29166 +2003 50 3.49425 +2003 51 3.89159 +2003 52 0.49853 +2003 53 1.90290 +2003 54 1.38666 +2003 55 3.74184 +2003 56 5.10326 +2003 57 5.25732 +2003 58 3.48961 +2003 59 1.81035 +2003 60 3.13712 +2003 61 2.45253 +2003 62 3.04887 +2003 63 0.30703 +2003 64 0.20505 +2003 65 2.02433 +2003 66 1.71437 +2003 67 1.86244 +2003 68 2.24932 +2003 69 3.64770 +2003 70 4.24309 +2003 71 2.59314 +2003 72 2.10457 +2003 73 0.70586 +2003 74 1.17280 +2003 75 0.08289 +2003 76 1.16595 +2003 77 0.97985 +2003 78 0.58431 +2003 79 0.63433 +2003 80 0.84072 +2003 81 1.65668 +2003 82 1.05283 +2003 83 1.95816 +2003 84 2.30869 +2003 85 2.72385 +2003 86 4.49179 +2003 87 1.93313 +2003 88 0.62434 +2003 89 2.26609 +2003 90 0.83220 +2003 91 0.65373 +2003 92 0.93464 +2003 93 0.98805 +2003 94 2.00724 +2003 95 2.18013 +2003 96 2.18133 +2003 97 1.84086 +2003 98 1.52124 +2003 99 2.55902 +2003 100 1.41300 +2003 101 0.90021 +2003 102 2.01040 +2003 103 2.83071 +2003 104 3.17743 +2003 105 2.65474 +2003 106 1.77262 +2003 107 1.30702 +2003 108 2.16488 +2003 109 1.73757 +2003 110 1.25156 +2003 111 1.29779 +2003 112 1.44138 +2003 113 3.39137 +2003 114 2.67652 +2003 115 2.15133 +2003 116 1.32098 +2003 117 2.08728 +2003 118 0.70206 +2003 119 0.96654 +2003 120 2.14679 +2003 121 3.82218 +2003 122 1.13725 +2003 123 2.23028 +2003 124 1.35596 +2003 125 0.80489 +2003 126 2.04515 +2003 127 1.05546 +2003 128 1.48619 +2003 129 2.14353 +2003 130 2.79943 +2003 131 0.64227 +2003 132 1.60062 +2003 133 1.11843 +2003 134 2.00014 +2003 135 0.62775 +2003 136 0.32273 +2003 137 1.12166 +2003 138 3.33332 +2003 139 3.37479 +2003 140 3.15764 +2003 141 2.27491 +2003 142 1.33628 +2003 143 1.06534 +2003 144 1.29244 +2003 145 2.07933 +2003 146 1.23078 +2003 147 1.98086 +2003 148 2.58425 +2003 149 4.48565 +2003 150 4.83377 +2003 151 3.74405 +2003 152 3.30610 +2003 153 1.68219 +2003 154 1.78717 +2003 155 1.11250 +2003 156 2.51891 +2003 157 4.40178 +2003 158 1.17252 +2003 159 1.75620 +2003 160 3.92873 +2003 161 3.44792 +2003 162 3.42740 +2003 163 1.43444 +2003 164 0.83624 +2003 165 2.83624 +2003 166 3.39112 +2003 167 2.33624 +2003 168 0.60666 +2003 169 2.64863 +2003 170 3.41908 +2003 171 2.03936 +2003 172 1.16611 +2003 173 1.69572 +2003 174 1.77367 +2003 175 2.94380 +2003 176 2.23471 +2003 177 1.96809 +2003 178 4.16262 +2003 179 4.25298 +2003 180 2.71771 +2003 181 3.07769 +2003 182 3.35982 +2003 183 1.44393 +2003 184 2.63000 +2003 185 2.36817 +2003 186 3.18991 +2003 187 1.70905 +2003 188 1.33048 +2003 189 0.60388 +2003 190 1.59279 +2003 191 2.27160 +2003 192 3.31750 +2003 193 1.52279 +2003 194 0.96389 +2003 195 1.34295 +2003 196 2.10382 +2003 197 1.84767 +2003 198 2.37097 +2003 199 2.66256 +2003 200 2.17052 +2003 201 1.48421 +2003 202 1.28194 +2003 203 2.04140 +2003 204 1.19986 +2003 205 1.27912 +2003 206 0.86609 +2003 207 1.54789 +2003 208 4.49279 +2003 209 3.80274 +2003 210 1.88407 +2003 211 1.70072 +2003 212 1.65833 +2003 213 3.28283 +2003 214 3.49206 +2003 215 2.21847 +2003 216 1.00087 +2003 217 0.18380 +2003 218 0.49868 +2003 219 0.91970 +2003 220 1.25573 +2003 221 2.24997 +2003 222 3.02160 +2003 223 3.81042 +2003 224 3.03551 +2003 225 0.72469 +2003 226 2.32830 +2003 227 4.03151 +2003 228 3.71896 +2003 229 2.86093 +2003 230 0.87298 +2003 231 4.31768 +2003 232 3.90208 +2003 233 2.73195 +2003 234 3.62766 +2003 235 3.59491 +2003 236 2.03506 +2003 237 1.73803 +2003 238 2.70890 +2003 239 1.80964 +2003 240 2.46026 +2003 241 2.22867 +2003 242 0.16875 +2003 243 2.09603 +2003 244 3.08053 +2003 245 3.79547 +2003 246 2.51569 +2003 247 1.95300 +2003 248 3.57955 +2003 249 2.07355 +2003 250 0.56293 +2003 251 2.88855 +2003 252 1.97833 +2003 253 2.70326 +2003 254 0.82988 +2003 255 2.43655 +2003 256 2.56313 +2003 257 0.77170 +2003 258 1.99734 +2003 259 2.94123 +2003 260 5.51459 +2003 261 3.47574 +2003 262 1.69995 +2003 263 0.65678 +2003 264 2.97271 +2003 265 3.55878 +2003 266 0.85772 +2003 267 3.52988 +2003 268 3.20614 +2003 269 3.62670 +2003 270 3.99942 +2003 271 5.79480 +2003 272 3.49671 +2003 273 4.53930 +2003 274 4.29087 +2003 275 4.13100 +2003 276 3.39916 +2003 277 3.64920 +2003 278 0.79980 +2003 279 0.97705 +2003 280 1.83670 +2003 281 3.40734 +2003 282 2.80984 +2003 283 1.11553 +2003 284 2.66611 +2003 285 1.43369 +2003 286 3.75816 +2003 287 0.99791 +2003 288 0.81936 +2003 289 2.76395 +2003 290 0.65642 +2003 291 1.68994 +2003 292 1.02197 +2003 293 1.29457 +2003 294 1.69407 +2003 295 0.65457 +2003 296 2.94100 +2003 297 3.42559 +2003 298 2.53219 +2003 299 0.78127 +2003 300 2.31944 +2003 301 2.12732 +2003 302 1.68344 +2003 303 3.39543 +2003 304 2.45478 +2003 305 4.10966 +2003 306 3.18881 +2003 307 2.93829 +2003 308 1.42416 +2003 309 2.80645 +2003 310 3.37875 +2003 311 3.17588 +2003 312 0.76308 +2003 313 1.01664 +2003 314 3.25054 +2003 315 3.89225 +2003 316 3.52405 +2003 317 1.87415 +2003 318 3.26449 +2003 319 2.57955 +2003 320 3.54428 +2003 321 3.08600 +2003 322 1.38783 +2003 323 2.61748 +2003 324 4.80308 +2003 325 4.79029 +2003 326 3.65018 +2003 327 1.96471 +2003 328 2.60277 +2003 329 2.03561 +2003 330 1.36461 +2003 331 2.02548 +2003 332 2.69046 +2003 333 3.46719 +2003 334 0.61694 +2003 335 2.57848 +2003 336 0.60819 +2003 337 1.41822 +2003 338 1.69262 +2003 339 3.28191 +2003 340 2.99843 +2003 341 0.87105 +2003 342 1.37744 +2003 343 0.82629 +2003 344 1.23605 +2003 345 0.89084 +2003 346 1.26355 +2003 347 2.79391 +2003 348 3.25674 +2003 349 2.67985 +2003 350 2.45894 +2003 351 0.47356 +2003 352 0.22149 +2003 353 2.45045 +2003 354 3.51051 +2003 355 2.54051 +2003 356 1.82482 +2003 357 3.41996 +2003 358 4.19608 +2003 359 4.80047 +2003 360 3.65137 +2003 361 3.16120 +2003 362 0.94675 +2003 363 2.40384 +2003 364 1.61646 +2003 365 0.43688 +2004 1 0.87467 +2004 2 1.41799 +2004 3 1.66570 +2004 4 1.76769 +2004 5 3.07358 +2004 6 1.30089 +2004 7 1.78717 +2004 8 2.80145 +2004 9 0.28932 +2004 10 0.81411 +2004 11 1.51407 +2004 12 1.09706 +2004 13 0.73958 +2004 14 2.51814 +2004 15 0.29787 +2004 16 1.59456 +2004 17 2.54359 +2004 18 2.24934 +2004 19 1.31269 +2004 20 1.12594 +2004 21 3.24827 +2004 22 2.85510 +2004 23 1.97677 +2004 24 1.18837 +2004 25 1.30854 +2004 26 0.94750 +2004 27 1.27014 +2004 28 1.63054 +2004 29 1.99717 +2004 30 1.45837 +2004 31 3.13893 +2004 32 2.95008 +2004 33 2.16711 +2004 34 0.56369 +2004 35 1.24066 +2004 36 1.20965 +2004 37 2.95191 +2004 38 2.58776 +2004 39 1.22145 +2004 40 2.23263 +2004 41 2.88844 +2004 42 3.49414 +2004 43 0.96171 +2004 44 3.01968 +2004 45 2.56166 +2004 46 4.42903 +2004 47 3.80345 +2004 48 3.85090 +2004 49 3.93437 +2004 50 5.31295 +2004 51 5.28227 +2004 52 4.71187 +2004 53 0.59543 +2004 54 4.31483 +2004 55 4.63491 +2004 56 0.98738 +2004 57 3.63037 +2004 58 5.85810 +2004 59 1.28542 +2004 60 3.22713 +2004 61 2.66821 +2004 62 2.76381 +2004 63 3.28730 +2004 64 0.92758 +2004 65 2.22236 +2004 66 0.90230 +2004 67 0.71402 +2004 68 0.96203 +2004 69 0.90723 +2004 70 3.00461 +2004 71 0.69717 +2004 72 1.34123 +2004 73 2.53734 +2004 74 0.60424 +2004 75 1.23480 +2004 76 1.59385 +2004 77 1.60650 +2004 78 2.47927 +2004 79 2.94920 +2004 80 2.92393 +2004 81 2.75745 +2004 82 3.58418 +2004 83 3.86496 +2004 84 0.73801 +2004 85 0.55278 +2004 86 3.07626 +2004 87 4.12771 +2004 88 2.83143 +2004 89 3.20017 +2004 90 0.70146 +2004 91 1.03815 +2004 92 2.57917 +2004 93 2.26669 +2004 94 3.16881 +2004 95 2.16542 +2004 96 2.24988 +2004 97 2.40180 +2004 98 2.13668 +2004 99 2.94286 +2004 100 2.94504 +2004 101 3.71065 +2004 102 4.18271 +2004 103 1.17292 +2004 104 1.01595 +2004 105 0.79307 +2004 106 2.68183 +2004 107 0.62504 +2004 108 0.69791 +2004 109 2.47686 +2004 110 1.61583 +2004 111 0.38677 +2004 112 1.28272 +2004 113 1.29851 +2004 114 0.19452 +2004 115 0.57863 +2004 116 0.98566 +2004 117 2.38969 +2004 118 2.27210 +2004 119 2.47045 +2004 120 0.65244 +2004 121 1.93349 +2004 122 1.39694 +2004 123 2.35953 +2004 124 4.99327 +2004 125 3.63419 +2004 126 3.45348 +2004 127 3.37372 +2004 128 1.83482 +2004 129 0.34883 +2004 130 1.37542 +2004 131 2.68992 +2004 132 2.89879 +2004 133 1.15985 +2004 134 1.83564 +2004 135 3.99031 +2004 136 2.75738 +2004 137 2.15622 +2004 138 2.32589 +2004 139 2.42545 +2004 140 1.77141 +2004 141 1.26729 +2004 142 1.73702 +2004 143 3.41312 +2004 144 1.98024 +2004 145 2.49011 +2004 146 2.10777 +2004 147 2.48371 +2004 148 3.88426 +2004 149 3.31617 +2004 150 2.52226 +2004 151 4.05690 +2004 152 3.94849 +2004 153 3.74973 +2004 154 2.66836 +2004 155 3.32028 +2004 156 2.75751 +2004 157 5.32441 +2004 158 3.36161 +2004 159 1.67142 +2004 160 1.74244 +2004 161 1.21929 +2004 162 1.08943 +2004 163 2.12409 +2004 164 0.65462 +2004 165 1.60460 +2004 166 1.51623 +2004 167 2.25572 +2004 168 0.76655 +2004 169 4.28934 +2004 170 1.92898 +2004 171 3.98554 +2004 172 4.47728 +2004 173 4.55397 +2004 174 3.02436 +2004 175 1.81470 +2004 176 1.87894 +2004 177 0.42381 +2004 178 2.60593 +2004 179 2.35686 +2004 180 1.41119 +2004 181 5.00264 +2004 182 5.60119 +2004 183 3.55822 +2004 184 4.74809 +2004 185 2.87404 +2004 186 1.08358 +2004 187 0.58717 +2004 188 1.27481 +2004 189 1.48143 +2004 190 2.27671 +2004 191 3.58522 +2004 192 2.30235 +2004 193 1.46662 +2004 194 1.29998 +2004 195 1.33280 +2004 196 2.24083 +2004 197 1.00691 +2004 198 1.09482 +2004 199 3.76215 +2004 200 2.30707 +2004 201 1.58126 +2004 202 1.80601 +2004 203 1.81395 +2004 204 3.44979 +2004 205 2.37036 +2004 206 1.47796 +2004 207 0.45034 +2004 208 2.22058 +2004 209 1.63678 +2004 210 2.71113 +2004 211 1.67553 +2004 212 1.67590 +2004 213 1.36396 +2004 214 1.45181 +2004 215 1.44472 +2004 216 0.92529 +2004 217 1.71642 +2004 218 2.78704 +2004 219 2.48702 +2004 220 3.68184 +2004 221 3.53231 +2004 222 2.62905 +2004 223 3.26171 +2004 224 3.55740 +2004 225 3.33919 +2004 226 2.39879 +2004 227 3.56795 +2004 228 3.24774 +2004 229 5.19763 +2004 230 4.59370 +2004 231 2.05395 +2004 232 0.89161 +2004 233 0.96904 +2004 234 3.48015 +2004 235 3.87713 +2004 236 1.73940 +2004 237 1.62211 +2004 238 2.22116 +2004 239 1.72567 +2004 240 2.08083 +2004 241 1.94585 +2004 242 2.53171 +2004 243 1.47054 +2004 244 1.88372 +2004 245 2.52036 +2004 246 1.57888 +2004 247 2.11480 +2004 248 3.13602 +2004 249 1.90578 +2004 250 0.23407 +2004 251 0.32630 +2004 252 0.73237 +2004 253 1.91015 +2004 254 2.90502 +2004 255 2.51084 +2004 256 3.68259 +2004 257 3.46241 +2004 258 2.75150 +2004 259 2.62012 +2004 260 3.49670 +2004 261 3.15024 +2004 262 4.85458 +2004 263 3.10348 +2004 264 3.78856 +2004 265 6.12145 +2004 266 4.85452 +2004 267 4.21528 +2004 268 2.90819 +2004 269 1.74662 +2004 270 3.19051 +2004 271 3.98496 +2004 272 3.18659 +2004 273 1.81444 +2004 274 2.25470 +2004 275 2.09907 +2004 276 1.46154 +2004 277 4.71625 +2004 278 3.97171 +2004 279 2.65420 +2004 280 2.15583 +2004 281 2.23893 +2004 282 0.72592 +2004 283 2.19953 +2004 284 3.32092 +2004 285 4.80289 +2004 286 4.77655 +2004 287 4.16425 +2004 288 4.19877 +2004 289 4.28467 +2004 290 1.17254 +2004 291 2.00107 +2004 292 3.55508 +2004 293 1.91298 +2004 294 2.52154 +2004 295 1.06884 +2004 296 1.67652 +2004 297 2.39728 +2004 298 0.76143 +2004 299 1.87902 +2004 300 1.81321 +2004 301 1.23761 +2004 302 2.78255 +2004 303 3.67921 +2004 304 0.63360 +2004 305 1.78472 +2004 306 2.68570 +2004 307 1.90829 +2004 308 1.83876 +2004 309 1.06659 +2004 310 0.42254 +2004 311 1.54455 +2004 312 1.77942 +2004 313 2.42346 +2004 314 2.18399 +2004 315 1.23347 +2004 316 1.56124 +2004 317 2.45800 +2004 318 3.80723 +2004 319 4.38578 +2004 320 4.07808 +2004 321 3.20345 +2004 322 2.97550 +2004 323 0.78563 +2004 324 2.25855 +2004 325 2.74803 +2004 326 0.90177 +2004 327 2.18428 +2004 328 1.99449 +2004 329 1.35891 +2004 330 3.68366 +2004 331 3.82353 +2004 332 3.91296 +2004 333 5.49862 +2004 334 6.12151 +2004 335 4.16983 +2004 336 3.39522 +2004 337 4.51508 +2004 338 0.94420 +2004 339 4.72630 +2004 340 3.69834 +2004 341 2.87911 +2004 342 2.86138 +2004 343 4.77200 +2004 344 6.05844 +2004 345 5.21298 +2004 346 4.60965 +2004 347 3.35377 +2004 348 3.90713 +2004 349 1.10414 +2004 350 3.44668 +2004 351 4.68022 +2004 352 4.13785 +2004 353 3.91168 +2004 354 3.11396 +2004 355 2.41222 +2004 356 2.96613 +2004 357 3.23977 +2004 358 3.56544 +2004 359 2.92230 +2004 360 2.18243 +2004 361 2.44242 +2004 362 2.37589 +2004 363 4.74006 +2004 364 4.73538 +2004 365 1.74818 +2004 366 2.91925 +2005 1 3.65684 +2005 2 0.64054 +2005 3 1.76927 +2005 4 2.98784 +2005 5 2.92500 +2005 6 1.59196 +2005 7 3.23887 +2005 8 2.11456 +2005 9 0.93269 +2005 10 1.91989 +2005 11 0.65493 +2005 12 1.60711 +2005 13 3.19373 +2005 14 2.50589 +2005 15 0.19828 +2005 16 1.96655 +2005 17 3.70175 +2005 18 1.50150 +2005 19 2.00221 +2005 20 2.04295 +2005 21 1.88894 +2005 22 1.34966 +2005 23 1.06267 +2005 24 0.67326 +2005 25 2.29655 +2005 26 1.33647 +2005 27 1.22637 +2005 28 1.74430 +2005 29 2.94934 +2005 30 3.72108 +2005 31 3.34171 +2005 32 2.71570 +2005 33 1.84428 +2005 34 1.79918 +2005 35 3.97265 +2005 36 3.40159 +2005 37 1.97148 +2005 38 0.80071 +2005 39 0.22564 +2005 40 0.36834 +2005 41 2.28388 +2005 42 3.72976 +2005 43 2.42075 +2005 44 2.44378 +2005 45 2.11155 +2005 46 2.46171 +2005 47 2.35143 +2005 48 1.53196 +2005 49 0.92786 +2005 50 2.09896 +2005 51 2.41374 +2005 52 0.39581 +2005 53 1.29238 +2005 54 1.29560 +2005 55 1.48198 +2005 56 1.79558 +2005 57 3.02276 +2005 58 2.33127 +2005 59 1.09501 +2005 60 1.44849 +2005 61 3.65708 +2005 62 1.34645 +2005 63 2.38050 +2005 64 2.07806 +2005 65 2.62310 +2005 66 2.35131 +2005 67 1.88988 +2005 68 2.08760 +2005 69 1.83336 +2005 70 1.94321 +2005 71 0.78495 +2005 72 2.69455 +2005 73 2.44482 +2005 74 1.47384 +2005 75 2.78573 +2005 76 1.45152 +2005 77 2.11710 +2005 78 2.05487 +2005 79 0.93791 +2005 80 0.51280 +2005 81 1.01090 +2005 82 2.03786 +2005 83 2.45363 +2005 84 2.88158 +2005 85 1.92530 +2005 86 2.65537 +2005 87 1.05143 +2005 88 1.03646 +2005 89 0.35770 +2005 90 1.35257 +2005 91 1.71344 +2005 92 0.55958 +2005 93 1.66949 +2005 94 0.60599 +2005 95 1.42337 +2005 96 1.08709 +2005 97 0.70415 +2005 98 0.87601 +2005 99 1.20902 +2005 100 2.76120 +2005 101 2.85810 +2005 102 3.23447 +2005 103 1.66340 +2005 104 1.24413 +2005 105 0.14175 +2005 106 2.13622 +2005 107 1.23375 +2005 108 0.48804 +2005 109 2.27354 +2005 110 2.56270 +2005 111 2.05470 +2005 112 3.31599 +2005 113 4.22136 +2005 114 3.35016 +2005 115 3.45630 +2005 116 2.35475 +2005 117 2.44094 +2005 118 2.04318 +2005 119 2.42394 +2005 120 1.63304 +2005 121 1.27136 +2005 122 1.11936 +2005 123 3.49558 +2005 124 3.68635 +2005 125 1.97900 +2005 126 0.66406 +2005 127 2.28512 +2005 128 1.79485 +2005 129 1.94190 +2005 130 1.65511 +2005 131 2.27138 +2005 132 3.03596 +2005 133 3.09272 +2005 134 0.59158 +2005 135 3.52565 +2005 136 3.52194 +2005 137 1.59186 +2005 138 1.25230 +2005 139 1.83628 +2005 140 1.21397 +2005 141 2.51743 +2005 142 2.97642 +2005 143 1.32931 +2005 144 0.97523 +2005 145 1.15554 +2005 146 2.51798 +2005 147 3.21245 +2005 148 2.83569 +2005 149 3.08347 +2005 150 3.36116 +2005 151 4.31648 +2005 152 3.86436 +2005 153 4.87541 +2005 154 3.25833 +2005 155 2.54215 +2005 156 2.08665 +2005 157 1.39243 +2005 158 2.18160 +2005 159 0.67901 +2005 160 1.23853 +2005 161 1.46347 +2005 162 1.30462 +2005 163 3.23447 +2005 164 3.09607 +2005 165 3.95494 +2005 166 2.79877 +2005 167 2.31323 +2005 168 3.00039 +2005 169 1.58144 +2005 170 1.42263 +2005 171 2.80248 +2005 172 2.56008 +2005 173 2.15483 +2005 174 0.83377 +2005 175 2.77244 +2005 176 3.05583 +2005 177 2.54647 +2005 178 3.53740 +2005 179 4.53809 +2005 180 3.76098 +2005 181 2.37694 +2005 182 1.06984 +2005 183 0.37058 +2005 184 1.91046 +2005 185 3.04659 +2005 186 3.15179 +2005 187 2.74700 +2005 188 2.14386 +2005 189 4.13483 +2005 190 1.99963 +2005 191 1.92067 +2005 192 3.35864 +2005 193 2.87887 +2005 194 2.56037 +2005 195 3.54075 +2005 196 2.36559 +2005 197 4.13492 +2005 198 1.53500 +2005 199 0.56656 +2005 200 2.04266 +2005 201 2.84926 +2005 202 2.18422 +2005 203 2.87835 +2005 204 2.59156 +2005 205 1.67971 +2005 206 1.36102 +2005 207 1.63763 +2005 208 1.98359 +2005 209 1.72536 +2005 210 2.02503 +2005 211 1.55006 +2005 212 1.19478 +2005 213 2.43084 +2005 214 1.96763 +2005 215 1.30541 +2005 216 0.63469 +2005 217 1.53143 +2005 218 2.76483 +2005 219 1.23281 +2005 220 2.33954 +2005 221 3.35258 +2005 222 1.95283 +2005 223 1.72304 +2005 224 2.58124 +2005 225 2.82190 +2005 226 1.83854 +2005 227 1.29615 +2005 228 1.39749 +2005 229 1.33263 +2005 230 0.89016 +2005 231 0.29012 +2005 232 1.20806 +2005 233 1.52212 +2005 234 2.58835 +2005 235 2.39797 +2005 236 1.85390 +2005 237 2.02690 +2005 238 1.66987 +2005 239 0.37618 +2005 240 0.71060 +2005 241 0.28617 +2005 242 0.20128 +2005 243 0.96591 +2005 244 1.42751 +2005 245 0.76354 +2005 246 1.56979 +2005 247 1.53711 +2005 248 1.96817 +2005 249 1.45866 +2005 250 0.92891 +2005 251 2.44139 +2005 252 2.61664 +2005 253 1.93622 +2005 254 0.72133 +2005 255 0.91633 +2005 256 1.26994 +2005 257 3.28541 +2005 258 3.69183 +2005 259 3.74037 +2005 260 4.26813 +2005 261 4.00203 +2005 262 3.80259 +2005 263 1.74893 +2005 264 3.15106 +2005 265 1.73551 +2005 266 2.81626 +2005 267 3.12772 +2005 268 2.47905 +2005 269 2.04371 +2005 270 2.56702 +2005 271 0.39919 +2005 272 1.72669 +2005 273 2.93526 +2005 274 1.95217 +2005 275 1.55222 +2005 276 3.37298 +2005 277 3.78975 +2005 278 4.41371 +2005 279 4.00756 +2005 280 4.96969 +2005 281 3.35352 +2005 282 1.32485 +2005 283 0.48061 +2005 284 1.29248 +2005 285 2.15240 +2005 286 1.15424 +2005 287 0.88863 +2005 288 0.93652 +2005 289 0.52422 +2005 290 0.44891 +2005 291 1.87182 +2005 292 2.92509 +2005 293 4.37152 +2005 294 4.01418 +2005 295 0.42067 +2005 296 0.43050 +2005 297 0.51720 +2005 298 0.52132 +2005 299 1.29078 +2005 300 1.48891 +2005 301 1.12995 +2005 302 0.75658 +2005 303 0.32167 +2005 304 2.36224 +2005 305 1.38192 +2005 306 3.79134 +2005 307 3.99640 +2005 308 5.60237 +2005 309 0.84167 +2005 310 2.65607 +2005 311 0.78214 +2005 312 0.66021 +2005 313 1.39129 +2005 314 1.36242 +2005 315 2.38725 +2005 316 3.79990 +2005 317 2.45243 +2005 318 1.19658 +2005 319 2.76168 +2005 320 2.61518 +2005 321 0.99121 +2005 322 1.60286 +2005 323 2.12266 +2005 324 2.45013 +2005 325 1.89783 +2005 326 2.90300 +2005 327 2.01829 +2005 328 1.56462 +2005 329 3.87106 +2005 330 5.13665 +2005 331 6.00210 +2005 332 3.59943 +2005 333 0.39515 +2005 334 0.86080 +2005 335 1.78881 +2005 336 3.76361 +2005 337 3.48570 +2005 338 2.63286 +2005 339 3.09942 +2005 340 1.72192 +2005 341 2.25772 +2005 342 2.72224 +2005 343 1.81910 +2005 344 1.90361 +2005 345 3.01951 +2005 346 2.43667 +2005 347 2.95974 +2005 348 3.07072 +2005 349 3.28238 +2005 350 2.24840 +2005 351 1.35670 +2005 352 1.85089 +2005 353 2.89730 +2005 354 2.73086 +2005 355 3.63801 +2005 356 4.74152 +2005 357 3.74717 +2005 358 2.96065 +2005 359 2.50470 +2005 360 3.19757 +2005 361 1.56075 +2005 362 0.82731 +2005 363 3.20075 +2005 364 4.43393 +2005 365 4.13313 +2006 1 4.50183 +2006 2 4.55816 +2006 3 5.06052 +2006 4 4.00825 +2006 5 4.00539 +2006 6 2.82250 +2006 7 3.58927 +2006 8 1.35421 +2006 9 1.49598 +2006 10 1.64521 +2006 11 2.37311 +2006 12 1.19690 +2006 13 1.19672 +2006 14 3.53977 +2006 15 2.53054 +2006 16 1.86680 +2006 17 2.51589 +2006 18 1.87867 +2006 19 1.83957 +2006 20 1.67290 +2006 21 1.61419 +2006 22 2.52552 +2006 23 5.52880 +2006 24 3.14290 +2006 25 3.50465 +2006 26 1.45459 +2006 27 0.97942 +2006 28 1.56370 +2006 29 1.28059 +2006 30 1.65838 +2006 31 1.54457 +2006 32 2.51306 +2006 33 0.79748 +2006 34 0.79161 +2006 35 0.63501 +2006 36 3.71632 +2006 37 0.36145 +2006 38 2.15397 +2006 39 1.43449 +2006 40 3.56122 +2006 41 2.26649 +2006 42 2.00526 +2006 43 2.14897 +2006 44 1.66344 +2006 45 2.34261 +2006 46 0.84031 +2006 47 0.82003 +2006 48 0.84568 +2006 49 0.99582 +2006 50 1.47706 +2006 51 2.73944 +2006 52 3.33357 +2006 53 4.01114 +2006 54 1.78279 +2006 55 2.72486 +2006 56 0.41094 +2006 57 2.69312 +2006 58 2.39503 +2006 59 1.73009 +2006 60 3.60380 +2006 61 4.18042 +2006 62 4.52654 +2006 63 3.77584 +2006 64 3.98295 +2006 65 2.49638 +2006 66 3.17430 +2006 67 3.67162 +2006 68 2.03514 +2006 69 2.16744 +2006 70 1.20974 +2006 71 3.32321 +2006 72 1.50870 +2006 73 1.57333 +2006 74 0.31761 +2006 75 1.41226 +2006 76 0.88673 +2006 77 1.08172 +2006 78 0.89478 +2006 79 1.11238 +2006 80 1.06925 +2006 81 2.17802 +2006 82 2.83573 +2006 83 3.36016 +2006 84 3.69924 +2006 85 3.84079 +2006 86 1.42884 +2006 87 3.61855 +2006 88 0.99905 +2006 89 1.32582 +2006 90 0.62016 +2006 91 2.37123 +2006 92 2.53583 +2006 93 3.76039 +2006 94 2.58045 +2006 95 1.27217 +2006 96 2.29185 +2006 97 3.32054 +2006 98 3.10998 +2006 99 4.00836 +2006 100 3.99075 +2006 101 2.95054 +2006 102 2.41770 +2006 103 0.78878 +2006 104 0.86160 +2006 105 1.67760 +2006 106 1.89328 +2006 107 2.37959 +2006 108 1.74488 +2006 109 0.65030 +2006 110 0.53017 +2006 111 2.11243 +2006 112 3.14909 +2006 113 3.76425 +2006 114 2.57776 +2006 115 1.79007 +2006 116 1.82583 +2006 117 2.31601 +2006 118 1.57366 +2006 119 1.87317 +2006 120 1.05931 +2006 121 1.88628 +2006 122 0.36719 +2006 123 1.24876 +2006 124 1.13876 +2006 125 2.90353 +2006 126 1.79733 +2006 127 1.25566 +2006 128 1.43215 +2006 129 1.44918 +2006 130 2.52421 +2006 131 3.13683 +2006 132 1.61614 +2006 133 2.57042 +2006 134 4.05284 +2006 135 3.94625 +2006 136 1.77510 +2006 137 1.45175 +2006 138 1.93831 +2006 139 1.41152 +2006 140 1.92629 +2006 141 2.28966 +2006 142 1.90629 +2006 143 2.69632 +2006 144 2.31355 +2006 145 3.70480 +2006 146 2.50125 +2006 147 1.59113 +2006 148 2.74655 +2006 149 1.75340 +2006 150 2.06979 +2006 151 1.59187 +2006 152 1.53241 +2006 153 1.58928 +2006 154 1.89776 +2006 155 2.16905 +2006 156 1.24788 +2006 157 1.45548 +2006 158 0.72236 +2006 159 2.62745 +2006 160 3.33365 +2006 161 2.13346 +2006 162 5.01862 +2006 163 2.82639 +2006 164 1.98392 +2006 165 2.42954 +2006 166 3.07761 +2006 167 1.68984 +2006 168 1.96758 +2006 169 4.12892 +2006 170 3.29786 +2006 171 1.77881 +2006 172 1.10317 +2006 173 4.73836 +2006 174 3.92601 +2006 175 2.78607 +2006 176 2.44819 +2006 177 2.24147 +2006 178 1.39591 +2006 179 1.00263 +2006 180 2.14212 +2006 181 2.44423 +2006 182 1.94892 +2006 183 1.08625 +2006 184 1.34477 +2006 185 0.83218 +2006 186 2.77860 +2006 187 3.76707 +2006 188 3.56726 +2006 189 3.42592 +2006 190 2.64552 +2006 191 1.81755 +2006 192 2.99340 +2006 193 1.28607 +2006 194 2.73050 +2006 195 3.86596 +2006 196 4.05071 +2006 197 1.96543 +2006 198 0.18451 +2006 199 2.29283 +2006 200 1.23124 +2006 201 3.36305 +2006 202 2.39751 +2006 203 2.45041 +2006 204 2.55560 +2006 205 2.23561 +2006 206 2.24792 +2006 207 1.54491 +2006 208 1.49048 +2006 209 1.45888 +2006 210 1.18613 +2006 211 2.03099 +2006 212 1.03382 +2006 213 2.41664 +2006 214 2.03199 +2006 215 0.12257 +2006 216 2.09003 +2006 217 4.03769 +2006 218 2.00672 +2006 219 2.62518 +2006 220 2.53552 +2006 221 1.93272 +2006 222 1.34389 +2006 223 2.64182 +2006 224 4.49825 +2006 225 3.02740 +2006 226 1.69890 +2006 227 1.73092 +2006 228 1.76860 +2006 229 2.24812 +2006 230 3.06771 +2006 231 2.46349 +2006 232 2.15374 +2006 233 3.96482 +2006 234 2.19642 +2006 235 0.82173 +2006 236 1.87233 +2006 237 2.67510 +2006 238 1.48176 +2006 239 0.97339 +2006 240 3.01051 +2006 241 3.55605 +2006 242 2.80789 +2006 243 1.91224 +2006 244 2.29222 +2006 245 1.93657 +2006 246 1.23712 +2006 247 2.38966 +2006 248 1.45083 +2006 249 0.92071 +2006 250 1.79025 +2006 251 1.23868 +2006 252 3.58273 +2006 253 3.87453 +2006 254 1.54623 +2006 255 0.98467 +2006 256 0.75563 +2006 257 3.18676 +2006 258 3.80814 +2006 259 4.25969 +2006 260 3.52336 +2006 261 3.85903 +2006 262 3.89042 +2006 263 2.75373 +2006 264 3.58217 +2006 265 2.96819 +2006 266 3.42612 +2006 267 0.38265 +2006 268 1.96320 +2006 269 0.85244 +2006 270 1.70733 +2006 271 1.05403 +2006 272 0.90092 +2006 273 2.50677 +2006 274 3.26887 +2006 275 1.13965 +2006 276 2.16317 +2006 277 4.01418 +2006 278 3.90436 +2006 279 2.60344 +2006 280 3.82284 +2006 281 3.54552 +2006 282 4.79605 +2006 283 3.23564 +2006 284 5.96773 +2006 285 4.72677 +2006 286 5.21627 +2006 287 4.48625 +2006 288 3.37548 +2006 289 3.20831 +2006 290 1.77494 +2006 291 3.33592 +2006 292 3.46772 +2006 293 1.70118 +2006 294 1.93277 +2006 295 2.75676 +2006 296 3.37588 +2006 297 2.91195 +2006 298 2.88673 +2006 299 2.04960 +2006 300 2.32493 +2006 301 3.76797 +2006 302 4.71325 +2006 303 2.65420 +2006 304 2.22800 +2006 305 1.88236 +2006 306 1.75639 +2006 307 0.94181 +2006 308 2.03336 +2006 309 2.80311 +2006 310 2.47643 +2006 311 3.63911 +2006 312 2.45678 +2006 313 3.86055 +2006 314 3.73979 +2006 315 4.49054 +2006 316 3.28254 +2006 317 3.70877 +2006 318 3.11308 +2006 319 3.06122 +2006 320 3.67005 +2006 321 3.53341 +2006 322 3.89333 +2006 323 3.55724 +2006 324 2.80181 +2006 325 3.71036 +2006 326 3.79657 +2006 327 4.39945 +2006 328 4.77046 +2006 329 4.55739 +2006 330 4.75043 +2006 331 3.82114 +2006 332 2.95883 +2006 333 4.12917 +2006 334 2.19120 +2006 335 3.65564 +2006 336 3.54120 +2006 337 3.34312 +2006 338 2.23319 +2006 339 1.59694 +2006 340 2.42876 +2006 341 4.82208 +2006 342 2.53707 +2006 343 2.88077 +2006 344 1.06026 +2006 345 3.07725 +2006 346 4.24097 +2006 347 0.65082 +2006 348 1.44143 +2006 349 1.65662 +2006 350 1.43206 +2006 351 1.00959 +2006 352 1.95912 +2006 353 1.99006 +2006 354 3.32376 +2006 355 2.54587 +2006 356 1.81157 +2006 357 3.25639 +2006 358 3.62208 +2006 359 2.81927 +2006 360 2.13866 +2006 361 3.49096 +2006 362 3.43156 +2006 363 3.48629 +2006 364 0.43708 +2006 365 1.16694 +2007 1 2.01945 +2007 2 1.87747 +2007 3 0.01606 +2007 4 1.21286 +2007 5 3.72753 +2007 6 0.71729 +2007 7 2.39026 +2007 8 3.46395 +2007 9 2.56426 +2007 10 2.34435 +2007 11 2.19248 +2007 12 4.24841 +2007 13 2.08088 +2007 14 0.27746 +2007 15 0.33597 +2007 16 2.04602 +2007 17 0.53338 +2007 18 2.00371 +2007 19 2.50601 +2007 20 4.73213 +2007 21 3.52947 +2007 22 4.15147 +2007 23 0.87866 +2007 24 2.07813 +2007 25 1.55808 +2007 26 0.95302 +2007 27 2.23818 +2007 28 2.36003 +2007 29 3.84900 +2007 30 2.53070 +2007 31 2.53613 +2007 32 2.71672 +2007 33 0.16749 +2007 34 2.37265 +2007 35 3.48175 +2007 36 3.28355 +2007 37 2.49384 +2007 38 1.98078 +2007 39 0.29063 +2007 40 1.62745 +2007 41 1.02844 +2007 42 1.59625 +2007 43 1.03212 +2007 44 0.50833 +2007 45 1.46938 +2007 46 2.35625 +2007 47 2.34686 +2007 48 0.41046 +2007 49 0.75529 +2007 50 1.22379 +2007 51 0.78851 +2007 52 0.99653 +2007 53 0.72252 +2007 54 2.96968 +2007 55 0.58199 +2007 56 2.43591 +2007 57 2.24156 +2007 58 2.65774 +2007 59 0.98824 +2007 60 1.39295 +2007 61 0.46194 +2007 62 1.67304 +2007 63 1.02950 +2007 64 1.99565 +2007 65 1.94810 +2007 66 1.96493 +2007 67 0.96262 +2007 68 0.45584 +2007 69 1.85565 +2007 70 3.49789 +2007 71 3.39678 +2007 72 4.92400 +2007 73 4.29785 +2007 74 4.31777 +2007 75 3.65037 +2007 76 3.93575 +2007 77 3.70000 +2007 78 3.38248 +2007 79 1.27323 +2007 80 0.94440 +2007 81 0.93304 +2007 82 1.05518 +2007 83 2.10736 +2007 84 1.55014 +2007 85 1.97247 +2007 86 3.51034 +2007 87 4.78888 +2007 88 4.04915 +2007 89 0.91673 +2007 90 1.43334 +2007 91 0.77958 +2007 92 0.95814 +2007 93 1.79595 +2007 94 1.18872 +2007 95 1.63900 +2007 96 1.07512 +2007 97 0.40327 +2007 98 0.32735 +2007 99 1.21736 +2007 100 2.37494 +2007 101 2.04633 +2007 102 4.78567 +2007 103 3.23879 +2007 104 3.09944 +2007 105 0.47317 +2007 106 3.34955 +2007 107 1.74971 +2007 108 2.06800 +2007 109 1.27486 +2007 110 0.94967 +2007 111 0.92267 +2007 112 0.80151 +2007 113 0.75384 +2007 114 0.43857 +2007 115 1.38972 +2007 116 0.29723 +2007 117 0.93730 +2007 118 1.66964 +2007 119 2.36571 +2007 120 1.39430 +2007 121 0.98682 +2007 122 1.05809 +2007 123 0.72011 +2007 124 0.62627 +2007 125 2.25788 +2007 126 2.29117 +2007 127 2.42405 +2007 128 0.73408 +2007 129 0.87216 +2007 130 2.35651 +2007 131 1.91433 +2007 132 1.41843 +2007 133 2.61201 +2007 134 2.28933 +2007 135 3.29700 +2007 136 4.39084 +2007 137 2.24757 +2007 138 1.14197 +2007 139 2.37535 +2007 140 2.47889 +2007 141 0.40676 +2007 142 2.87500 +2007 143 1.51250 +2007 144 2.28271 +2007 145 3.21689 +2007 146 3.74641 +2007 147 1.72584 +2007 148 1.28501 +2007 149 1.18138 +2007 150 0.63191 +2007 151 0.78286 +2007 152 2.43069 +2007 153 1.81786 +2007 154 1.55395 +2007 155 3.50056 +2007 156 3.79171 +2007 157 4.11375 +2007 158 5.43355 +2007 159 3.47592 +2007 160 2.42884 +2007 161 1.28922 +2007 162 1.90646 +2007 163 0.91051 +2007 164 2.06993 +2007 165 3.09144 +2007 166 3.81295 +2007 167 3.88194 +2007 168 2.02665 +2007 169 1.28299 +2007 170 2.82461 +2007 171 3.68180 +2007 172 4.74855 +2007 173 6.27369 +2007 174 5.09202 +2007 175 4.12327 +2007 176 2.63176 +2007 177 1.92008 +2007 178 0.60427 +2007 179 2.02524 +2007 180 2.95037 +2007 181 2.61904 +2007 182 3.19090 +2007 183 2.94148 +2007 184 2.27944 +2007 185 3.00731 +2007 186 0.35161 +2007 187 3.56667 +2007 188 0.95851 +2007 189 1.83413 +2007 190 5.07953 +2007 191 5.52146 +2007 192 4.58787 +2007 193 2.38626 +2007 194 1.10376 +2007 195 2.45653 +2007 196 3.82993 +2007 197 1.41607 +2007 198 2.18211 +2007 199 2.31468 +2007 200 1.43270 +2007 201 1.10417 +2007 202 3.22906 +2007 203 3.17124 +2007 204 3.19586 +2007 205 2.68583 +2007 206 2.44304 +2007 207 1.90793 +2007 208 0.61889 +2007 209 3.51354 +2007 210 1.75871 +2007 211 2.90479 +2007 212 2.00277 +2007 213 3.18904 +2007 214 2.47915 +2007 215 1.41427 +2007 216 3.75201 +2007 217 2.67445 +2007 218 2.38742 +2007 219 2.31157 +2007 220 3.04840 +2007 221 2.67042 +2007 222 3.51900 +2007 223 3.98027 +2007 224 1.93066 +2007 225 2.34043 +2007 226 2.96741 +2007 227 5.19965 +2007 228 2.30493 +2007 229 2.96787 +2007 230 1.90224 +2007 231 1.61616 +2007 232 2.08981 +2007 233 1.00925 +2007 234 1.19055 +2007 235 2.41999 +2007 236 2.36629 +2007 237 1.02056 +2007 238 2.58100 +2007 239 3.11356 +2007 240 3.92731 +2007 241 5.63584 +2007 242 3.84091 +2007 243 3.74158 +2007 244 3.79707 +2007 245 1.09689 +2007 246 2.83109 +2007 247 2.01179 +2007 248 2.59033 +2007 249 0.42046 +2007 250 0.91582 +2007 251 3.24945 +2007 252 4.24085 +2007 253 1.43373 +2007 254 1.51104 +2007 255 1.15381 +2007 256 2.40542 +2007 257 0.93684 +2007 258 1.43750 +2007 259 1.72876 +2007 260 0.86405 +2007 261 1.62443 +2007 262 3.32605 +2007 263 2.32831 +2007 264 1.32973 +2007 265 1.49459 +2007 266 1.44681 +2007 267 1.59519 +2007 268 2.30761 +2007 269 2.66657 +2007 270 0.53015 +2007 271 1.34342 +2007 272 3.68227 +2007 273 3.45399 +2007 274 5.18364 +2007 275 3.99200 +2007 276 1.96577 +2007 277 3.99781 +2007 278 3.67498 +2007 279 1.77937 +2007 280 3.44888 +2007 281 0.61568 +2007 282 2.55664 +2007 283 2.29174 +2007 284 4.61405 +2007 285 2.43835 +2007 286 5.60618 +2007 287 5.06339 +2007 288 4.57904 +2007 289 4.70964 +2007 290 1.43062 +2007 291 3.19503 +2007 292 3.41830 +2007 293 5.76952 +2007 294 5.16698 +2007 295 4.96756 +2007 296 4.05190 +2007 297 3.97653 +2007 298 4.68257 +2007 299 2.47782 +2007 300 0.82634 +2007 301 1.68876 +2007 302 2.10755 +2007 303 2.48157 +2007 304 2.70352 +2007 305 0.98027 +2007 306 1.82482 +2007 307 3.27722 +2007 308 3.44729 +2007 309 0.29889 +2007 310 0.36519 +2007 311 2.86918 +2007 312 0.74772 +2007 313 1.50858 +2007 314 1.04916 +2007 315 1.07490 +2007 316 3.32138 +2007 317 4.91032 +2007 318 2.84549 +2007 319 1.26706 +2007 320 1.61660 +2007 321 0.17827 +2007 322 1.15834 +2007 323 1.21147 +2007 324 1.51015 +2007 325 2.41138 +2007 326 1.09964 +2007 327 0.51480 +2007 328 1.53001 +2007 329 1.34405 +2007 330 1.13856 +2007 331 4.23165 +2007 332 1.12519 +2007 333 1.10064 +2007 334 0.72297 +2007 335 1.02900 +2007 336 1.60809 +2007 337 0.85008 +2007 338 2.02728 +2007 339 1.66016 +2007 340 4.58479 +2007 341 2.45282 +2007 342 4.22910 +2007 343 4.27932 +2007 344 3.91453 +2007 345 3.13155 +2007 346 1.63660 +2007 347 1.47890 +2007 348 2.50277 +2007 349 2.04347 +2007 350 2.31544 +2007 351 2.16253 +2007 352 1.78747 +2007 353 1.19593 +2007 354 2.26127 +2007 355 2.04981 +2007 356 1.75915 +2007 357 2.09215 +2007 358 2.78878 +2007 359 3.89924 +2007 360 2.37375 +2007 361 2.58925 +2007 362 1.52024 +2007 363 1.25656 +2007 364 1.32271 +2007 365 1.08254 +2008 1 1.63196 +2008 2 2.63834 +2008 3 0.71442 +2008 4 1.77105 +2008 5 1.51094 +2008 6 2.11267 +2008 7 1.49865 +2008 8 0.83392 +2008 9 1.65794 +2008 10 1.19303 +2008 11 1.54102 +2008 12 1.88788 +2008 13 1.44367 +2008 14 1.51288 +2008 15 1.44436 +2008 16 1.59925 +2008 17 1.53623 +2008 18 4.92474 +2008 19 4.38583 +2008 20 3.36022 +2008 21 3.32057 +2008 22 2.81783 +2008 23 2.12723 +2008 24 1.42026 +2008 25 3.16356 +2008 26 2.98380 +2008 27 1.07038 +2008 28 3.02158 +2008 29 1.23571 +2008 30 1.58208 +2008 31 1.56434 +2008 32 1.00393 +2008 33 0.46105 +2008 34 1.05351 +2008 35 4.65915 +2008 36 3.69549 +2008 37 2.71023 +2008 38 2.30569 +2008 39 2.23652 +2008 40 2.26651 +2008 41 2.41453 +2008 42 0.58293 +2008 43 0.95632 +2008 44 1.35307 +2008 45 3.66455 +2008 46 3.32440 +2008 47 2.72925 +2008 48 0.24879 +2008 49 1.28347 +2008 50 1.69348 +2008 51 2.63220 +2008 52 5.09579 +2008 53 6.07238 +2008 54 3.85133 +2008 55 1.34596 +2008 56 2.95671 +2008 57 0.98360 +2008 58 2.31124 +2008 59 2.39552 +2008 60 3.85304 +2008 61 2.59979 +2008 62 2.48224 +2008 63 4.31349 +2008 64 3.35922 +2008 65 0.65833 +2008 66 1.61961 +2008 67 1.22139 +2008 68 2.59747 +2008 69 0.65351 +2008 70 2.61150 +2008 71 3.52678 +2008 72 2.80732 +2008 73 2.00045 +2008 74 2.83990 +2008 75 3.03606 +2008 76 1.02602 +2008 77 1.12633 +2008 78 1.00064 +2008 79 0.46948 +2008 80 0.41060 +2008 81 0.76808 +2008 82 0.80087 +2008 83 1.19747 +2008 84 1.92009 +2008 85 2.22498 +2008 86 2.72445 +2008 87 2.56782 +2008 88 1.95283 +2008 89 1.93154 +2008 90 2.09292 +2008 91 1.53957 +2008 92 1.19985 +2008 93 0.93990 +2008 94 1.94341 +2008 95 1.14433 +2008 96 0.61383 +2008 97 2.64432 +2008 98 3.95491 +2008 99 2.60248 +2008 100 0.38459 +2008 101 0.26881 +2008 102 1.87506 +2008 103 2.59849 +2008 104 3.76688 +2008 105 3.91480 +2008 106 1.45258 +2008 107 1.57566 +2008 108 3.09121 +2008 109 3.04957 +2008 110 3.17975 +2008 111 0.82153 +2008 112 3.87613 +2008 113 3.95660 +2008 114 1.68377 +2008 115 0.68187 +2008 116 2.57751 +2008 117 4.14304 +2008 118 0.74484 +2008 119 2.78723 +2008 120 1.90437 +2008 121 2.04063 +2008 122 3.06755 +2008 123 3.31036 +2008 124 1.85204 +2008 125 2.08984 +2008 126 2.38153 +2008 127 0.18927 +2008 128 1.44636 +2008 129 2.72563 +2008 130 3.17733 +2008 131 1.93289 +2008 132 2.63986 +2008 133 1.47868 +2008 134 2.21076 +2008 135 1.28549 +2008 136 1.30299 +2008 137 1.01706 +2008 138 0.81101 +2008 139 1.56483 +2008 140 2.34060 +2008 141 2.75457 +2008 142 1.78613 +2008 143 1.88985 +2008 144 3.04317 +2008 145 2.70092 +2008 146 3.01732 +2008 147 2.46025 +2008 148 1.52650 +2008 149 1.07579 +2008 150 1.68768 +2008 151 0.19343 +2008 152 1.18346 +2008 153 1.60740 +2008 154 2.50864 +2008 155 2.81152 +2008 156 1.58308 +2008 157 2.10545 +2008 158 3.31635 +2008 159 2.74640 +2008 160 3.68241 +2008 161 1.52489 +2008 162 0.54280 +2008 163 1.50631 +2008 164 1.17402 +2008 165 0.65596 +2008 166 1.61008 +2008 167 3.51129 +2008 168 1.92894 +2008 169 3.31764 +2008 170 1.12721 +2008 171 0.94004 +2008 172 1.68147 +2008 173 4.35305 +2008 174 2.61406 +2008 175 3.98559 +2008 176 3.80146 +2008 177 5.39901 +2008 178 4.53689 +2008 179 3.25930 +2008 180 2.53668 +2008 181 2.72609 +2008 182 1.74851 +2008 183 1.97862 +2008 184 3.08533 +2008 185 3.41093 +2008 186 3.36712 +2008 187 4.21048 +2008 188 2.60672 +2008 189 2.50448 +2008 190 2.07372 +2008 191 1.25603 +2008 192 2.86743 +2008 193 3.29210 +2008 194 1.94111 +2008 195 0.75417 +2008 196 1.33578 +2008 197 0.40177 +2008 198 1.53305 +2008 199 0.92894 +2008 200 2.78749 +2008 201 3.25136 +2008 202 4.13997 +2008 203 2.62337 +2008 204 4.42187 +2008 205 3.72483 +2008 206 1.84129 +2008 207 4.79949 +2008 208 3.82062 +2008 209 2.16481 +2008 210 2.51263 +2008 211 4.21664 +2008 212 4.97889 +2008 213 3.38872 +2008 214 3.71133 +2008 215 4.11028 +2008 216 3.56564 +2008 217 2.87942 +2008 218 3.42310 +2008 219 1.94791 +2008 220 2.44166 +2008 221 1.43180 +2008 222 2.52697 +2008 223 0.85774 +2008 224 3.43941 +2008 225 2.00825 +2008 226 2.99512 +2008 227 4.24638 +2008 228 3.34927 +2008 229 1.52028 +2008 230 2.61028 +2008 231 2.98275 +2008 232 2.55972 +2008 233 3.66889 +2008 234 3.11831 +2008 235 1.21090 +2008 236 4.19316 +2008 237 0.52476 +2008 238 1.45215 +2008 239 2.27496 +2008 240 2.20054 +2008 241 0.54732 +2008 242 1.69865 +2008 243 2.32062 +2008 244 2.75862 +2008 245 2.57524 +2008 246 2.67308 +2008 247 1.29488 +2008 248 1.89400 +2008 249 1.30055 +2008 250 1.85005 +2008 251 4.37856 +2008 252 1.76365 +2008 253 2.01509 +2008 254 3.77841 +2008 255 2.59704 +2008 256 2.33629 +2008 257 2.03419 +2008 258 0.44754 +2008 259 0.39889 +2008 260 1.65344 +2008 261 3.26518 +2008 262 0.55997 +2008 263 0.43749 +2008 264 2.21009 +2008 265 2.59831 +2008 266 2.95043 +2008 267 3.40591 +2008 268 2.05455 +2008 269 2.30585 +2008 270 3.67278 +2008 271 1.17778 +2008 272 2.89884 +2008 273 2.74146 +2008 274 3.76267 +2008 275 3.13903 +2008 276 4.33937 +2008 277 4.07228 +2008 278 4.49520 +2008 279 2.20352 +2008 280 4.59211 +2008 281 4.90791 +2008 282 3.67692 +2008 283 2.76979 +2008 284 3.21764 +2008 285 1.21980 +2008 286 1.49435 +2008 287 1.70292 +2008 288 1.77653 +2008 289 2.41508 +2008 290 2.42192 +2008 291 4.47911 +2008 292 0.95962 +2008 293 2.17253 +2008 294 2.55550 +2008 295 2.30619 +2008 296 2.09725 +2008 297 2.71350 +2008 298 2.75222 +2008 299 2.63705 +2008 300 3.23224 +2008 301 3.22228 +2008 302 4.35006 +2008 303 3.65324 +2008 304 3.72056 +2008 305 3.35743 +2008 306 0.56932 +2008 307 1.33631 +2008 308 2.13829 +2008 309 4.17319 +2008 310 4.34086 +2008 311 3.79279 +2008 312 1.48967 +2008 313 3.05539 +2008 314 1.59201 +2008 315 0.64758 +2008 316 0.80630 +2008 317 1.15959 +2008 318 0.61601 +2008 319 1.33925 +2008 320 2.16131 +2008 321 2.35620 +2008 322 3.75524 +2008 323 2.76787 +2008 324 2.14617 +2008 325 1.92090 +2008 326 2.90775 +2008 327 3.34774 +2008 328 4.61352 +2008 329 3.03175 +2008 330 1.43995 +2008 331 0.66138 +2008 332 2.97589 +2008 333 0.79202 +2008 334 1.03446 +2008 335 0.83421 +2008 336 3.24572 +2008 337 2.39128 +2008 338 1.49038 +2008 339 1.97084 +2008 340 0.69190 +2008 341 2.09828 +2008 342 3.05752 +2008 343 3.30456 +2008 344 0.77506 +2008 345 3.06634 +2008 346 3.15500 +2008 347 2.06831 +2008 348 0.36259 +2008 349 3.36178 +2008 350 2.95158 +2008 351 4.93085 +2008 352 3.63656 +2008 353 2.50994 +2008 354 3.45047 +2008 355 2.81109 +2008 356 1.53050 +2008 357 3.54929 +2008 358 1.13841 +2008 359 3.30977 +2008 360 2.33172 +2008 361 1.25209 +2008 362 1.12033 +2008 363 2.38566 +2008 364 1.41994 +2008 365 2.07187 +2008 366 2.70378 +2009 1 1.86155 +2009 2 2.77650 +2009 3 1.39817 +2009 4 1.72573 +2009 5 1.05226 +2009 6 1.86788 +2009 7 1.36633 +2009 8 1.88058 +2009 9 0.76063 +2009 10 3.55743 +2009 11 1.67547 +2009 12 1.44949 +2009 13 1.87428 +2009 14 1.68772 +2009 15 2.16508 +2009 16 3.05139 +2009 17 3.14741 +2009 18 4.52644 +2009 19 3.94047 +2009 20 0.40779 +2009 21 1.62532 +2009 22 0.91661 +2009 23 0.54837 +2009 24 0.50744 +2009 25 0.98017 +2009 26 3.25039 +2009 27 0.77924 +2009 28 2.57173 +2009 29 2.00083 +2009 30 2.14036 +2009 31 3.54158 +2009 32 0.90852 +2009 33 2.90623 +2009 34 1.20848 +2009 35 1.32860 +2009 36 2.21132 +2009 37 0.88686 +2009 38 1.45616 +2009 39 1.95964 +2009 40 2.32746 +2009 41 1.38034 +2009 42 3.22610 +2009 43 2.75820 +2009 44 3.19506 +2009 45 1.30881 +2009 46 1.12440 +2009 47 0.68309 +2009 48 1.20615 +2009 49 1.78878 +2009 50 3.12817 +2009 51 3.18927 +2009 52 2.83922 +2009 53 2.23607 +2009 54 1.77441 +2009 55 0.43633 +2009 56 1.04235 +2009 57 2.37581 +2009 58 4.36951 +2009 59 2.34248 +2009 60 2.27484 +2009 61 2.02492 +2009 62 2.20591 +2009 63 4.94010 +2009 64 3.96153 +2009 65 0.39777 +2009 66 3.56009 +2009 67 3.90576 +2009 68 3.27604 +2009 69 4.92102 +2009 70 2.86338 +2009 71 1.78991 +2009 72 1.74178 +2009 73 1.96822 +2009 74 1.95212 +2009 75 1.82846 +2009 76 1.40529 +2009 77 2.41072 +2009 78 3.18216 +2009 79 0.23891 +2009 80 1.09184 +2009 81 2.33209 +2009 82 2.18820 +2009 83 0.84575 +2009 84 0.62578 +2009 85 1.48476 +2009 86 1.79167 +2009 87 1.88199 +2009 88 2.02431 +2009 89 1.32601 +2009 90 3.88538 +2009 91 1.42797 +2009 92 0.47602 +2009 93 1.01611 +2009 94 0.72675 +2009 95 0.54883 +2009 96 2.07908 +2009 97 3.19150 +2009 98 2.01908 +2009 99 2.14270 +2009 100 2.13573 +2009 101 1.79053 +2009 102 1.52585 +2009 103 0.85129 +2009 104 1.26393 +2009 105 1.59513 +2009 106 0.59576 +2009 107 0.88647 +2009 108 1.32140 +2009 109 3.92521 +2009 110 4.21966 +2009 111 0.73238 +2009 112 1.95772 +2009 113 3.27078 +2009 114 4.20228 +2009 115 3.01926 +2009 116 2.55368 +2009 117 2.87147 +2009 118 2.50579 +2009 119 2.30511 +2009 120 2.20104 +2009 121 3.07040 +2009 122 3.09002 +2009 123 2.87115 +2009 124 3.10312 +2009 125 3.51113 +2009 126 2.27860 +2009 127 1.62703 +2009 128 3.19054 +2009 129 1.95120 +2009 130 1.59196 +2009 131 1.05302 +2009 132 2.45839 +2009 133 2.43915 +2009 134 2.75944 +2009 135 2.16907 +2009 136 2.92671 +2009 137 1.30631 +2009 138 3.36711 +2009 139 2.20341 +2009 140 2.92153 +2009 141 1.99931 +2009 142 3.53964 +2009 143 2.44866 +2009 144 4.59202 +2009 145 3.58902 +2009 146 2.75970 +2009 147 1.01214 +2009 148 1.98136 +2009 149 0.53630 +2009 150 3.13581 +2009 151 3.52893 +2009 152 1.62511 +2009 153 1.25975 +2009 154 0.69987 +2009 155 1.80645 +2009 156 3.00381 +2009 157 2.31876 +2009 158 2.02506 +2009 159 3.72890 +2009 160 4.11198 +2009 161 0.99042 +2009 162 2.68352 +2009 163 2.03938 +2009 164 3.11792 +2009 165 4.33247 +2009 166 2.77071 +2009 167 2.68201 +2009 168 2.31454 +2009 169 2.30677 +2009 170 2.64363 +2009 171 2.22555 +2009 172 2.26868 +2009 173 1.87743 +2009 174 1.41862 +2009 175 0.87272 +2009 176 1.41111 +2009 177 0.53628 +2009 178 2.82913 +2009 179 5.46932 +2009 180 4.11932 +2009 181 3.58394 +2009 182 0.81699 +2009 183 0.95420 +2009 184 1.11843 +2009 185 1.70301 +2009 186 1.62669 +2009 187 1.93995 +2009 188 0.87072 +2009 189 1.93883 +2009 190 0.96715 +2009 191 2.97181 +2009 192 5.36975 +2009 193 3.21165 +2009 194 1.17624 +2009 195 2.47578 +2009 196 0.55064 +2009 197 1.47524 +2009 198 2.51783 +2009 199 5.44327 +2009 200 3.17188 +2009 201 2.98006 +2009 202 4.74358 +2009 203 2.93287 +2009 204 2.22446 +2009 205 2.58945 +2009 206 1.74801 +2009 207 1.57216 +2009 208 0.58245 +2009 209 1.16342 +2009 210 3.19374 +2009 211 2.69666 +2009 212 2.69705 +2009 213 3.11286 +2009 214 3.60446 +2009 215 2.18296 +2009 216 2.62583 +2009 217 1.08662 +2009 218 0.24512 +2009 219 0.87704 +2009 220 1.69319 +2009 221 3.69757 +2009 222 2.75128 +2009 223 2.16742 +2009 224 2.28097 +2009 225 3.86223 +2009 226 4.16425 +2009 227 1.67159 +2009 228 3.54849 +2009 229 2.59390 +2009 230 2.31289 +2009 231 3.50672 +2009 232 1.98935 +2009 233 0.95777 +2009 234 1.84086 +2009 235 2.96119 +2009 236 2.80196 +2009 237 2.75150 +2009 238 4.72069 +2009 239 3.38488 +2009 240 2.14135 +2009 241 2.19977 +2009 242 4.66881 +2009 243 2.42063 +2009 244 2.49192 +2009 245 2.23388 +2009 246 4.08860 +2009 247 3.34387 +2009 248 2.37209 +2009 249 0.35741 +2009 250 0.47846 +2009 251 0.51448 +2009 252 0.84488 +2009 253 2.96368 +2009 254 2.81042 +2009 255 1.03024 +2009 256 0.63142 +2009 257 1.70524 +2009 258 0.40936 +2009 259 1.46726 +2009 260 1.75944 +2009 261 1.67973 +2009 262 1.40164 +2009 263 1.00073 +2009 264 2.01837 +2009 265 2.23551 +2009 266 1.42172 +2009 267 0.79923 +2009 268 0.39585 +2009 269 2.09109 +2009 270 2.53234 +2009 271 1.79261 +2009 272 2.63483 +2009 273 3.62418 +2009 274 4.07791 +2009 275 2.92151 +2009 276 1.29529 +2009 277 3.66901 +2009 278 4.02797 +2009 279 3.05785 +2009 280 2.51659 +2009 281 2.24408 +2009 282 3.51878 +2009 283 2.50045 +2009 284 2.58181 +2009 285 2.62082 +2009 286 2.57215 +2009 287 3.14578 +2009 288 3.46473 +2009 289 2.78351 +2009 290 3.20026 +2009 291 1.65588 +2009 292 2.28145 +2009 293 2.43040 +2009 294 3.71422 +2009 295 1.49896 +2009 296 1.33625 +2009 297 1.87343 +2009 298 0.83804 +2009 299 2.04498 +2009 300 2.76847 +2009 301 3.76599 +2009 302 2.83912 +2009 303 1.73849 +2009 304 1.17691 +2009 305 3.86700 +2009 306 2.89567 +2009 307 3.36156 +2009 308 2.62591 +2009 309 3.08455 +2009 310 2.10983 +2009 311 0.85630 +2009 312 2.26302 +2009 313 1.25231 +2009 314 3.00892 +2009 315 0.49288 +2009 316 3.60592 +2009 317 3.04101 +2009 318 4.19002 +2009 319 4.46313 +2009 320 3.04234 +2009 321 1.94932 +2009 322 2.43517 +2009 323 3.36241 +2009 324 4.03298 +2009 325 2.67393 +2009 326 1.41616 +2009 327 4.03193 +2009 328 2.45829 +2009 329 4.94423 +2009 330 2.63674 +2009 331 3.58017 +2009 332 3.32533 +2009 333 1.81521 +2009 334 2.00534 +2009 335 1.39429 +2009 336 2.99149 +2009 337 3.16084 +2009 338 1.98065 +2009 339 2.30899 +2009 340 3.39667 +2009 341 1.67751 +2009 342 2.04201 +2009 343 2.34145 +2009 344 2.05119 +2009 345 3.39933 +2009 346 3.72706 +2009 347 3.04477 +2009 348 2.68019 +2009 349 1.48859 +2009 350 1.53123 +2009 351 2.75584 +2009 352 4.10148 +2009 353 4.41161 +2009 354 0.78118 +2009 355 1.55060 +2009 356 1.70262 +2009 357 1.76889 +2009 358 1.54969 +2009 359 3.18128 +2009 360 3.85857 +2009 361 2.28005 +2009 362 3.19958 +2009 363 5.21963 +2009 364 2.61144 +2009 365 3.48092 +2010 1 3.62844 +2010 2 2.77442 +2010 3 4.03582 +2010 4 1.18632 +2010 5 2.34170 +2010 6 2.54754 +2010 7 3.34190 +2010 8 0.99458 +2010 9 2.18251 +2010 10 2.88154 +2010 11 1.21288 +2010 12 1.98337 +2010 13 0.39303 +2010 14 2.98970 +2010 15 1.91904 +2010 16 1.84976 +2010 17 1.83962 +2010 18 1.45635 +2010 19 2.85227 +2010 20 2.89631 +2010 21 2.22513 +2010 22 2.53585 +2010 23 2.80549 +2010 24 0.81445 +2010 25 1.75269 +2010 26 0.58393 +2010 27 0.72715 +2010 28 1.79285 +2010 29 2.77341 +2010 30 3.40084 +2010 31 3.30912 +2010 32 2.02813 +2010 33 1.25725 +2010 34 0.84194 +2010 35 1.12753 +2010 36 1.53941 +2010 37 1.10987 +2010 38 1.46622 +2010 39 1.81320 +2010 40 2.85055 +2010 41 0.89953 +2010 42 2.05623 +2010 43 3.93772 +2010 44 3.08835 +2010 45 1.73733 +2010 46 2.36385 +2010 47 1.03726 +2010 48 1.57230 +2010 49 1.66293 +2010 50 1.41278 +2010 51 0.57471 +2010 52 1.32587 +2010 53 2.09308 +2010 54 2.07819 +2010 55 1.61879 +2010 56 1.97172 +2010 57 0.81456 +2010 58 1.31622 +2010 59 1.44976 +2010 60 1.71211 +2010 61 2.22969 +2010 62 2.22319 +2010 63 1.56548 +2010 64 4.00614 +2010 65 3.14127 +2010 66 1.57729 +2010 67 0.94544 +2010 68 0.96251 +2010 69 3.71326 +2010 70 3.52660 +2010 71 2.98301 +2010 72 2.37348 +2010 73 2.93815 +2010 74 2.67507 +2010 75 3.11814 +2010 76 2.51891 +2010 77 3.72934 +2010 78 3.00124 +2010 79 3.18448 +2010 80 2.42969 +2010 81 2.61832 +2010 82 2.70107 +2010 83 3.98314 +2010 84 3.61313 +2010 85 2.79677 +2010 86 2.43134 +2010 87 3.08657 +2010 88 2.14133 +2010 89 1.83267 +2010 90 0.28842 +2010 91 0.76942 +2010 92 1.59319 +2010 93 0.68888 +2010 94 2.02694 +2010 95 1.83648 +2010 96 3.68480 +2010 97 2.69481 +2010 98 1.06381 +2010 99 0.43125 +2010 100 0.76830 +2010 101 0.72358 +2010 102 2.20924 +2010 103 2.67386 +2010 104 3.80677 +2010 105 2.24075 +2010 106 2.20524 +2010 107 1.07783 +2010 108 4.03205 +2010 109 2.33854 +2010 110 1.88543 +2010 111 2.98897 +2010 112 2.85053 +2010 113 2.72736 +2010 114 0.63087 +2010 115 2.24262 +2010 116 3.56132 +2010 117 1.42320 +2010 118 1.35159 +2010 119 1.50602 +2010 120 2.36781 +2010 121 2.06631 +2010 122 1.99699 +2010 123 2.33199 +2010 124 1.82146 +2010 125 0.14206 +2010 126 0.30152 +2010 127 0.48943 +2010 128 1.31403 +2010 129 1.89881 +2010 130 2.89492 +2010 131 5.41656 +2010 132 1.71162 +2010 133 1.39448 +2010 134 2.49278 +2010 135 2.15228 +2010 136 0.82233 +2010 137 0.18864 +2010 138 1.00814 +2010 139 1.74414 +2010 140 3.48540 +2010 141 1.29679 +2010 142 1.27039 +2010 143 3.19006 +2010 144 2.82824 +2010 145 4.09635 +2010 146 0.92623 +2010 147 2.51718 +2010 148 1.06340 +2010 149 2.08595 +2010 150 1.36131 +2010 151 3.01340 +2010 152 1.48244 +2010 153 1.59842 +2010 154 1.84877 +2010 155 1.93150 +2010 156 4.75664 +2010 157 3.57803 +2010 158 1.93643 +2010 159 3.08112 +2010 160 1.29109 +2010 161 2.10821 +2010 162 3.59948 +2010 163 2.84680 +2010 164 3.65492 +2010 165 3.41808 +2010 166 1.66176 +2010 167 0.96593 +2010 168 0.82160 +2010 169 3.20853 +2010 170 1.47309 +2010 171 3.62459 +2010 172 2.26718 +2010 173 0.11369 +2010 174 3.09697 +2010 175 3.05335 +2010 176 0.76100 +2010 177 3.17670 +2010 178 1.15698 +2010 179 1.75449 +2010 180 1.30410 +2010 181 1.79797 +2010 182 2.52691 +2010 183 1.93166 +2010 184 1.59783 +2010 185 5.59968 +2010 186 4.72531 +2010 187 3.80810 +2010 188 4.15912 +2010 189 2.59378 +2010 190 2.17752 +2010 191 1.78590 +2010 192 2.24193 +2010 193 1.94205 +2010 194 2.82754 +2010 195 2.21931 +2010 196 1.26715 +2010 197 1.63583 +2010 198 1.99860 +2010 199 0.77840 +2010 200 1.62194 +2010 201 1.42093 +2010 202 1.74438 +2010 203 0.39155 +2010 204 3.07118 +2010 205 1.62375 +2010 206 1.05763 +2010 207 3.69911 +2010 208 2.56038 +2010 209 1.59572 +2010 210 0.77299 +2010 211 1.19631 +2010 212 3.68462 +2010 213 1.92820 +2010 214 1.17960 +2010 215 3.52875 +2010 216 2.43098 +2010 217 1.02667 +2010 218 3.16358 +2010 219 2.77381 +2010 220 2.63509 +2010 221 1.68392 +2010 222 1.17653 +2010 223 1.35491 +2010 224 4.51318 +2010 225 3.19016 +2010 226 2.27177 +2010 227 0.54514 +2010 228 2.87542 +2010 229 2.76984 +2010 230 2.50593 +2010 231 0.73454 +2010 232 0.65293 +2010 233 2.64877 +2010 234 2.38536 +2010 235 1.49196 +2010 236 2.76784 +2010 237 0.52818 +2010 238 0.48762 +2010 239 0.83767 +2010 240 1.25112 +2010 241 2.61112 +2010 242 2.92528 +2010 243 2.16693 +2010 244 2.37728 +2010 245 4.23545 +2010 246 3.71797 +2010 247 2.96028 +2010 248 4.29081 +2010 249 0.92630 +2010 250 1.84812 +2010 251 2.50042 +2010 252 2.73818 +2010 253 1.71744 +2010 254 2.54490 +2010 255 2.35986 +2010 256 2.84885 +2010 257 2.92250 +2010 258 1.84489 +2010 259 4.84127 +2010 260 5.78374 +2010 261 5.05819 +2010 262 5.50209 +2010 263 5.60745 +2010 264 4.08900 +2010 265 5.57521 +2010 266 3.83977 +2010 267 3.77029 +2010 268 3.43364 +2010 269 2.61620 +2010 270 1.19374 +2010 271 1.49697 +2010 272 3.76854 +2010 273 2.45704 +2010 274 2.48437 +2010 275 0.56941 +2010 276 0.88029 +2010 277 0.60358 +2010 278 2.15518 +2010 279 2.59613 +2010 280 2.18760 +2010 281 3.58747 +2010 282 3.28517 +2010 283 3.53535 +2010 284 5.97284 +2010 285 5.72595 +2010 286 1.25113 +2010 287 0.83726 +2010 288 1.99400 +2010 289 2.70730 +2010 290 4.34794 +2010 291 2.76427 +2010 292 3.42360 +2010 293 5.20186 +2010 294 3.02460 +2010 295 1.33220 +2010 296 0.80700 +2010 297 1.65973 +2010 298 0.95507 +2010 299 1.11046 +2010 300 1.56824 +2010 301 0.78541 +2010 302 3.37937 +2010 303 3.93664 +2010 304 2.66718 +2010 305 1.36387 +2010 306 1.20864 +2010 307 1.44931 +2010 308 1.64881 +2010 309 2.28963 +2010 310 0.81004 +2010 311 0.74823 +2010 312 1.01764 +2010 313 1.20988 +2010 314 1.00718 +2010 315 2.27196 +2010 316 3.45291 +2010 317 4.63262 +2010 318 0.35307 +2010 319 2.19537 +2010 320 1.27304 +2010 321 1.14250 +2010 322 1.72982 +2010 323 1.99371 +2010 324 2.73398 +2010 325 1.11505 +2010 326 1.06615 +2010 327 0.85500 +2010 328 1.30031 +2010 329 1.87112 +2010 330 0.81259 +2010 331 0.28421 +2010 332 1.40563 +2010 333 1.30075 +2010 334 1.57247 +2010 335 1.12755 +2010 336 0.86949 +2010 337 1.12725 +2010 338 2.34051 +2010 339 3.88901 +2010 340 2.75389 +2010 341 1.24788 +2010 342 0.88882 +2010 343 3.13310 +2010 344 4.09548 +2010 345 0.94216 +2010 346 1.88034 +2010 347 1.12574 +2010 348 0.70393 +2010 349 3.57395 +2010 350 2.90676 +2010 351 2.34116 +2010 352 2.93887 +2010 353 2.12161 +2010 354 3.34151 +2010 355 3.06320 +2010 356 2.62083 +2010 357 3.75870 +2010 358 3.58536 +2010 359 2.57929 +2010 360 2.25644 +2010 361 3.82702 +2010 362 0.85800 +2010 363 1.62030 +2010 364 2.10637 +2010 365 1.97479 +2011 1 0.93749 +2011 2 1.07647 +2011 3 1.56755 +2011 4 2.48285 +2011 5 3.34049 +2011 6 2.18802 +2011 7 1.66224 +2011 8 2.80921 +2011 9 2.15874 +2011 10 1.45621 +2011 11 2.64872 +2011 12 0.26270 +2011 13 1.47052 +2011 14 2.02980 +2011 15 2.37317 +2011 16 0.86015 +2011 17 3.20411 +2011 18 2.75991 +2011 19 2.18031 +2011 20 3.77515 +2011 21 3.97972 +2011 22 3.30288 +2011 23 1.94818 +2011 24 1.28016 +2011 25 0.91094 +2011 26 1.75460 +2011 27 2.90890 +2011 28 3.88756 +2011 29 3.20036 +2011 30 4.82547 +2011 31 2.79535 +2011 32 3.95546 +2011 33 3.01977 +2011 34 4.36617 +2011 35 2.79226 +2011 36 2.54408 +2011 37 2.06820 +2011 38 1.53401 +2011 39 1.93415 +2011 40 0.76537 +2011 41 2.29490 +2011 42 2.04871 +2011 43 1.51888 +2011 44 1.70375 +2011 45 1.85808 +2011 46 2.44009 +2011 47 2.08925 +2011 48 0.54465 +2011 49 0.53565 +2011 50 1.63598 +2011 51 1.26688 +2011 52 1.60673 +2011 53 1.31591 +2011 54 0.55573 +2011 55 2.29005 +2011 56 0.77726 +2011 57 1.01921 +2011 58 2.19923 +2011 59 1.49910 +2011 60 2.85363 +2011 61 0.54545 +2011 62 2.70756 +2011 63 2.71377 +2011 64 2.46909 +2011 65 3.20612 +2011 66 1.36210 +2011 67 1.54018 +2011 68 0.89191 +2011 69 1.66204 +2011 70 0.30665 +2011 71 0.33214 +2011 72 1.28644 +2011 73 1.29448 +2011 74 1.04956 +2011 75 0.28576 +2011 76 1.48564 +2011 77 2.14830 +2011 78 0.94913 +2011 79 2.91126 +2011 80 3.18840 +2011 81 3.28087 +2011 82 2.76686 +2011 83 3.03576 +2011 84 2.77357 +2011 85 1.98846 +2011 86 1.55530 +2011 87 2.08140 +2011 88 3.60805 +2011 89 2.36929 +2011 90 2.19936 +2011 91 1.78354 +2011 92 2.12456 +2011 93 3.00299 +2011 94 2.96070 +2011 95 3.13183 +2011 96 4.44576 +2011 97 2.35344 +2011 98 0.67557 +2011 99 1.02851 +2011 100 1.49806 +2011 101 0.53966 +2011 102 0.79384 +2011 103 1.46421 +2011 104 0.72331 +2011 105 1.73525 +2011 106 3.24944 +2011 107 4.04341 +2011 108 2.87154 +2011 109 3.16051 +2011 110 0.71233 +2011 111 2.23894 +2011 112 1.85426 +2011 113 1.15706 +2011 114 1.90923 +2011 115 4.97593 +2011 116 3.61130 +2011 117 4.67387 +2011 118 3.05774 +2011 119 2.54794 +2011 120 4.22713 +2011 121 4.90659 +2011 122 2.25143 +2011 123 1.62734 +2011 124 0.60791 +2011 125 2.69692 +2011 126 2.28459 +2011 127 1.90030 +2011 128 1.50850 +2011 129 0.97494 +2011 130 3.56308 +2011 131 1.86945 +2011 132 1.29781 +2011 133 2.96784 +2011 134 3.07320 +2011 135 5.37808 +2011 136 5.28779 +2011 137 2.34265 +2011 138 2.42688 +2011 139 1.74235 +2011 140 1.99861 +2011 141 0.96653 +2011 142 1.34126 +2011 143 0.56770 +2011 144 2.37949 +2011 145 4.30332 +2011 146 2.05198 +2011 147 3.35490 +2011 148 2.34096 +2011 149 2.41832 +2011 150 2.30280 +2011 151 1.89339 +2011 152 2.55866 +2011 153 3.61991 +2011 154 5.09134 +2011 155 1.58504 +2011 156 0.46924 +2011 157 1.43344 +2011 158 1.52368 +2011 159 0.92125 +2011 160 2.80616 +2011 161 1.62503 +2011 162 1.21127 +2011 163 2.53195 +2011 164 2.20186 +2011 165 3.74305 +2011 166 1.21225 +2011 167 2.43086 +2011 168 3.37742 +2011 169 2.47902 +2011 170 1.01010 +2011 171 1.73992 +2011 172 1.08814 +2011 173 1.56415 +2011 174 1.08156 +2011 175 2.86814 +2011 176 2.63811 +2011 177 2.38945 +2011 178 1.55503 +2011 179 4.03886 +2011 180 2.88800 +2011 181 1.22132 +2011 182 2.47199 +2011 183 1.83028 +2011 184 2.69879 +2011 185 3.43487 +2011 186 4.21570 +2011 187 3.46800 +2011 188 4.57604 +2011 189 5.12636 +2011 190 4.61643 +2011 191 4.60456 +2011 192 5.04767 +2011 193 4.21352 +2011 194 4.33015 +2011 195 3.44015 +2011 196 2.48640 +2011 197 1.92908 +2011 198 0.98225 +2011 199 0.70382 +2011 200 1.95822 +2011 201 3.15303 +2011 202 4.74612 +2011 203 1.91320 +2011 204 1.42277 +2011 205 2.22724 +2011 206 3.10259 +2011 207 2.74608 +2011 208 3.10988 +2011 209 3.62257 +2011 210 2.92438 +2011 211 1.39977 +2011 212 0.85134 +2011 213 0.65262 +2011 214 2.16686 +2011 215 2.39491 +2011 216 1.40743 +2011 217 2.27677 +2011 218 4.60998 +2011 219 3.47799 +2011 220 1.47341 +2011 221 1.57681 +2011 222 1.22967 +2011 223 0.49763 +2011 224 1.04952 +2011 225 3.93594 +2011 226 3.44160 +2011 227 1.11464 +2011 228 2.63751 +2011 229 2.89676 +2011 230 2.92302 +2011 231 1.97398 +2011 232 1.55332 +2011 233 1.12206 +2011 234 1.51377 +2011 235 2.84405 +2011 236 2.89658 +2011 237 2.06236 +2011 238 2.38328 +2011 239 1.64748 +2011 240 1.56929 +2011 241 0.46452 +2011 242 2.46369 +2011 243 3.77882 +2011 244 2.34933 +2011 245 2.39557 +2011 246 0.66908 +2011 247 0.83862 +2011 248 1.92729 +2011 249 1.75551 +2011 250 1.29954 +2011 251 0.73007 +2011 252 0.37715 +2011 253 3.05670 +2011 254 4.39534 +2011 255 5.10982 +2011 256 5.78439 +2011 257 4.23027 +2011 258 4.74250 +2011 259 2.81302 +2011 260 0.57899 +2011 261 1.29963 +2011 262 4.11410 +2011 263 2.74224 +2011 264 0.92905 +2011 265 0.41487 +2011 266 1.90027 +2011 267 2.21510 +2011 268 1.74649 +2011 269 2.27340 +2011 270 2.03988 +2011 271 1.32386 +2011 272 1.86650 +2011 273 3.20495 +2011 274 3.90934 +2011 275 3.43558 +2011 276 2.18125 +2011 277 1.49212 +2011 278 1.31160 +2011 279 1.80023 +2011 280 2.13127 +2011 281 1.01743 +2011 282 4.24822 +2011 283 3.34604 +2011 284 3.44466 +2011 285 1.44542 +2011 286 3.00932 +2011 287 1.81826 +2011 288 2.75915 +2011 289 1.16355 +2011 290 2.84760 +2011 291 1.99052 +2011 292 2.66398 +2011 293 4.04039 +2011 294 1.58160 +2011 295 0.41464 +2011 296 1.16452 +2011 297 2.42159 +2011 298 2.26393 +2011 299 1.42676 +2011 300 0.92103 +2011 301 1.54627 +2011 302 1.50191 +2011 303 2.27174 +2011 304 3.77562 +2011 305 3.07782 +2011 306 2.89938 +2011 307 3.59151 +2011 308 3.81611 +2011 309 3.13391 +2011 310 2.17725 +2011 311 3.14720 +2011 312 3.29313 +2011 313 2.98150 +2011 314 3.51946 +2011 315 1.63703 +2011 316 2.23792 +2011 317 0.64849 +2011 318 1.44404 +2011 319 1.95609 +2011 320 3.26168 +2011 321 4.83452 +2011 322 3.33413 +2011 323 4.24412 +2011 324 5.25204 +2011 325 3.41944 +2011 326 3.41275 +2011 327 4.72782 +2011 328 5.66768 +2011 329 5.46569 +2011 330 0.71791 +2011 331 2.72342 +2011 332 0.91034 +2011 333 1.67886 +2011 334 2.77869 +2011 335 2.31686 +2011 336 2.62819 +2011 337 3.03265 +2011 338 1.48690 +2011 339 1.11179 +2011 340 1.56738 +2011 341 0.52554 +2011 342 2.07863 +2011 343 2.78915 +2011 344 3.41425 +2011 345 3.10156 +2011 346 3.28100 +2011 347 4.38290 +2011 348 4.45475 +2011 349 2.14426 +2011 350 1.74041 +2011 351 3.46978 +2011 352 3.06941 +2011 353 1.19017 +2011 354 0.96705 +2011 355 1.34728 +2011 356 1.80565 +2011 357 0.76185 +2011 358 1.01512 +2011 359 2.06873 +2011 360 2.38403 +2011 361 2.99942 +2011 362 4.65921 +2011 363 3.49048 +2011 364 2.70688 +2011 365 2.46957 +2012 1 1.29043 +2012 2 1.92336 +2012 3 2.10819 +2012 4 2.58604 +2012 5 1.00319 +2012 6 2.40948 +2012 7 3.65858 +2012 8 4.01692 +2012 9 2.25563 +2012 10 1.68353 +2012 11 2.45683 +2012 12 4.43868 +2012 13 4.04016 +2012 14 3.05073 +2012 15 2.54869 +2012 16 1.28626 +2012 17 1.21286 +2012 18 2.55834 +2012 19 3.30036 +2012 20 3.04011 +2012 21 3.20921 +2012 22 2.96017 +2012 23 1.75342 +2012 24 0.73027 +2012 25 2.46396 +2012 26 2.85050 +2012 27 2.40930 +2012 28 4.39039 +2012 29 1.39432 +2012 30 1.38079 +2012 31 3.57644 +2012 32 1.60645 +2012 33 1.38280 +2012 34 1.67153 +2012 35 2.24520 +2012 36 2.45654 +2012 37 1.92096 +2012 38 1.56516 +2012 39 1.29945 +2012 40 2.75958 +2012 41 1.07943 +2012 42 1.19356 +2012 43 1.43779 +2012 44 1.04541 +2012 45 0.62514 +2012 46 0.95660 +2012 47 1.09597 +2012 48 1.08101 +2012 49 1.09641 +2012 50 1.44048 +2012 51 1.72167 +2012 52 2.88334 +2012 53 2.87500 +2012 54 3.90382 +2012 55 2.99294 +2012 56 1.15272 +2012 57 2.18920 +2012 58 1.27959 +2012 59 1.50510 +2012 60 4.44009 +2012 61 2.42447 +2012 62 4.48843 +2012 63 2.21264 +2012 64 1.08777 +2012 65 1.25814 +2012 66 2.17684 +2012 67 4.87980 +2012 68 3.49237 +2012 69 0.87235 +2012 70 1.95492 +2012 71 0.65074 +2012 72 2.84600 +2012 73 0.62496 +2012 74 1.86037 +2012 75 1.18287 +2012 76 1.88789 +2012 77 2.69842 +2012 78 4.11662 +2012 79 5.98471 +2012 80 4.16714 +2012 81 3.05058 +2012 82 2.07599 +2012 83 1.54159 +2012 84 2.17989 +2012 85 3.14433 +2012 86 0.53674 +2012 87 1.42641 +2012 88 2.83584 +2012 89 1.63422 +2012 90 1.75992 +2012 91 1.92460 +2012 92 3.30530 +2012 93 5.33887 +2012 94 5.57372 +2012 95 4.17729 +2012 96 3.25010 +2012 97 2.94166 +2012 98 2.52884 +2012 99 1.22308 +2012 100 2.09110 +2012 101 1.25849 +2012 102 1.41537 +2012 103 2.84118 +2012 104 1.29624 +2012 105 0.20375 +2012 106 1.56149 +2012 107 0.48815 +2012 108 2.97752 +2012 109 2.63009 +2012 110 0.60176 +2012 111 0.85291 +2012 112 0.25244 +2012 113 0.83150 +2012 114 0.61039 +2012 115 0.89847 +2012 116 1.44827 +2012 117 2.14529 +2012 118 3.11170 +2012 119 1.73357 +2012 120 3.36573 +2012 121 1.94467 +2012 122 2.76312 +2012 123 1.75355 +2012 124 1.51459 +2012 125 2.05427 +2012 126 1.52917 +2012 127 1.12946 +2012 128 3.02421 +2012 129 2.21748 +2012 130 1.45027 +2012 131 3.34680 +2012 132 3.01773 +2012 133 1.97222 +2012 134 3.14843 +2012 135 3.26822 +2012 136 2.68739 +2012 137 3.33635 +2012 138 4.30392 +2012 139 2.97906 +2012 140 2.55941 +2012 141 1.12066 +2012 142 1.30966 +2012 143 1.31708 +2012 144 2.08120 +2012 145 3.01419 +2012 146 0.55324 +2012 147 2.68903 +2012 148 2.08129 +2012 149 2.26940 +2012 150 1.86876 +2012 151 2.38095 +2012 152 2.01051 +2012 153 0.96884 +2012 154 2.34730 +2012 155 0.29820 +2012 156 3.11550 +2012 157 2.44478 +2012 158 1.61674 +2012 159 1.68283 +2012 160 2.93184 +2012 161 2.51225 +2012 162 3.98709 +2012 163 1.71013 +2012 164 1.73496 +2012 165 1.39084 +2012 166 1.71871 +2012 167 2.71078 +2012 168 1.44199 +2012 169 3.12545 +2012 170 1.81976 +2012 171 2.32482 +2012 172 0.18900 +2012 173 2.34916 +2012 174 2.15708 +2012 175 2.49695 +2012 176 3.18505 +2012 177 3.33210 +2012 178 4.80787 +2012 179 4.83409 +2012 180 2.41280 +2012 181 2.05925 +2012 182 1.84307 +2012 183 2.16981 +2012 184 4.07459 +2012 185 1.40109 +2012 186 0.97681 +2012 187 2.45220 +2012 188 2.57451 +2012 189 1.70110 +2012 190 1.56970 +2012 191 1.14257 +2012 192 0.91622 +2012 193 0.30209 +2012 194 0.51701 +2012 195 1.64174 +2012 196 3.64438 +2012 197 3.73299 +2012 198 2.27961 +2012 199 1.29894 +2012 200 0.71153 +2012 201 1.47954 +2012 202 2.54665 +2012 203 2.89221 +2012 204 3.51404 +2012 205 2.32672 +2012 206 2.16679 +2012 207 2.96345 +2012 208 1.45442 +2012 209 1.81644 +2012 210 4.71898 +2012 211 4.54660 +2012 212 1.54598 +2012 213 2.11978 +2012 214 2.83899 +2012 215 2.09385 +2012 216 2.20665 +2012 217 0.64873 +2012 218 1.68248 +2012 219 1.50323 +2012 220 1.25231 +2012 221 1.56527 +2012 222 0.74280 +2012 223 2.51376 +2012 224 2.18987 +2012 225 1.48249 +2012 226 0.71904 +2012 227 1.58184 +2012 228 2.07049 +2012 229 2.45151 +2012 230 1.15455 +2012 231 0.66527 +2012 232 1.90794 +2012 233 2.54732 +2012 234 1.87582 +2012 235 0.70927 +2012 236 0.29091 +2012 237 0.97998 +2012 238 1.83725 +2012 239 2.09240 +2012 240 2.17440 +2012 241 1.19267 +2012 242 3.42367 +2012 243 2.21833 +2012 244 0.95526 +2012 245 2.87786 +2012 246 2.95978 +2012 247 4.81533 +2012 248 5.27028 +2012 249 3.58236 +2012 250 3.37522 +2012 251 4.04409 +2012 252 3.86696 +2012 253 5.09918 +2012 254 4.61226 +2012 255 3.12067 +2012 256 2.36551 +2012 257 1.68113 +2012 258 3.42857 +2012 259 4.21236 +2012 260 2.92208 +2012 261 1.48178 +2012 262 1.13073 +2012 263 2.05983 +2012 264 1.41919 +2012 265 1.38170 +2012 266 1.12291 +2012 267 1.82136 +2012 268 2.52233 +2012 269 2.76925 +2012 270 2.38591 +2012 271 4.67494 +2012 272 0.82892 +2012 273 1.90103 +2012 274 3.04185 +2012 275 3.98547 +2012 276 4.29522 +2012 277 3.65666 +2012 278 3.13548 +2012 279 4.74686 +2012 280 2.97445 +2012 281 2.84749 +2012 282 2.26108 +2012 283 1.37633 +2012 284 3.33753 +2012 285 1.17264 +2012 286 4.25919 +2012 287 4.57993 +2012 288 4.38576 +2012 289 5.10337 +2012 290 4.98069 +2012 291 4.92433 +2012 292 5.57045 +2012 293 3.09350 +2012 294 3.94799 +2012 295 4.34696 +2012 296 2.16850 +2012 297 0.93831 +2012 298 2.84598 +2012 299 1.27628 +2012 300 1.92025 +2012 301 1.04969 +2012 302 2.83425 +2012 303 1.98854 +2012 304 1.26068 +2012 305 0.84272 +2012 306 1.84944 +2012 307 2.71971 +2012 308 2.85434 +2012 309 2.95201 +2012 310 2.21738 +2012 311 1.59622 +2012 312 1.58746 +2012 313 0.67625 +2012 314 1.44480 +2012 315 2.81526 +2012 316 1.06596 +2012 317 2.49304 +2012 318 3.88442 +2012 319 0.80017 +2012 320 3.63253 +2012 321 2.62454 +2012 322 4.54750 +2012 323 2.72584 +2012 324 1.66154 +2012 325 1.07710 +2012 326 1.03557 +2012 327 1.16309 +2012 328 2.45490 +2012 329 1.69654 +2012 330 4.38112 +2012 331 3.66173 +2012 332 4.06391 +2012 333 3.86948 +2012 334 3.98118 +2012 335 2.53405 +2012 336 4.77642 +2012 337 4.07161 +2012 338 1.12986 +2012 339 2.75726 +2012 340 2.96366 +2012 341 4.41609 +2012 342 0.49404 +2012 343 1.15719 +2012 344 1.41991 +2012 345 0.95322 +2012 346 1.20334 +2012 347 1.53892 +2012 348 1.60284 +2012 349 1.84163 +2012 350 1.52696 +2012 351 2.15915 +2012 352 2.67701 +2012 353 2.47964 +2012 354 1.83764 +2012 355 1.83105 +2012 356 1.51442 +2012 357 2.70304 +2012 358 2.99488 +2012 359 3.22923 +2012 360 2.89336 +2012 361 1.13247 +2012 362 1.89249 +2012 363 1.74694 +2012 364 2.21525 +2012 365 3.67515 +2012 366 2.81939 +2013 1 2.14450 +2013 2 2.17908 +2013 3 3.00325 +2013 4 3.37050 +2013 5 4.10279 +2013 6 4.00737 +2013 7 4.92200 +2013 8 1.56480 +2013 9 1.72418 +2013 10 2.05092 +2013 11 1.95495 +2013 12 2.22440 +2013 13 2.19996 +2013 14 2.95962 +2013 15 3.73969 +2013 16 4.59869 +2013 17 4.16232 +2013 18 2.70412 +2013 19 3.50536 +2013 20 1.12125 +2013 21 2.46636 +2013 22 2.28062 +2013 23 0.32566 +2013 24 3.27025 +2013 25 2.27037 +2013 26 2.01464 +2013 27 1.30509 +2013 28 0.87795 +2013 29 1.53172 +2013 30 1.57651 +2013 31 2.12386 +2013 32 2.21970 +2013 33 2.16820 +2013 34 3.44074 +2013 35 1.70504 +2013 36 2.01380 +2013 37 0.82675 +2013 38 0.83311 +2013 39 1.50937 +2013 40 0.77162 +2013 41 0.79380 +2013 42 1.63264 +2013 43 2.72115 +2013 44 3.19360 +2013 45 2.97414 +2013 46 2.10155 +2013 47 0.19765 +2013 48 0.55831 +2013 49 1.63599 +2013 50 1.57256 +2013 51 0.26667 +2013 52 2.52349 +2013 53 2.46856 +2013 54 1.65719 +2013 55 2.15203 +2013 56 0.96002 +2013 57 1.02450 +2013 58 1.33877 +2013 59 1.33961 +2013 60 1.06804 +2013 61 0.74846 +2013 62 2.60068 +2013 63 1.62903 +2013 64 2.26600 +2013 65 1.22903 +2013 66 0.57551 +2013 67 3.21646 +2013 68 2.31407 +2013 69 1.66225 +2013 70 1.83288 +2013 71 0.34640 +2013 72 1.99363 +2013 73 1.44545 +2013 74 1.81407 +2013 75 3.25568 +2013 76 3.11121 +2013 77 2.19562 +2013 78 2.66560 +2013 79 0.89013 +2013 80 0.81356 +2013 81 1.12808 +2013 82 1.61112 +2013 83 1.07790 +2013 84 0.08298 +2013 85 0.75395 +2013 86 0.80479 +2013 87 1.04051 +2013 88 1.21227 +2013 89 1.20240 +2013 90 1.28328 +2013 91 0.71297 +2013 92 1.42884 +2013 93 0.67385 +2013 94 2.84951 +2013 95 2.01526 +2013 96 1.71936 +2013 97 0.59679 +2013 98 1.61153 +2013 99 1.21501 +2013 100 1.50263 +2013 101 2.40962 +2013 102 0.48459 +2013 103 0.93056 +2013 104 3.25686 +2013 105 5.15343 +2013 106 2.28540 +2013 107 3.51060 +2013 108 0.06824 +2013 109 2.74993 +2013 110 2.16014 +2013 111 1.12312 +2013 112 2.15853 +2013 113 2.55607 +2013 114 3.30426 +2013 115 3.61548 +2013 116 3.87877 +2013 117 3.03185 +2013 118 3.52328 +2013 119 2.96539 +2013 120 1.80335 +2013 121 1.33014 +2013 122 0.87091 +2013 123 2.52359 +2013 124 2.30008 +2013 125 1.77591 +2013 126 3.14817 +2013 127 0.86006 +2013 128 0.67564 +2013 129 0.18430 +2013 130 3.60413 +2013 131 1.52980 +2013 132 1.18072 +2013 133 1.01799 +2013 134 1.31818 +2013 135 0.91967 +2013 136 3.11547 +2013 137 1.67139 +2013 138 2.94563 +2013 139 0.76392 +2013 140 1.19469 +2013 141 0.96868 +2013 142 2.50028 +2013 143 0.78575 +2013 144 1.88621 +2013 145 2.90162 +2013 146 3.80772 +2013 147 3.16686 +2013 148 3.59514 +2013 149 1.47580 +2013 150 2.16138 +2013 151 2.37937 +2013 152 1.22670 +2013 153 0.86309 +2013 154 2.10171 +2013 155 3.63804 +2013 156 4.25988 +2013 157 1.41307 +2013 158 1.45941 +2013 159 2.54859 +2013 160 2.05689 +2013 161 1.75606 +2013 162 2.43785 +2013 163 2.20903 +2013 164 0.95223 +2013 165 1.21597 +2013 166 4.31357 +2013 167 2.43311 +2013 168 1.68331 +2013 169 1.21498 +2013 170 2.92783 +2013 171 4.31840 +2013 172 3.70023 +2013 173 2.25092 +2013 174 1.81599 +2013 175 1.90116 +2013 176 0.78976 +2013 177 3.27725 +2013 178 2.97790 +2013 179 1.11922 +2013 180 1.73842 +2013 181 2.35320 +2013 182 2.09544 +2013 183 0.94688 +2013 184 1.63025 +2013 185 0.82864 +2013 186 2.00797 +2013 187 2.95006 +2013 188 3.15557 +2013 189 1.44289 +2013 190 0.57783 +2013 191 2.29717 +2013 192 2.17548 +2013 193 2.01522 +2013 194 3.30501 +2013 195 3.63293 +2013 196 2.35028 +2013 197 2.54558 +2013 198 2.90188 +2013 199 2.30210 +2013 200 0.57207 +2013 201 1.56623 +2013 202 0.20017 +2013 203 0.92245 +2013 204 1.03493 +2013 205 2.71394 +2013 206 3.17795 +2013 207 2.07765 +2013 208 2.18088 +2013 209 0.70844 +2013 210 0.17325 +2013 211 1.20062 +2013 212 3.12571 +2013 213 3.94327 +2013 214 4.08766 +2013 215 1.85883 +2013 216 1.57762 +2013 217 1.89790 +2013 218 1.14496 +2013 219 0.98774 +2013 220 1.42376 +2013 221 2.94528 +2013 222 3.21861 +2013 223 4.51926 +2013 224 3.32354 +2013 225 3.70163 +2013 226 3.69611 +2013 227 2.58241 +2013 228 1.67513 +2013 229 2.40508 +2013 230 2.09152 +2013 231 1.23863 +2013 232 3.55389 +2013 233 1.57600 +2013 234 1.44919 +2013 235 0.89823 +2013 236 2.47648 +2013 237 1.42900 +2013 238 2.95307 +2013 239 2.26624 +2013 240 0.36017 +2013 241 4.24261 +2013 242 3.62985 +2013 243 3.24442 +2013 244 2.34889 +2013 245 1.36114 +2013 246 1.85541 +2013 247 4.18832 +2013 248 2.01688 +2013 249 3.11053 +2013 250 3.93156 +2013 251 3.98625 +2013 252 3.55336 +2013 253 3.79356 +2013 254 3.17711 +2013 255 1.74258 +2013 256 2.58597 +2013 257 2.12876 +2013 258 0.87491 +2013 259 3.66373 +2013 260 0.24198 +2013 261 2.00714 +2013 262 2.77417 +2013 263 2.96091 +2013 264 2.87783 +2013 265 1.89448 +2013 266 4.17626 +2013 267 3.11318 +2013 268 4.55816 +2013 269 3.38006 +2013 270 5.20742 +2013 271 3.77840 +2013 272 1.13680 +2013 273 2.60641 +2013 274 1.39102 +2013 275 1.71510 +2013 276 2.65872 +2013 277 0.61968 +2013 278 1.06436 +2013 279 2.74078 +2013 280 2.15833 +2013 281 4.09030 +2013 282 2.39749 +2013 283 4.31864 +2013 284 5.99633 +2013 285 4.66919 +2013 286 3.88915 +2013 287 3.50023 +2013 288 4.48373 +2013 289 3.52811 +2013 290 3.47015 +2013 291 2.81404 +2013 292 0.86536 +2013 293 2.26826 +2013 294 4.01107 +2013 295 2.65730 +2013 296 2.49916 +2013 297 3.50209 +2013 298 2.73797 +2013 299 2.86209 +2013 300 3.15703 +2013 301 1.91136 +2013 302 2.74869 +2013 303 3.60910 +2013 304 3.24435 +2013 305 3.36265 +2013 306 2.29482 +2013 307 1.34390 +2013 308 3.55960 +2013 309 3.18294 +2013 310 2.89218 +2013 311 1.09619 +2013 312 1.16987 +2013 313 1.72171 +2013 314 1.62304 +2013 315 4.05265 +2013 316 3.36550 +2013 317 1.75120 +2013 318 1.23994 +2013 319 2.80377 +2013 320 1.35623 +2013 321 0.43287 +2013 322 1.42425 +2013 323 2.06246 +2013 324 1.83419 +2013 325 0.76373 +2013 326 1.35540 +2013 327 1.14687 +2013 328 1.92525 +2013 329 1.03815 +2013 330 2.12061 +2013 331 1.00822 +2013 332 4.02813 +2013 333 4.30425 +2013 334 3.59897 +2013 335 1.41016 +2013 336 2.43601 +2013 337 3.33722 +2013 338 3.49026 +2013 339 2.05396 +2013 340 2.48218 +2013 341 3.28485 +2013 342 2.60973 +2013 343 2.53890 +2013 344 2.43073 +2013 345 0.52708 +2013 346 1.29389 +2013 347 0.57535 +2013 348 0.48622 +2013 349 0.69551 +2013 350 2.38377 +2013 351 3.05645 +2013 352 3.04478 +2013 353 0.89334 +2013 354 3.17043 +2013 355 1.07099 +2013 356 1.79836 +2013 357 3.02604 +2013 358 3.67898 +2013 359 2.55152 +2013 360 1.35180 +2013 361 2.00365 +2013 362 2.51717 +2013 363 2.01947 +2013 364 3.21828 +2013 365 1.62875 +2014 1 1.97509 +2014 2 3.56096 +2014 3 2.32762 +2014 4 3.71501 +2014 5 3.22062 +2014 6 1.74849 +2014 7 3.51503 +2014 8 1.78510 +2014 9 2.06265 +2014 10 1.37590 +2014 11 2.75342 +2014 12 3.85096 +2014 13 4.28155 +2014 14 0.82511 +2014 15 4.15285 +2014 16 5.28641 +2014 17 1.12880 +2014 18 2.16346 +2014 19 1.32046 +2014 20 0.67089 +2014 21 3.17885 +2014 22 4.50085 +2014 23 2.89389 +2014 24 2.78596 +2014 25 3.37868 +2014 26 2.45630 +2014 27 2.18467 +2014 28 0.87626 +2014 29 0.14560 +2014 30 3.88224 +2014 31 4.45562 +2014 32 2.66643 +2014 33 0.44199 +2014 34 1.54485 +2014 35 1.79197 +2014 36 3.54483 +2014 37 3.80882 +2014 38 0.38094 +2014 39 3.59876 +2014 40 2.46786 +2014 41 1.07225 +2014 42 2.53045 +2014 43 3.51447 +2014 44 3.30035 +2014 45 2.10431 +2014 46 1.29465 +2014 47 2.28209 +2014 48 2.11905 +2014 49 2.05541 +2014 50 1.85496 +2014 51 1.74545 +2014 52 1.49654 +2014 53 4.00775 +2014 54 0.10700 +2014 55 0.10064 +2014 56 1.67668 +2014 57 0.25181 +2014 58 2.93995 +2014 59 2.12676 +2014 60 1.99995 +2014 61 3.66263 +2014 62 3.61594 +2014 63 3.94451 +2014 64 1.41713 +2014 65 0.32180 +2014 66 2.08837 +2014 67 0.57664 +2014 68 0.56234 +2014 69 1.07108 +2014 70 1.33493 +2014 71 1.22912 +2014 72 1.60282 +2014 73 5.58633 +2014 74 3.87161 +2014 75 3.14723 +2014 76 1.81702 +2014 77 0.85786 +2014 78 1.90026 +2014 79 3.40669 +2014 80 2.78806 +2014 81 1.28450 +2014 82 0.88159 +2014 83 3.03380 +2014 84 3.04651 +2014 85 1.13481 +2014 86 1.09216 +2014 87 1.88346 +2014 88 1.96305 +2014 89 0.35764 +2014 90 0.62496 +2014 91 0.63390 +2014 92 0.34174 +2014 93 0.70623 +2014 94 2.52728 +2014 95 2.93426 +2014 96 3.10634 +2014 97 1.66727 +2014 98 1.48262 +2014 99 1.40050 +2014 100 0.56795 +2014 101 2.45975 +2014 102 2.08477 +2014 103 1.83565 +2014 104 3.03326 +2014 105 3.26415 +2014 106 5.43541 +2014 107 2.50537 +2014 108 1.74457 +2014 109 2.65484 +2014 110 2.95936 +2014 111 2.80847 +2014 112 1.05881 +2014 113 1.70363 +2014 114 2.49851 +2014 115 2.05409 +2014 116 1.45278 +2014 117 3.48878 +2014 118 2.95686 +2014 119 0.78328 +2014 120 2.03404 +2014 121 0.82893 +2014 122 1.63085 +2014 123 0.41078 +2014 124 2.75678 +2014 125 2.35452 +2014 126 1.19245 +2014 127 0.92629 +2014 128 1.67671 +2014 129 1.20172 +2014 130 0.74680 +2014 131 1.08022 +2014 132 1.13016 +2014 133 1.55204 +2014 134 3.24338 +2014 135 2.86701 +2014 136 2.02334 +2014 137 0.50037 +2014 138 1.05959 +2014 139 1.83792 +2014 140 2.59365 +2014 141 1.85160 +2014 142 3.56485 +2014 143 4.53470 +2014 144 3.22844 +2014 145 3.60219 +2014 146 1.68065 +2014 147 0.95845 +2014 148 1.82301 +2014 149 1.96748 +2014 150 2.47238 +2014 151 2.71216 +2014 152 2.62045 +2014 153 1.71491 +2014 154 1.46042 +2014 155 0.38109 +2014 156 0.21365 +2014 157 0.73016 +2014 158 1.34675 +2014 159 2.25396 +2014 160 4.23500 +2014 161 4.13651 +2014 162 4.03374 +2014 163 3.10284 +2014 164 1.49301 +2014 165 1.00647 +2014 166 1.25411 +2014 167 2.83470 +2014 168 3.46686 +2014 169 3.01965 +2014 170 3.01518 +2014 171 2.57852 +2014 172 1.30357 +2014 173 0.73910 +2014 174 1.23783 +2014 175 4.21833 +2014 176 2.28766 +2014 177 3.02228 +2014 178 4.55873 +2014 179 0.69691 +2014 180 2.83519 +2014 181 1.97777 +2014 182 4.04293 +2014 183 2.70972 +2014 184 1.75066 +2014 185 4.63477 +2014 186 0.94262 +2014 187 1.56961 +2014 188 3.40352 +2014 189 5.07983 +2014 190 5.07529 +2014 191 5.27648 +2014 192 6.00037 +2014 193 0.90547 +2014 194 1.75556 +2014 195 3.15494 +2014 196 2.60736 +2014 197 2.86622 +2014 198 1.84596 +2014 199 1.69919 +2014 200 3.03228 +2014 201 2.10816 +2014 202 3.30950 +2014 203 3.48562 +2014 204 1.64557 +2014 205 2.99446 +2014 206 2.11605 +2014 207 2.11996 +2014 208 0.73292 +2014 209 1.32200 +2014 210 1.84847 +2014 211 2.08512 +2014 212 1.15284 +2014 213 3.69794 +2014 214 2.24217 +2014 215 2.36566 +2014 216 3.24829 +2014 217 3.87872 +2014 218 3.16241 +2014 219 4.26537 +2014 220 2.74190 +2014 221 1.81282 +2014 222 2.29902 +2014 223 3.16830 +2014 224 3.41672 +2014 225 4.82344 +2014 226 4.12660 +2014 227 2.95399 +2014 228 0.60109 +2014 229 0.81161 +2014 230 2.06610 +2014 231 1.52153 +2014 232 2.81103 +2014 233 2.69158 +2014 234 2.81229 +2014 235 2.28912 +2014 236 1.73075 +2014 237 0.85754 +2014 238 1.34820 +2014 239 1.80366 +2014 240 2.66001 +2014 241 3.01930 +2014 242 3.68630 +2014 243 3.68642 +2014 244 3.84733 +2014 245 0.49341 +2014 246 1.88737 +2014 247 2.11404 +2014 248 2.84546 +2014 249 2.49616 +2014 250 1.01363 +2014 251 0.36330 +2014 252 1.66971 +2014 253 1.55788 +2014 254 2.91093 +2014 255 2.99944 +2014 256 3.29506 +2014 257 2.56481 +2014 258 3.07319 +2014 259 3.80129 +2014 260 1.17045 +2014 261 2.60053 +2014 262 3.37762 +2014 263 2.08731 +2014 264 4.40084 +2014 265 3.75529 +2014 266 3.88628 +2014 267 2.79029 +2014 268 3.19259 +2014 269 1.58681 +2014 270 1.59323 +2014 271 4.66333 +2014 272 3.72806 +2014 273 2.53418 +2014 274 2.59609 +2014 275 4.45419 +2014 276 4.98935 +2014 277 3.83779 +2014 278 5.62249 +2014 279 4.38422 +2014 280 3.51161 +2014 281 2.51240 +2014 282 1.39579 +2014 283 2.07855 +2014 284 1.00355 +2014 285 0.59153 +2014 286 1.72985 +2014 287 0.85882 +2014 288 1.53152 +2014 289 2.56381 +2014 290 2.62222 +2014 291 1.06034 +2014 292 2.70747 +2014 293 0.46845 +2014 294 1.03290 +2014 295 1.95056 +2014 296 3.91667 +2014 297 1.68312 +2014 298 3.89577 +2014 299 3.96014 +2014 300 1.80408 +2014 301 3.97153 +2014 302 5.20382 +2014 303 5.03655 +2014 304 3.11021 +2014 305 2.11536 +2014 306 2.40294 +2014 307 1.82181 +2014 308 0.53070 +2014 309 1.82056 +2014 310 3.49896 +2014 311 1.51459 +2014 312 0.85657 +2014 313 3.02969 +2014 314 3.52721 +2014 315 4.75646 +2014 316 3.29076 +2014 317 3.94362 +2014 318 5.76034 +2014 319 4.69997 +2014 320 2.28990 +2014 321 5.50095 +2014 322 4.40975 +2014 323 4.27095 +2014 324 3.96411 +2014 325 4.11037 +2014 326 1.41325 +2014 327 1.69659 +2014 328 2.10661 +2014 329 3.94753 +2014 330 4.03167 +2014 331 3.13251 +2014 332 4.37683 +2014 333 4.55393 +2014 334 3.14753 +2014 335 1.92431 +2014 336 1.31919 +2014 337 4.13070 +2014 338 3.89449 +2014 339 1.00070 +2014 340 4.50049 +2014 341 0.60475 +2014 342 2.04269 +2014 343 3.09136 +2014 344 1.14333 +2014 345 2.68390 +2014 346 0.99268 +2014 347 3.87846 +2014 348 4.30011 +2014 349 3.41290 +2014 350 4.02139 +2014 351 2.42076 +2014 352 1.98025 +2014 353 1.55317 +2014 354 2.11404 +2014 355 2.07341 +2014 356 1.63784 +2014 357 2.07471 +2014 358 1.55514 +2014 359 1.78182 +2014 360 1.94757 +2014 361 1.29043 +2014 362 1.45874 +2014 363 2.39337 +2014 364 3.00598 +2014 365 0.90479 +2015 1 1.13968 +2015 2 0.07824 +2015 3 1.08968 +2015 4 1.44963 +2015 5 2.18612 +2015 6 2.40549 +2015 7 1.62825 +2015 8 0.44213 +2015 9 0.86996 +2015 10 2.07412 +2015 11 2.76624 +2015 12 0.78175 +2015 13 1.54250 +2015 14 1.18803 +2015 15 1.07714 +2015 16 1.92101 +2015 17 2.51276 +2015 18 2.88866 +2015 19 2.08952 +2015 20 1.78354 +2015 21 1.38026 +2015 22 1.39069 +2015 23 1.38034 +2015 24 1.82664 +2015 25 0.90347 +2015 26 2.67994 +2015 27 2.64827 +2015 28 2.18649 +2015 29 1.45451 +2015 30 1.47434 +2015 31 1.94258 +2015 32 2.63147 +2015 33 4.05541 +2015 34 2.53436 +2015 35 4.09206 +2015 36 5.02065 +2015 37 1.71652 +2015 38 1.36742 +2015 39 3.03946 +2015 40 3.22826 +2015 41 2.97723 +2015 42 1.53849 +2015 43 0.96282 +2015 44 2.37722 +2015 45 1.48616 +2015 46 0.68091 +2015 47 1.64999 +2015 48 0.70594 +2015 49 1.18138 +2015 50 0.44041 +2015 51 1.79181 +2015 52 1.59252 +2015 53 2.03216 +2015 54 1.62567 +2015 55 1.67545 +2015 56 0.38953 +2015 57 1.41226 +2015 58 1.64382 +2015 59 1.00245 +2015 60 1.52333 +2015 61 1.34452 +2015 62 1.00575 +2015 63 1.43752 +2015 64 2.50126 +2015 65 2.85305 +2015 66 4.14276 +2015 67 2.04249 +2015 68 0.35431 +2015 69 1.44042 +2015 70 1.63006 +2015 71 0.59641 +2015 72 0.86788 +2015 73 3.17922 +2015 74 4.83044 +2015 75 2.72906 +2015 76 1.98968 +2015 77 1.15594 +2015 78 0.94807 +2015 79 0.70986 +2015 80 1.12624 +2015 81 1.69737 +2015 82 1.61113 +2015 83 0.79423 +2015 84 1.41690 +2015 85 1.04199 +2015 86 2.15461 +2015 87 1.95261 +2015 88 3.16168 +2015 89 2.47047 +2015 90 0.73864 +2015 91 1.22745 +2015 92 2.30530 +2015 93 2.74003 +2015 94 1.10323 +2015 95 2.05256 +2015 96 1.69918 +2015 97 1.58587 +2015 98 1.61570 +2015 99 2.42989 +2015 100 0.54316 +2015 101 2.45391 +2015 102 3.93473 +2015 103 2.88468 +2015 104 2.48281 +2015 105 2.29033 +2015 106 1.92722 +2015 107 1.39463 +2015 108 1.80345 +2015 109 0.97460 +2015 110 0.68163 +2015 111 0.64875 +2015 112 2.64285 +2015 113 2.01695 +2015 114 1.87878 +2015 115 2.53366 +2015 116 4.60603 +2015 117 3.59204 +2015 118 4.05951 +2015 119 4.23670 +2015 120 1.59678 +2015 121 1.72674 +2015 122 1.39721 +2015 123 0.18877 +2015 124 0.77177 +2015 125 2.05208 +2015 126 3.12076 +2015 127 2.10193 +2015 128 2.28285 +2015 129 2.69496 +2015 130 1.16504 +2015 131 2.80312 +2015 132 2.74042 +2015 133 2.89324 +2015 134 2.66334 +2015 135 2.93036 +2015 136 1.74581 +2015 137 3.10081 +2015 138 1.60841 +2015 139 0.93603 +2015 140 2.67712 +2015 141 0.77886 +2015 142 2.23673 +2015 143 4.76170 +2015 144 5.13727 +2015 145 4.14638 +2015 146 1.52120 +2015 147 1.49768 +2015 148 0.65423 +2015 149 1.35787 +2015 150 2.00885 +2015 151 3.15339 +2015 152 3.59438 +2015 153 3.97628 +2015 154 3.12481 +2015 155 0.67382 +2015 156 0.94578 +2015 157 2.02364 +2015 158 0.88201 +2015 159 1.60340 +2015 160 3.09769 +2015 161 3.46224 +2015 162 4.86956 +2015 163 5.58476 +2015 164 4.63315 +2015 165 3.26081 +2015 166 2.79518 +2015 167 1.14984 +2015 168 1.95329 +2015 169 2.92658 +2015 170 4.15420 +2015 171 3.14466 +2015 172 2.13992 +2015 173 3.19077 +2015 174 3.34039 +2015 175 2.38244 +2015 176 3.33199 +2015 177 3.05458 +2015 178 3.35586 +2015 179 4.91812 +2015 180 3.50869 +2015 181 3.60145 +2015 182 1.15981 +2015 183 2.72487 +2015 184 0.78156 +2015 185 3.92382 +2015 186 3.39649 +2015 187 3.27961 +2015 188 2.61687 +2015 189 3.24787 +2015 190 3.09693 +2015 191 2.03272 +2015 192 1.90590 +2015 193 0.91232 +2015 194 2.20931 +2015 195 3.95913 +2015 196 1.90801 +2015 197 2.22732 +2015 198 2.43523 +2015 199 3.52452 +2015 200 3.24147 +2015 201 3.60692 +2015 202 1.96393 +2015 203 0.98490 +2015 204 1.71945 +2015 205 1.33235 +2015 206 2.10906 +2015 207 2.20175 +2015 208 2.56030 +2015 209 2.91676 +2015 210 2.40919 +2015 211 1.75534 +2015 212 1.77558 +2015 213 1.49101 +2015 214 1.73735 +2015 215 3.11654 +2015 216 1.10053 +2015 217 3.00408 +2015 218 3.35896 +2015 219 3.11455 +2015 220 0.74636 +2015 221 2.72317 +2015 222 2.54033 +2015 223 2.55376 +2015 224 0.12799 +2015 225 3.31102 +2015 226 1.02096 +2015 227 2.67053 +2015 228 1.13642 +2015 229 2.56275 +2015 230 2.72362 +2015 231 2.80332 +2015 232 0.49628 +2015 233 0.21409 +2015 234 1.20188 +2015 235 1.90003 +2015 236 2.92160 +2015 237 1.95820 +2015 238 0.65886 +2015 239 0.94217 +2015 240 0.87976 +2015 241 1.56721 +2015 242 2.07257 +2015 243 2.98715 +2015 244 1.92906 +2015 245 3.36015 +2015 246 2.33514 +2015 247 1.94628 +2015 248 3.55842 +2015 249 1.84424 +2015 250 2.60018 +2015 251 1.93009 +2015 252 1.83560 +2015 253 4.09599 +2015 254 2.93352 +2015 255 2.77684 +2015 256 1.01458 +2015 257 3.44550 +2015 258 3.59251 +2015 259 2.33788 +2015 260 2.25448 +2015 261 0.76651 +2015 262 3.62161 +2015 263 4.05444 +2015 264 0.86784 +2015 265 2.02362 +2015 266 2.42879 +2015 267 2.94331 +2015 268 3.53334 +2015 269 0.59877 +2015 270 0.68437 +2015 271 0.38071 +2015 272 0.55267 +2015 273 1.95160 +2015 274 3.33585 +2015 275 0.76607 +2015 276 3.04292 +2015 277 2.71632 +2015 278 2.25719 +2015 279 1.95679 +2015 280 2.95188 +2015 281 2.02835 +2015 282 2.50093 +2015 283 2.67916 +2015 284 4.53869 +2015 285 3.91134 +2015 286 0.98091 +2015 287 1.36981 +2015 288 3.44460 +2015 289 4.71073 +2015 290 3.35872 +2015 291 5.31827 +2015 292 4.03576 +2015 293 4.01687 +2015 294 4.61942 +2015 295 3.85178 +2015 296 1.01081 +2015 297 1.57233 +2015 298 0.75729 +2015 299 3.68535 +2015 300 1.13182 +2015 301 0.98813 +2015 302 3.52808 +2015 303 1.44817 +2015 304 0.70926 +2015 305 1.89078 +2015 306 3.12882 +2015 307 1.93115 +2015 308 4.34841 +2015 309 2.41784 +2015 310 1.00130 +2015 311 1.74224 +2015 312 2.02682 +2015 313 1.64724 +2015 314 3.29230 +2015 315 3.29817 +2015 316 3.03853 +2015 317 1.98360 +2015 318 3.05757 +2015 319 1.31063 +2015 320 4.22017 +2015 321 2.30342 +2015 322 0.91512 +2015 323 3.33148 +2015 324 3.38087 +2015 325 4.29722 +2015 326 2.78053 +2015 327 2.36273 +2015 328 1.36671 +2015 329 1.70253 +2015 330 3.15723 +2015 331 2.45364 +2015 332 0.53173 +2015 333 1.97743 +2015 334 1.99219 +2015 335 1.81255 +2015 336 1.80810 +2015 337 2.10173 +2015 338 3.97866 +2015 339 3.87608 +2015 340 2.99682 +2015 341 4.23844 +2015 342 1.67917 +2015 343 3.93866 +2015 344 3.57937 +2015 345 2.67210 +2015 346 3.65762 +2015 347 3.12122 +2015 348 3.78002 +2015 349 3.90673 +2015 350 1.93168 +2015 351 1.58387 +2015 352 2.54649 +2015 353 1.99489 +2015 354 3.61733 +2015 355 4.49144 +2015 356 2.06911 +2015 357 2.96864 +2015 358 0.60729 +2015 359 0.29532 +2015 360 0.85760 +2015 361 0.71813 +2015 362 2.25483 +2015 363 1.56130 +2015 364 2.18856 +2015 365 4.02578 +2016 1 4.17160 +2016 2 2.07643 +2016 3 3.31441 +2016 4 1.12917 +2016 5 1.68068 +2016 6 2.66535 +2016 7 3.62280 +2016 8 3.23191 +2016 9 4.26460 +2016 10 2.56028 +2016 11 1.64785 +2016 12 2.85122 +2016 13 1.31132 +2016 14 2.38010 +2016 15 1.88002 +2016 16 1.69473 +2016 17 3.73925 +2016 18 2.82470 +2016 19 1.39017 +2016 20 1.34678 +2016 21 1.63948 +2016 22 0.96083 +2016 23 1.29921 +2016 24 1.94428 +2016 25 1.57010 +2016 26 1.63694 +2016 27 2.05312 +2016 28 0.74013 +2016 29 0.81204 +2016 30 1.18981 +2016 31 2.19732 +2016 32 0.94244 +2016 33 2.17982 +2016 34 2.53766 +2016 35 2.01440 +2016 36 2.60449 +2016 37 2.91018 +2016 38 0.87011 +2016 39 1.51273 +2016 40 1.04687 +2016 41 1.17679 +2016 42 1.01921 +2016 43 1.95845 +2016 44 2.55879 +2016 45 2.93680 +2016 46 2.99211 +2016 47 3.79246 +2016 48 4.74557 +2016 49 3.02348 +2016 50 2.54718 +2016 51 2.56417 +2016 52 1.47877 +2016 53 1.54587 +2016 54 1.80189 +2016 55 2.22381 +2016 56 1.87947 +2016 57 1.71324 +2016 58 1.33713 +2016 59 1.80500 +2016 60 2.83508 +2016 61 2.52189 +2016 62 0.97554 +2016 63 0.97020 +2016 64 0.77964 +2016 65 2.32939 +2016 66 3.18856 +2016 67 4.05004 +2016 68 0.57913 +2016 69 2.45655 +2016 70 1.65425 +2016 71 1.08970 +2016 72 1.78413 +2016 73 1.73658 +2016 74 2.31121 +2016 75 0.41376 +2016 76 1.90443 +2016 77 2.78698 +2016 78 3.27829 +2016 79 2.93465 +2016 80 3.00186 +2016 81 3.78019 +2016 82 5.60422 +2016 83 3.54686 +2016 84 1.93192 +2016 85 0.88672 +2016 86 1.56524 +2016 87 2.46618 +2016 88 1.98250 +2016 89 1.88347 +2016 90 0.86086 +2016 91 2.62752 +2016 92 1.87226 +2016 93 1.85560 +2016 94 1.60070 +2016 95 2.78834 +2016 96 1.24126 +2016 97 1.62526 +2016 98 1.58986 +2016 99 1.08843 +2016 100 0.67295 +2016 101 0.56509 +2016 102 2.02924 +2016 103 1.15228 +2016 104 0.74046 +2016 105 0.20493 +2016 106 1.68220 +2016 107 2.12285 +2016 108 2.53041 +2016 109 1.15334 +2016 110 0.86709 +2016 111 1.01192 +2016 112 1.02573 +2016 113 1.35179 +2016 114 2.03048 +2016 115 2.31408 +2016 116 2.37792 +2016 117 0.64696 +2016 118 1.65994 +2016 119 2.91643 +2016 120 1.45803 +2016 121 0.56705 +2016 122 1.73028 +2016 123 1.80289 +2016 124 0.90856 +2016 125 1.77460 +2016 126 0.89644 +2016 127 0.74278 +2016 128 0.29100 +2016 129 1.23815 +2016 130 0.45617 +2016 131 1.84202 +2016 132 3.14477 +2016 133 3.65287 +2016 134 3.05210 +2016 135 2.01879 +2016 136 2.89881 +2016 137 2.71613 +2016 138 2.71159 +2016 139 4.89850 +2016 140 2.85922 +2016 141 1.66294 +2016 142 2.68434 +2016 143 2.63007 +2016 144 3.67169 +2016 145 3.79099 +2016 146 3.10653 +2016 147 1.95921 +2016 148 3.86933 +2016 149 3.51298 +2016 150 3.20333 +2016 151 2.33123 +2016 152 2.20122 +2016 153 2.51365 +2016 154 1.09695 +2016 155 1.02082 +2016 156 0.86008 +2016 157 1.71863 +2016 158 1.83794 +2016 159 3.30311 +2016 160 4.68496 +2016 161 3.08471 +2016 162 2.30873 +2016 163 2.71675 +2016 164 2.75983 +2016 165 1.42027 +2016 166 2.79332 +2016 167 1.67671 +2016 168 1.12879 +2016 169 2.30918 +2016 170 2.76982 +2016 171 0.57411 +2016 172 1.74182 +2016 173 3.00272 +2016 174 3.42994 +2016 175 3.61849 +2016 176 1.37755 +2016 177 3.66013 +2016 178 3.83047 +2016 179 2.33036 +2016 180 1.85867 +2016 181 2.50556 +2016 182 2.94819 +2016 183 2.14969 +2016 184 1.13433 +2016 185 1.11235 +2016 186 2.14809 +2016 187 0.70737 +2016 188 2.78467 +2016 189 4.49387 +2016 190 4.90557 +2016 191 4.06200 +2016 192 3.09970 +2016 193 1.44560 +2016 194 1.15920 +2016 195 3.50151 +2016 196 4.86440 +2016 197 3.83878 +2016 198 4.88909 +2016 199 2.83113 +2016 200 3.47612 +2016 201 4.68068 +2016 202 2.84945 +2016 203 1.23518 +2016 204 3.30140 +2016 205 5.40596 +2016 206 4.07463 +2016 207 0.56632 +2016 208 2.00554 +2016 209 3.34116 +2016 210 5.46107 +2016 211 3.34749 +2016 212 4.55899 +2016 213 2.55586 +2016 214 2.05774 +2016 215 2.66071 +2016 216 1.82720 +2016 217 0.40211 +2016 218 3.24028 +2016 219 4.31804 +2016 220 1.56932 +2016 221 2.66684 +2016 222 3.58800 +2016 223 2.68654 +2016 224 1.17135 +2016 225 1.63699 +2016 226 2.44930 +2016 227 1.50151 +2016 228 1.68856 +2016 229 1.08733 +2016 230 1.35667 +2016 231 1.89536 +2016 232 1.72171 +2016 233 1.04602 +2016 234 1.03905 +2016 235 2.13578 +2016 236 0.26625 +2016 237 2.13717 +2016 238 4.25650 +2016 239 5.65040 +2016 240 2.31201 +2016 241 1.81156 +2016 242 1.49015 +2016 243 0.62696 +2016 244 1.60025 +2016 245 2.44265 +2016 246 3.19331 +2016 247 1.71021 +2016 248 4.53435 +2016 249 2.97805 +2016 250 3.80076 +2016 251 3.04886 +2016 252 4.31778 +2016 253 4.09411 +2016 254 1.07835 +2016 255 1.87318 +2016 256 2.44330 +2016 257 1.91900 +2016 258 1.39393 +2016 259 1.65500 +2016 260 3.32136 +2016 261 0.91385 +2016 262 1.76821 +2016 263 1.61626 +2016 264 3.02469 +2016 265 2.22373 +2016 266 0.30757 +2016 267 2.33963 +2016 268 4.04094 +2016 269 3.59779 +2016 270 3.60205 +2016 271 1.97336 +2016 272 2.99640 +2016 273 1.62798 +2016 274 2.33114 +2016 275 1.96445 +2016 276 1.71284 +2016 277 2.36718 +2016 278 3.41923 +2016 279 3.67798 +2016 280 3.48076 +2016 281 3.95634 +2016 282 2.43292 +2016 283 2.29886 +2016 284 2.43718 +2016 285 2.08186 +2016 286 2.79216 +2016 287 1.90961 +2016 288 1.98667 +2016 289 4.21499 +2016 290 4.44085 +2016 291 3.91338 +2016 292 3.33395 +2016 293 2.37557 +2016 294 2.04574 +2016 295 3.47407 +2016 296 2.10849 +2016 297 1.59983 +2016 298 3.05324 +2016 299 3.21560 +2016 300 3.06477 +2016 301 2.95602 +2016 302 3.43869 +2016 303 2.47604 +2016 304 1.04058 +2016 305 1.28662 +2016 306 2.30083 +2016 307 3.40306 +2016 308 4.29285 +2016 309 3.16073 +2016 310 2.28669 +2016 311 2.70356 +2016 312 5.26149 +2016 313 3.16865 +2016 314 3.15680 +2016 315 2.68810 +2016 316 2.77096 +2016 317 3.74184 +2016 318 2.06072 +2016 319 3.58902 +2016 320 3.67391 +2016 321 3.29302 +2016 322 3.49682 +2016 323 4.64379 +2016 324 4.74068 +2016 325 3.78315 +2016 326 1.35027 +2016 327 2.76159 +2016 328 1.36850 +2016 329 2.94335 +2016 330 3.70116 +2016 331 5.01593 +2016 332 4.92199 +2016 333 4.12184 +2016 334 3.37349 +2016 335 1.82777 +2016 336 1.62979 +2016 337 0.43649 +2016 338 1.59766 +2016 339 0.81296 +2016 340 1.47087 +2016 341 2.70290 +2016 342 1.92615 +2016 343 1.58558 +2016 344 2.44924 +2016 345 4.84263 +2016 346 4.34961 +2016 347 3.17152 +2016 348 3.97188 +2016 349 4.36940 +2016 350 4.42837 +2016 351 0.52301 +2016 352 1.76587 +2016 353 2.78239 +2016 354 0.45207 +2016 355 1.47273 +2016 356 2.59968 +2016 357 3.74045 +2016 358 4.16074 +2016 359 3.41537 +2016 360 0.91904 +2016 361 2.82616 +2016 362 3.58897 +2016 363 3.27118 +2016 364 0.41682 +2016 365 1.66998 +2016 366 2.64851 +2017 1 2.30530 +2017 2 2.38384 +2017 3 4.72915 +2017 4 1.60252 +2017 5 2.62044 +2017 6 3.31755 +2017 7 4.58550 +2017 8 4.95545 +2017 9 4.30488 +2017 10 3.53697 +2017 11 3.62918 +2017 12 3.21422 +2017 13 1.48235 +2017 14 3.20755 +2017 15 3.88533 +2017 16 3.51771 +2017 17 3.85987 +2017 18 3.64468 +2017 19 2.66044 +2017 20 3.70007 +2017 21 4.07716 +2017 22 4.74982 +2017 23 0.74483 +2017 24 3.03231 +2017 25 3.04768 +2017 26 3.46055 +2017 27 0.60235 +2017 28 1.78507 +2017 29 0.53198 +2017 30 2.31308 +2017 31 2.85653 +2017 32 2.61747 +2017 33 3.39286 +2017 34 3.36406 +2017 35 0.50635 +2017 36 1.88451 +2017 37 3.73973 +2017 38 2.53723 +2017 39 3.48411 +2017 40 1.05600 +2017 41 0.44772 +2017 42 3.24124 +2017 43 4.24440 +2017 44 1.95958 +2017 45 1.73889 +2017 46 1.89859 +2017 47 2.16840 +2017 48 2.02769 +2017 49 1.93064 +2017 50 2.18596 +2017 51 0.79396 +2017 52 1.19714 +2017 53 1.26041 +2017 54 0.76726 +2017 55 0.44086 +2017 56 0.81626 +2017 57 1.64890 +2017 58 0.56154 +2017 59 0.87840 +2017 60 1.33710 +2017 61 1.59284 +2017 62 3.70969 +2017 63 3.46246 +2017 64 3.04684 +2017 65 0.58434 +2017 66 4.87438 +2017 67 3.58780 +2017 68 4.57701 +2017 69 2.22656 +2017 70 2.01395 +2017 71 2.68505 +2017 72 2.77787 +2017 73 3.76598 +2017 74 1.90790 +2017 75 0.33113 +2017 76 1.22858 +2017 77 0.94817 +2017 78 2.84981 +2017 79 2.69270 +2017 80 2.77410 +2017 81 0.68198 +2017 82 1.52685 +2017 83 0.35902 +2017 84 3.10051 +2017 85 1.74293 +2017 86 1.42361 +2017 87 1.51364 +2017 88 1.66585 +2017 89 1.51715 +2017 90 0.64292 +2017 91 1.05607 +2017 92 0.75920 +2017 93 2.99638 +2017 94 2.54577 +2017 95 4.05387 +2017 96 1.80658 +2017 97 1.76656 +2017 98 1.39913 +2017 99 1.82316 +2017 100 2.67542 +2017 101 3.73516 +2017 102 1.82531 +2017 103 2.51647 +2017 104 2.19511 +2017 105 1.29588 +2017 106 0.61770 +2017 107 1.96051 +2017 108 1.35947 +2017 109 1.31127 +2017 110 0.77038 +2017 111 0.39843 +2017 112 1.37597 +2017 113 1.81315 +2017 114 1.67196 +2017 115 0.67491 +2017 116 1.24908 +2017 117 1.36577 +2017 118 1.71404 +2017 119 2.62144 +2017 120 3.03144 +2017 121 1.29162 +2017 122 2.05162 +2017 123 3.79612 +2017 124 1.99831 +2017 125 0.72696 +2017 126 0.83089 +2017 127 1.52174 +2017 128 0.98271 +2017 129 0.77705 +2017 130 3.12404 +2017 131 2.41589 +2017 132 3.82037 +2017 133 1.75067 +2017 134 1.33679 +2017 135 1.19105 +2017 136 3.35894 +2017 137 3.32996 +2017 138 4.87229 +2017 139 4.58292 +2017 140 2.50866 +2017 141 1.14147 +2017 142 1.65674 +2017 143 1.38085 +2017 144 0.95728 +2017 145 1.93242 +2017 146 1.74000 +2017 147 1.47363 +2017 148 1.14958 +2017 149 1.06634 +2017 150 1.13556 +2017 151 1.11148 +2017 152 2.23244 +2017 153 3.20285 +2017 154 1.12869 +2017 155 1.38755 +2017 156 0.76327 +2017 157 2.29353 +2017 158 2.23386 +2017 159 1.78875 +2017 160 3.05029 +2017 161 1.81892 +2017 162 2.52425 +2017 163 3.91025 +2017 164 4.88536 +2017 165 2.80785 +2017 166 2.05102 +2017 167 0.74737 +2017 168 1.41117 +2017 169 0.48614 +2017 170 1.37883 +2017 171 2.98488 +2017 172 4.08474 +2017 173 1.67317 +2017 174 2.28122 +2017 175 2.40911 +2017 176 1.91272 +2017 177 1.53546 +2017 178 1.05865 +2017 179 0.92707 +2017 180 0.29836 +2017 181 4.00224 +2017 182 2.01467 +2017 183 0.57561 +2017 184 2.19233 +2017 185 1.33324 +2017 186 1.45740 +2017 187 2.09348 +2017 188 0.26834 +2017 189 0.97004 +2017 190 2.26443 +2017 191 2.14153 +2017 192 1.96160 +2017 193 1.46229 +2017 194 4.15995 +2017 195 2.46730 +2017 196 1.49514 +2017 197 1.69118 +2017 198 0.62017 +2017 199 1.04275 +2017 200 3.56501 +2017 201 3.84120 +2017 202 2.67328 +2017 203 1.60670 +2017 204 2.79434 +2017 205 1.91392 +2017 206 2.78882 +2017 207 1.66481 +2017 208 2.67276 +2017 209 2.88157 +2017 210 0.75104 +2017 211 1.48381 +2017 212 1.82920 +2017 213 0.60764 +2017 214 3.33773 +2017 215 2.09423 +2017 216 1.13104 +2017 217 1.86813 +2017 218 1.44499 +2017 219 1.80513 +2017 220 3.32603 +2017 221 1.87150 +2017 222 2.54801 +2017 223 3.68919 +2017 224 2.52375 +2017 225 2.17815 +2017 226 2.59360 +2017 227 2.34054 +2017 228 2.24462 +2017 229 0.19660 +2017 230 1.45979 +2017 231 2.32893 +2017 232 0.96060 +2017 233 1.42470 +2017 234 0.26369 +2017 235 0.36377 +2017 236 1.10488 +2017 237 1.56262 +2017 238 4.25987 +2017 239 4.22376 +2017 240 1.47124 +2017 241 1.03572 +2017 242 0.45879 +2017 243 0.90448 +2017 244 3.05946 +2017 245 3.30492 +2017 246 2.13296 +2017 247 2.02213 +2017 248 2.88631 +2017 249 4.24498 +2017 250 3.87396 +2017 251 3.14019 +2017 252 3.37672 +2017 253 3.00469 +2017 254 3.84749 +2017 255 3.59317 +2017 256 3.47177 +2017 257 2.52738 +2017 258 3.47939 +2017 259 2.65111 +2017 260 3.09064 +2017 261 2.03405 +2017 262 0.43520 +2017 263 1.16096 +2017 264 1.75171 +2017 265 1.92034 +2017 266 2.88073 +2017 267 3.18628 +2017 268 4.16735 +2017 269 0.62329 +2017 270 1.68860 +2017 271 1.90760 +2017 272 2.47843 +2017 273 2.28806 +2017 274 4.93504 +2017 275 3.81820 +2017 276 3.30913 +2017 277 1.65547 +2017 278 1.26413 +2017 279 2.46335 +2017 280 4.30322 +2017 281 2.18377 +2017 282 0.86201 +2017 283 4.61401 +2017 284 3.24276 +2017 285 3.17578 +2017 286 2.68188 +2017 287 3.87060 +2017 288 4.36923 +2017 289 3.99006 +2017 290 1.95810 +2017 291 1.54650 +2017 292 0.62114 +2017 293 3.75470 +2017 294 3.74187 +2017 295 0.49284 +2017 296 3.66243 +2017 297 3.88247 +2017 298 3.45681 +2017 299 1.20135 +2017 300 2.89953 +2017 301 2.61539 +2017 302 2.34234 +2017 303 2.27829 +2017 304 3.13094 +2017 305 3.23341 +2017 306 3.16602 +2017 307 2.32574 +2017 308 2.43680 +2017 309 3.75338 +2017 310 1.87574 +2017 311 2.70024 +2017 312 1.69841 +2017 313 1.12057 +2017 314 4.70556 +2017 315 2.26479 +2017 316 1.34239 +2017 317 1.11039 +2017 318 1.35397 +2017 319 1.50514 +2017 320 0.71733 +2017 321 5.01875 +2017 322 4.96942 +2017 323 3.22157 +2017 324 0.95863 +2017 325 0.73121 +2017 326 0.64043 +2017 327 1.07214 +2017 328 1.39917 +2017 329 1.18484 +2017 330 1.28476 +2017 331 1.23491 +2017 332 0.92434 +2017 333 0.65533 +2017 334 1.53346 +2017 335 1.05582 +2017 336 0.88176 +2017 337 0.54860 +2017 338 1.64629 +2017 339 0.89217 +2017 340 1.00020 +2017 341 2.02492 +2017 342 2.20798 +2017 343 2.03980 +2017 344 1.73273 +2017 345 3.13498 +2017 346 3.63931 +2017 347 2.53474 +2017 348 1.05593 +2017 349 1.38860 +2017 350 1.81756 +2017 351 1.32498 +2017 352 2.28204 +2017 353 3.60389 +2017 354 2.66188 +2017 355 0.99450 +2017 356 0.96817 +2017 357 1.82690 +2017 358 2.15178 +2017 359 1.98935 +2017 360 3.18311 +2017 361 3.55491 +2017 362 3.03632 +2017 363 1.09470 +2017 364 2.52004 +2017 365 0.83890 +2018 1 1.20772 +2018 2 2.06272 +2018 3 3.78811 +2018 4 5.09840 +2018 5 1.18519 +2018 6 1.64245 +2018 7 0.62604 +2018 8 2.11546 +2018 9 3.08232 +2018 10 2.06080 +2018 11 1.09646 +2018 12 2.45303 +2018 13 2.04522 +2018 14 2.80416 +2018 15 4.27974 +2018 16 4.85469 +2018 17 3.89690 +2018 18 2.83763 +2018 19 1.65555 +2018 20 1.19095 +2018 21 1.81320 +2018 22 0.98164 +2018 23 2.13312 +2018 24 1.24489 +2018 25 0.92956 +2018 26 0.99527 +2018 27 0.80643 +2018 28 0.91382 +2018 29 2.02126 +2018 30 3.32182 +2018 31 5.42593 +2018 32 2.95932 +2018 33 2.32037 +2018 34 0.67587 +2018 35 1.24848 +2018 36 2.69806 +2018 37 2.75850 +2018 38 3.19142 +2018 39 2.41687 +2018 40 2.35015 +2018 41 2.94961 +2018 42 1.97663 +2018 43 2.45865 +2018 44 2.00626 +2018 45 1.48090 +2018 46 1.31245 +2018 47 1.48941 +2018 48 0.95049 +2018 49 1.31653 +2018 50 4.05677 +2018 51 3.24402 +2018 52 2.12592 +2018 53 0.10197 +2018 54 1.23187 +2018 55 1.23189 +2018 56 2.15891 +2018 57 1.29703 +2018 58 3.37149 +2018 59 3.39326 +2018 60 3.13652 +2018 61 3.48840 +2018 62 2.17597 +2018 63 0.94832 +2018 64 0.71005 +2018 65 2.10985 +2018 66 1.78635 +2018 67 3.84733 +2018 68 2.55080 +2018 69 2.34210 +2018 70 2.76379 +2018 71 4.66181 +2018 72 2.95305 +2018 73 1.77101 +2018 74 2.48915 +2018 75 2.96963 +2018 76 2.85538 +2018 77 2.01271 +2018 78 1.52271 +2018 79 0.73811 +2018 80 1.18586 +2018 81 2.63997 +2018 82 2.50204 +2018 83 1.51169 +2018 84 0.59544 +2018 85 1.41046 +2018 86 1.26977 +2018 87 1.36905 +2018 88 1.57470 +2018 89 2.62546 +2018 90 0.33935 +2018 91 1.51624 +2018 92 2.39700 +2018 93 2.53822 +2018 94 1.03690 +2018 95 0.94496 +2018 96 2.99518 +2018 97 0.34756 +2018 98 2.36736 +2018 99 4.04063 +2018 100 3.36589 +2018 101 3.28469 +2018 102 4.50016 +2018 103 1.02141 +2018 104 1.49083 +2018 105 2.24493 +2018 106 2.97348 +2018 107 4.02753 +2018 108 2.72101 +2018 109 3.46820 +2018 110 3.63067 +2018 111 2.79640 +2018 112 1.53826 +2018 113 2.35465 +2018 114 1.60580 +2018 115 0.68098 +2018 116 1.94510 +2018 117 5.27204 +2018 118 4.16612 +2018 119 1.29076 +2018 120 1.83894 +2018 121 3.43804 +2018 122 1.56018 +2018 123 0.67898 +2018 124 0.52720 +2018 125 2.15933 +2018 126 3.10583 +2018 127 3.08827 +2018 128 2.56708 +2018 129 1.27537 +2018 130 2.37390 +2018 131 1.32118 +2018 132 0.84297 +2018 133 0.90461 +2018 134 1.28067 +2018 135 2.41399 +2018 136 2.77119 +2018 137 2.81162 +2018 138 3.10511 +2018 139 2.75722 +2018 140 2.94030 +2018 141 2.48818 +2018 142 3.14527 +2018 143 3.47949 +2018 144 2.31987 +2018 145 2.85449 +2018 146 3.47210 +2018 147 3.09005 +2018 148 2.72608 +2018 149 1.54277 +2018 150 0.89277 +2018 151 1.57389 +2018 152 2.64796 +2018 153 3.94193 +2018 154 3.03010 +2018 155 2.10261 +2018 156 1.64562 +2018 157 3.42378 +2018 158 2.97308 +2018 159 0.74351 +2018 160 0.81552 +2018 161 3.76024 +2018 162 2.43440 +2018 163 2.44414 +2018 164 2.48607 +2018 165 2.19482 +2018 166 1.53473 +2018 167 2.60380 +2018 168 1.94899 +2018 169 0.50031 +2018 170 3.86915 +2018 171 3.93131 +2018 172 1.62960 +2018 173 1.50136 +2018 174 2.49340 +2018 175 3.23314 +2018 176 3.86243 +2018 177 2.71881 +2018 178 1.32726 +2018 179 1.62696 +2018 180 0.94767 +2018 181 1.66775 +2018 182 3.39111 +2018 183 2.30133 +2018 184 1.85169 +2018 185 1.26015 +2018 186 0.55681 +2018 187 1.82363 +2018 188 3.73756 +2018 189 5.03891 +2018 190 3.21615 +2018 191 2.10622 +2018 192 1.87437 +2018 193 1.39035 +2018 194 3.05990 +2018 195 5.21303 +2018 196 1.33683 +2018 197 2.84021 +2018 198 1.80406 +2018 199 0.75514 +2018 200 1.73686 +2018 201 1.27672 +2018 202 2.23570 +2018 203 1.80214 +2018 204 1.42567 +2018 205 1.92847 +2018 206 3.27300 +2018 207 2.40117 +2018 208 3.36855 +2018 209 3.34070 +2018 210 1.53128 +2018 211 1.29815 +2018 212 1.16027 +2018 213 0.46127 +2018 214 0.27162 +2018 215 1.89420 +2018 216 3.43066 +2018 217 1.11876 +2018 218 0.91648 +2018 219 2.64957 +2018 220 3.07553 +2018 221 1.92763 +2018 222 1.44088 +2018 223 0.48337 +2018 224 1.05718 +2018 225 2.70628 +2018 226 4.39227 +2018 227 3.18352 +2018 228 2.20746 +2018 229 2.03903 +2018 230 0.88305 +2018 231 2.24364 +2018 232 2.84267 +2018 233 3.45084 +2018 234 2.35556 +2018 235 3.06656 +2018 236 3.41176 +2018 237 1.12919 +2018 238 0.84035 +2018 239 0.74332 +2018 240 2.59582 +2018 241 1.48903 +2018 242 2.13897 +2018 243 1.10706 +2018 244 3.20928 +2018 245 1.66953 +2018 246 2.30122 +2018 247 2.63190 +2018 248 3.47448 +2018 249 4.87535 +2018 250 3.15920 +2018 251 3.72437 +2018 252 0.83558 +2018 253 2.01936 +2018 254 1.47258 +2018 255 3.09059 +2018 256 3.66831 +2018 257 0.92383 +2018 258 2.03169 +2018 259 2.14616 +2018 260 1.63620 +2018 261 3.30571 +2018 262 0.98856 +2018 263 1.78090 +2018 264 2.85226 +2018 265 1.52268 +2018 266 3.29314 +2018 267 4.65535 +2018 268 4.81227 +2018 269 2.25633 +2018 270 1.21776 +2018 271 2.66034 +2018 272 1.57200 +2018 273 2.33299 +2018 274 2.34470 +2018 275 1.24744 +2018 276 0.92208 +2018 277 1.69468 +2018 278 0.62255 +2018 279 1.54573 +2018 280 0.66529 +2018 281 1.90585 +2018 282 2.81190 +2018 283 1.77490 +2018 284 2.70292 +2018 285 3.64453 +2018 286 1.66887 +2018 287 1.40669 +2018 288 2.51724 +2018 289 4.34692 +2018 290 1.67059 +2018 291 0.40122 +2018 292 2.53599 +2018 293 2.83843 +2018 294 1.05201 +2018 295 1.01494 +2018 296 1.65207 +2018 297 2.90796 +2018 298 2.34269 +2018 299 1.87106 +2018 300 1.96040 +2018 301 1.79167 +2018 302 2.36706 +2018 303 2.51433 +2018 304 3.00321 +2018 305 3.84453 +2018 306 3.25175 +2018 307 5.43519 +2018 308 4.14480 +2018 309 0.82475 +2018 310 1.07164 +2018 311 2.25062 +2018 312 2.97807 +2018 313 0.42810 +2018 314 1.08365 +2018 315 1.35340 +2018 316 0.90269 +2018 317 1.89929 +2018 318 1.54591 +2018 319 1.20237 +2018 320 1.40279 +2018 321 2.23660 +2018 322 2.42672 +2018 323 1.44710 +2018 324 1.50158 +2018 325 1.52436 +2018 326 0.59388 +2018 327 3.20458 +2018 328 1.02087 +2018 329 1.62105 +2018 330 1.05680 +2018 331 2.18911 +2018 332 1.58666 +2018 333 3.47772 +2018 334 5.09201 +2018 335 2.07538 +2018 336 1.91471 +2018 337 2.32567 +2018 338 4.36342 +2018 339 2.12944 +2018 340 2.23162 +2018 341 1.60142 +2018 342 0.89006 +2018 343 0.42148 +2018 344 1.54717 +2018 345 1.63705 +2018 346 1.32680 +2018 347 1.06409 +2018 348 1.07322 +2018 349 0.63847 +2018 350 1.30675 +2018 351 2.22875 +2018 352 3.23131 +2018 353 2.09165 +2018 354 2.70471 +2018 355 2.42269 +2018 356 1.90846 +2018 357 3.17269 +2018 358 2.42681 +2018 359 3.14038 +2018 360 1.19481 +2018 361 1.44877 +2018 362 1.78895 +2018 363 1.85306 +2018 364 2.50377 +2018 365 0.52324 +2019 1 2.72253 +2019 2 4.39827 +2019 3 3.34433 +2019 4 1.48828 +2019 5 3.79652 +2019 6 3.35238 +2019 7 2.11702 +2019 8 1.99857 +2019 9 1.94853 +2019 10 2.93462 +2019 11 1.29182 +2019 12 2.11538 +2019 13 1.57495 +2019 14 0.59210 +2019 15 2.86984 +2019 16 2.53478 +2019 17 2.92586 +2019 18 1.44011 +2019 19 4.12646 +2019 20 5.37924 +2019 21 3.85495 +2019 22 4.11361 +2019 23 0.32134 +2019 24 0.53123 +2019 25 2.37968 +2019 26 3.62999 +2019 27 3.06497 +2019 28 0.68082 +2019 29 1.37093 +2019 30 1.55435 +2019 31 1.37151 +2019 32 2.22289 +2019 33 1.70262 +2019 34 1.25476 +2019 35 1.87714 +2019 36 1.96263 +2019 37 3.22477 +2019 38 2.27236 +2019 39 1.86050 +2019 40 2.39720 +2019 41 1.05398 +2019 42 2.76363 +2019 43 1.47051 +2019 44 1.40040 +2019 45 1.69596 +2019 46 1.89081 +2019 47 0.59401 +2019 48 2.48879 +2019 49 0.84634 +2019 50 1.21910 +2019 51 2.66470 +2019 52 2.02195 +2019 53 1.74028 +2019 54 2.37014 +2019 55 4.64422 +2019 56 0.59524 +2019 57 1.69268 +2019 58 2.34274 +2019 59 0.75836 +2019 60 2.68140 +2019 61 1.05810 +2019 62 1.07726 +2019 63 2.42915 +2019 64 0.67197 +2019 65 2.18561 +2019 66 2.01896 +2019 67 1.02599 +2019 68 1.81378 +2019 69 0.34229 +2019 70 1.14329 +2019 71 2.41012 +2019 72 0.86888 +2019 73 1.59345 +2019 74 0.55560 +2019 75 1.34114 +2019 76 0.74508 +2019 77 1.46098 +2019 78 0.51339 +2019 79 0.74171 +2019 80 1.20182 +2019 81 1.05222 +2019 82 1.73400 +2019 83 1.74917 +2019 84 2.35569 +2019 85 3.07451 +2019 86 0.49925 +2019 87 2.78940 +2019 88 2.14977 +2019 89 2.38407 +2019 90 2.99962 +2019 91 2.37634 +2019 92 2.72271 +2019 93 1.22146 +2019 94 1.32381 +2019 95 2.35881 +2019 96 1.25289 +2019 97 2.09896 +2019 98 2.43842 +2019 99 2.23550 +2019 100 2.13418 +2019 101 3.10481 +2019 102 2.61668 +2019 103 1.90079 +2019 104 1.63649 +2019 105 2.04492 +2019 106 1.98866 +2019 107 1.28321 +2019 108 0.37366 +2019 109 0.68434 +2019 110 1.03700 +2019 111 1.90456 +2019 112 0.59062 +2019 113 2.42816 +2019 114 1.66575 +2019 115 3.09401 +2019 116 1.72182 +2019 117 2.09501 +2019 118 2.54418 +2019 119 3.26069 +2019 120 2.95378 +2019 121 1.73634 +2019 122 0.56351 +2019 123 0.40718 +2019 124 1.04090 +2019 125 0.69886 +2019 126 0.79426 +2019 127 0.80683 +2019 128 1.33790 +2019 129 1.61873 +2019 130 0.82950 +2019 131 4.01437 +2019 132 2.95255 +2019 133 0.93921 +2019 134 3.65473 +2019 135 4.75933 +2019 136 1.83708 +2019 137 1.70545 +2019 138 3.43910 +2019 139 2.59827 +2019 140 1.40511 +2019 141 2.25530 +2019 142 1.35755 +2019 143 0.56875 +2019 144 0.05976 +2019 145 1.50574 +2019 146 0.74786 +2019 147 2.91734 +2019 148 3.56684 +2019 149 2.35002 +2019 150 3.54510 +2019 151 3.99778 +2019 152 3.17963 +2019 153 2.32705 +2019 154 2.18404 +2019 155 1.78510 +2019 156 2.92624 +2019 157 2.70055 +2019 158 4.51669 +2019 159 1.42617 +2019 160 2.21482 +2019 161 0.78403 +2019 162 1.19234 +2019 163 0.89244 +2019 164 1.63378 +2019 165 3.02912 +2019 166 3.62645 +2019 167 3.51815 +2019 168 1.62500 +2019 169 1.55407 +2019 170 1.56331 +2019 171 1.38481 +2019 172 1.99956 +2019 173 0.50884 +2019 174 1.63022 +2019 175 1.88347 +2019 176 0.88232 +2019 177 0.85220 +2019 178 0.68534 +2019 179 0.43101 +2019 180 0.97758 +2019 181 0.95758 +2019 182 2.58280 +2019 183 3.43084 +2019 184 1.23307 +2019 185 2.71157 +2019 186 2.48259 +2019 187 1.73030 +2019 188 3.19128 +2019 189 1.92968 +2019 190 1.32558 +2019 191 1.53536 +2019 192 0.99800 +2019 193 2.36350 +2019 194 3.53435 +2019 195 2.31155 +2019 196 2.94783 +2019 197 4.31887 +2019 198 1.96912 +2019 199 2.73937 +2019 200 2.41633 +2019 201 0.69806 +2019 202 1.37812 +2019 203 1.10072 +2019 204 1.24814 +2019 205 1.50255 +2019 206 2.32079 +2019 207 1.91972 +2019 208 1.68481 +2019 209 1.72332 +2019 210 1.81426 +2019 211 2.48801 +2019 212 2.72900 +2019 213 4.49896 +2019 214 4.87304 +2019 215 4.11563 +2019 216 4.92999 +2019 217 3.45777 +2019 218 2.92202 +2019 219 2.28359 +2019 220 0.42247 +2019 221 1.98855 +2019 222 2.93881 +2019 223 3.67365 +2019 224 4.19181 +2019 225 3.84100 +2019 226 0.94324 +2019 227 2.55098 +2019 228 2.75038 +2019 229 3.72845 +2019 230 1.78323 +2019 231 3.31784 +2019 232 1.38736 +2019 233 3.09627 +2019 234 0.76490 +2019 235 4.04223 +2019 236 4.52094 +2019 237 4.41415 +2019 238 3.54575 +2019 239 2.20329 +2019 240 2.72236 +2019 241 2.43859 +2019 242 2.47891 +2019 243 0.57682 +2019 244 1.01475 +2019 245 3.19587 +2019 246 3.85791 +2019 247 1.93981 +2019 248 3.34130 +2019 249 3.79135 +2019 250 0.96384 +2019 251 2.18461 +2019 252 3.53644 +2019 253 2.43798 +2019 254 2.90472 +2019 255 3.56340 +2019 256 2.16727 +2019 257 2.92366 +2019 258 3.47680 +2019 259 3.83758 +2019 260 0.47634 +2019 261 0.90183 +2019 262 1.63775 +2019 263 1.67012 +2019 264 1.30403 +2019 265 3.36337 +2019 266 3.56663 +2019 267 5.22171 +2019 268 6.13325 +2019 269 4.36226 +2019 270 3.92327 +2019 271 3.02450 +2019 272 2.79892 +2019 273 2.77089 +2019 274 4.68491 +2019 275 3.03172 +2019 276 1.28242 +2019 277 3.41289 +2019 278 1.73795 +2019 279 1.15952 +2019 280 1.95449 +2019 281 1.21116 +2019 282 3.09771 +2019 283 1.82191 +2019 284 0.78353 +2019 285 0.11239 +2019 286 3.84046 +2019 287 4.93725 +2019 288 4.18459 +2019 289 4.43146 +2019 290 2.04782 +2019 291 3.70878 +2019 292 2.70489 +2019 293 3.42406 +2019 294 5.10280 +2019 295 3.72842 +2019 296 5.21166 +2019 297 4.82938 +2019 298 3.47877 +2019 299 3.32838 +2019 300 2.46256 +2019 301 2.85852 +2019 302 3.57093 +2019 303 2.34960 +2019 304 4.09230 +2019 305 2.58131 +2019 306 2.49672 +2019 307 2.43334 +2019 308 2.46439 +2019 309 1.18883 +2019 310 1.62561 +2019 311 2.08079 +2019 312 3.16897 +2019 313 3.89343 +2019 314 2.55527 +2019 315 2.94448 +2019 316 2.74032 +2019 317 3.41990 +2019 318 4.59144 +2019 319 3.07987 +2019 320 2.86360 +2019 321 2.70135 +2019 322 2.41422 +2019 323 3.02397 +2019 324 0.94190 +2019 325 1.49302 +2019 326 0.55286 +2019 327 1.46419 +2019 328 0.26990 +2019 329 1.40112 +2019 330 1.77440 +2019 331 1.36739 +2019 332 0.90034 +2019 333 1.21975 +2019 334 2.97737 +2019 335 3.42537 +2019 336 4.04764 +2019 337 2.58443 +2019 338 1.95246 +2019 339 1.80138 +2019 340 2.27278 +2019 341 3.27892 +2019 342 2.51889 +2019 343 3.61609 +2019 344 1.68345 +2019 345 1.22091 +2019 346 2.13117 +2019 347 2.37362 +2019 348 2.06248 +2019 349 2.20912 +2019 350 4.26792 +2019 351 4.40865 +2019 352 3.20596 +2019 353 3.79471 +2019 354 2.80805 +2019 355 2.35117 +2019 356 0.91885 +2019 357 1.64068 +2019 358 1.66757 +2019 359 1.07449 +2019 360 2.09622 +2019 361 3.49194 +2019 362 3.14699 +2019 363 4.07587 +2019 364 0.84148 +2019 365 1.80962 +2020 1 3.41535 +2020 2 4.85380 +2020 3 5.12948 +2020 4 4.37535 +2020 5 6.34161 +2020 6 4.52246 +2020 7 1.24428 +2020 8 2.50180 +2020 9 3.51876 +2020 10 1.06894 +2020 11 1.07732 +2020 12 1.40480 +2020 13 3.23372 +2020 14 2.08409 +2020 15 2.70043 +2020 16 2.42124 +2020 17 2.30395 +2020 18 2.76672 +2020 19 1.24836 +2020 20 1.14158 +2020 21 1.45294 +2020 22 2.65725 +2020 23 0.52080 +2020 24 1.23722 +2020 25 0.91119 +2020 26 1.30860 +2020 27 2.32312 +2020 28 2.85901 +2020 29 3.77604 +2020 30 4.42636 +2020 31 3.11684 +2020 32 4.16902 +2020 33 3.95024 +2020 34 2.38081 +2020 35 3.36396 +2020 36 2.27717 +2020 37 0.18824 +2020 38 3.03566 +2020 39 0.67996 +2020 40 1.15801 +2020 41 1.26909 +2020 42 1.42855 +2020 43 1.54347 +2020 44 1.42202 +2020 45 2.28298 +2020 46 3.39142 +2020 47 1.83500 +2020 48 1.19784 +2020 49 1.66143 +2020 50 0.19343 +2020 51 2.11670 +2020 52 2.16511 +2020 53 3.04035 +2020 54 3.62958 +2020 55 0.93467 +2020 56 0.56240 +2020 57 0.53810 +2020 58 1.24629 +2020 59 2.28729 +2020 60 1.03142 +2020 61 1.83035 +2020 62 1.84974 +2020 63 0.31268 +2020 64 3.73649 +2020 65 3.15905 +2020 66 1.31034 +2020 67 0.66138 +2020 68 1.90825 +2020 69 3.46937 +2020 70 1.04615 +2020 71 2.05064 +2020 72 2.21253 +2020 73 0.77602 +2020 74 0.71281 +2020 75 0.26604 +2020 76 5.34074 +2020 77 1.76286 +2020 78 2.90382 +2020 79 2.96479 +2020 80 1.28843 +2020 81 2.29750 +2020 82 3.13185 +2020 83 4.48199 +2020 84 2.04838 +2020 85 1.59341 +2020 86 1.60104 +2020 87 1.71994 +2020 88 1.45127 +2020 89 1.46011 +2020 90 1.04516 +2020 91 0.34067 +2020 92 1.40002 +2020 93 1.38778 +2020 94 1.86797 +2020 95 1.79776 +2020 96 1.08259 +2020 97 0.88615 +2020 98 1.06733 +2020 99 3.58115 +2020 100 2.43208 +2020 101 0.13472 +2020 102 2.77135 +2020 103 4.41611 +2020 104 4.92292 +2020 105 4.33715 +2020 106 4.03362 +2020 107 3.65114 +2020 108 3.86207 +2020 109 2.79190 +2020 110 1.14619 +2020 111 0.81287 +2020 112 0.20078 +2020 113 1.48885 +2020 114 0.81647 +2020 115 2.71628 +2020 116 0.54557 +2020 117 1.44294 +2020 118 1.95096 +2020 119 0.53653 +2020 120 1.20526 +2020 121 2.21167 +2020 122 2.15026 +2020 123 6.19651 +2020 124 3.66716 +2020 125 3.89944 +2020 126 2.76086 +2020 127 3.00721 +2020 128 3.48693 +2020 129 0.50459 +2020 130 1.24362 +2020 131 1.08132 +2020 132 2.23697 +2020 133 2.82432 +2020 134 1.85626 +2020 135 1.46757 +2020 136 2.70985 +2020 137 2.80642 +2020 138 2.00026 +2020 139 3.24671 +2020 140 2.16682 +2020 141 1.12196 +2020 142 1.50004 +2020 143 1.09489 +2020 144 1.86989 +2020 145 2.33937 +2020 146 1.32402 +2020 147 1.92822 +2020 148 0.79620 +2020 149 0.68670 +2020 150 1.73319 +2020 151 3.44586 +2020 152 4.02048 +2020 153 3.34008 +2020 154 1.22992 +2020 155 3.60871 +2020 156 0.52055 +2020 157 2.34891 +2020 158 2.95730 +2020 159 2.62355 +2020 160 2.38412 +2020 161 1.03240 +2020 162 2.30656 +2020 163 2.77533 +2020 164 2.17343 +2020 165 0.91917 +2020 166 0.62102 +2020 167 0.93537 +2020 168 1.65842 +2020 169 3.37530 +2020 170 1.28542 +2020 171 1.57415 +2020 172 4.05265 +2020 173 3.28914 +2020 174 2.13363 +2020 175 3.53516 +2020 176 5.31093 +2020 177 3.84614 +2020 178 3.51066 +2020 179 2.55268 +2020 180 2.10851 +2020 181 3.17759 +2020 182 2.85705 +2020 183 4.10830 +2020 184 2.42421 +2020 185 1.09616 +2020 186 3.68985 +2020 187 2.03292 +2020 188 4.03877 +2020 189 3.33198 +2020 190 2.98063 +2020 191 2.05541 +2020 192 1.85212 +2020 193 2.76636 +2020 194 2.35362 +2020 195 0.90250 +2020 196 1.87877 +2020 197 5.04915 +2020 198 4.43291 +2020 199 2.70520 +2020 200 2.80053 +2020 201 2.53004 +2020 202 2.04508 +2020 203 3.48325 +2020 204 5.81003 +2020 205 3.58558 +2020 206 2.05342 +2020 207 1.63632 +2020 208 1.22620 +2020 209 1.38548 +2020 210 0.53668 +2020 211 1.11332 +2020 212 3.22050 +2020 213 4.23608 +2020 214 3.63854 +2020 215 1.76553 +2020 216 0.77915 +2020 217 0.59838 +2020 218 1.02096 +2020 219 2.13347 +2020 220 2.39063 +2020 221 2.28006 +2020 222 2.85367 +2020 223 1.24457 +2020 224 2.51499 +2020 225 1.14682 +2020 226 3.00076 +2020 227 1.52871 +2020 228 1.28163 +2020 229 0.95636 +2020 230 3.70882 +2020 231 4.51436 +2020 232 3.49260 +2020 233 4.04024 +2020 234 2.27576 +2020 235 2.50831 +2020 236 3.84435 +2020 237 2.61052 +2020 238 3.20467 +2020 239 3.22299 +2020 240 1.99362 +2020 241 2.34777 +2020 242 3.97960 +2020 243 3.59062 +2020 244 3.23243 +2020 245 2.24506 +2020 246 4.44953 +2020 247 1.59307 +2020 248 3.32078 +2020 249 3.47246 +2020 250 2.11684 +2020 251 0.84197 +2020 252 2.51028 +2020 253 2.78579 +2020 254 3.27088 +2020 255 2.45194 +2020 256 3.74493 +2020 257 4.33043 +2020 258 4.70842 +2020 259 5.18490 +2020 260 3.80845 +2020 261 4.17974 +2020 262 2.91059 +2020 263 0.79439 +2020 264 1.24534 +2020 265 1.77645 +2020 266 2.87974 +2020 267 3.69447 +2020 268 3.39113 +2020 269 1.76719 +2020 270 4.44517 +2020 271 5.27937 +2020 272 5.87391 +2020 273 2.80311 +2020 274 1.07570 +2020 275 1.27820 +2020 276 2.14839 +2020 277 2.97917 +2020 278 0.86382 +2020 279 2.26665 +2020 280 3.55345 +2020 281 2.77157 +2020 282 2.55180 +2020 283 3.10921 +2020 284 3.68703 +2020 285 3.51334 +2020 286 2.65902 +2020 287 2.54824 +2020 288 3.96810 +2020 289 2.26773 +2020 290 1.34699 +2020 291 0.80667 +2020 292 2.60630 +2020 293 3.36232 +2020 294 0.93722 +2020 295 0.74514 +2020 296 0.88952 +2020 297 1.29754 +2020 298 1.90176 +2020 299 1.48560 +2020 300 1.18640 +2020 301 1.38918 +2020 302 1.38105 +2020 303 1.72604 +2020 304 3.02079 +2020 305 3.98859 +2020 306 1.54973 +2020 307 3.57788 +2020 308 3.52406 +2020 309 4.22367 +2020 310 3.31103 +2020 311 2.55290 +2020 312 2.78961 +2020 313 2.27644 +2020 314 2.17551 +2020 315 1.77539 +2020 316 2.15601 +2020 317 0.87177 +2020 318 2.79808 +2020 319 3.21872 +2020 320 2.50134 +2020 321 2.38977 +2020 322 3.10002 +2020 323 3.52933 +2020 324 2.00994 +2020 325 2.86751 +2020 326 2.35332 +2020 327 0.54279 +2020 328 2.90210 +2020 329 4.14934 +2020 330 3.40643 +2020 331 3.86985 +2020 332 2.30094 +2020 333 3.06086 +2020 334 1.47928 +2020 335 3.83284 +2020 336 0.81884 +2020 337 3.86896 +2020 338 2.70187 +2020 339 3.49571 +2020 340 2.96638 +2020 341 2.88169 +2020 342 3.51286 +2020 343 2.88809 +2020 344 2.89440 +2020 345 3.81930 +2020 346 4.60698 +2020 347 2.95368 +2020 348 0.68395 +2020 349 0.10558 +2020 350 1.76088 +2020 351 0.42874 +2020 352 1.33749 +2020 353 1.65569 +2020 354 1.34602 +2020 355 1.69176 +2020 356 2.45282 +2020 357 2.38496 +2020 358 3.14884 +2020 359 3.57152 +2020 360 3.41882 +2020 361 1.47021 +2020 362 2.47274 +2020 363 3.32744 +2020 364 1.68866 +2020 365 0.88061 +2020 366 1.40704 +2021 1 1.76563 +2021 2 1.88696 +2021 3 1.02587 +2021 4 0.19255 +2021 5 0.79407 +2021 6 1.37427 +2021 7 1.32572 +2021 8 0.35158 +2021 9 1.59763 +2021 10 1.06479 +2021 11 1.75764 +2021 12 1.16435 +2021 13 1.38093 +2021 14 0.96866 +2021 15 0.65766 +2021 16 2.72143 +2021 17 4.52742 +2021 18 3.80586 +2021 19 4.43397 +2021 20 3.56074 +2021 21 2.92508 +2021 22 3.81486 +2021 23 4.47163 +2021 24 4.08808 +2021 25 1.57343 +2021 26 0.95881 +2021 27 2.89459 +2021 28 1.83372 +2021 29 3.62015 +2021 30 1.38761 +2021 31 0.80086 +2021 32 0.83186 +2021 33 0.92913 +2021 34 1.39036 +2021 35 1.94692 +2021 36 2.37861 +2021 37 0.84052 +2021 38 1.77315 +2021 39 2.84826 +2021 40 2.75782 +2021 41 0.96980 +2021 42 2.98654 +2021 43 1.82796 +2021 44 1.90483 +2021 45 4.37329 +2021 46 4.50127 +2021 47 4.66087 +2021 48 1.24346 +2021 49 0.48150 +2021 50 0.58612 +2021 51 1.21092 +2021 52 1.61372 +2021 53 3.37463 +2021 54 2.86681 +2021 55 0.97391 +2021 56 1.17756 +2021 57 1.14754 +2021 58 1.31593 +2021 59 2.08981 +2021 60 1.91825 +2021 61 1.72198 +2021 62 1.53247 +2021 63 1.31785 +2021 64 2.32728 +2021 65 3.60914 +2021 66 4.44256 +2021 67 1.98747 +2021 68 2.10232 +2021 69 0.73667 +2021 70 2.37430 +2021 71 2.55216 +2021 72 0.92405 +2021 73 1.56295 +2021 74 1.18083 +2021 75 1.45508 +2021 76 3.09031 +2021 77 2.47553 +2021 78 2.75761 +2021 79 2.96907 +2021 80 1.61186 +2021 81 0.60028 +2021 82 0.72778 +2021 83 1.72389 +2021 84 1.20768 +2021 85 2.67035 +2021 86 2.51003 +2021 87 2.47789 +2021 88 2.27704 +2021 89 2.39313 +2021 90 1.37123 +2021 91 2.44057 +2021 92 1.19393 +2021 93 2.53396 +2021 94 3.54414 +2021 95 2.59591 +2021 96 0.87168 +2021 97 0.53435 +2021 98 2.39648 +2021 99 4.68095 +2021 100 1.48693 +2021 101 1.53320 +2021 102 1.92333 +2021 103 0.61233 +2021 104 2.58176 +2021 105 3.51792 +2021 106 2.85864 +2021 107 2.43422 +2021 108 1.87500 +2021 109 2.24455 +2021 110 1.61336 +2021 111 0.83482 +2021 112 0.45087 +2021 113 2.39475 +2021 114 3.35711 +2021 115 2.68114 +2021 116 2.15683 +2021 117 1.78634 +2021 118 0.75810 +2021 119 2.01653 +2021 120 2.46421 +2021 121 1.29461 +2021 122 0.96232 +2021 123 1.89807 +2021 124 2.37280 +2021 125 1.83040 +2021 126 1.88101 +2021 127 1.98009 +2021 128 2.23372 +2021 129 1.52972 +2021 130 2.64374 +2021 131 0.83297 +2021 132 4.05342 +2021 133 0.44884 +2021 134 1.94244 +2021 135 1.20600 +2021 136 2.22919 +2021 137 4.60176 +2021 138 4.26390 +2021 139 0.51745 +2021 140 0.43739 +2021 141 2.75190 +2021 142 5.58588 +2021 143 5.32671 +2021 144 5.07454 +2021 145 3.37274 +2021 146 2.00110 +2021 147 0.45515 +2021 148 2.97999 +2021 149 0.90646 +2021 150 1.39317 +2021 151 2.49785 +2021 152 1.65245 +2021 153 0.49767 +2021 154 0.57994 +2021 155 1.30146 +2021 156 3.51921 +2021 157 4.53338 +2021 158 4.40556 +2021 159 3.16315 +2021 160 1.46086 +2021 161 0.67622 +2021 162 0.24807 +2021 163 1.89040 +2021 164 2.16607 +2021 165 0.92731 +2021 166 2.18176 +2021 167 2.10605 +2021 168 0.35499 +2021 169 2.32202 +2021 170 0.88011 +2021 171 2.38873 +2021 172 3.50214 +2021 173 1.81600 +2021 174 1.11173 +2021 175 2.21032 +2021 176 2.75313 +2021 177 3.59528 +2021 178 4.32228 +2021 179 3.48857 +2021 180 3.01324 +2021 181 2.33245 +2021 182 1.43260 +2021 183 1.38329 +2021 184 1.06607 +2021 185 0.41891 +2021 186 2.22959 +2021 187 1.40138 +2021 188 3.79454 +2021 189 3.44081 +2021 190 3.17874 +2021 191 2.40532 +2021 192 3.80389 +2021 193 3.94982 +2021 194 1.71382 +2021 195 2.00792 +2021 196 3.09548 +2021 197 5.84212 +2021 198 4.10460 +2021 199 3.43721 +2021 200 1.56635 +2021 201 1.91531 +2021 202 2.71201 +2021 203 0.88498 +2021 204 1.28314 +2021 205 3.16397 +2021 206 4.37458 +2021 207 3.53528 +2021 208 3.45020 +2021 209 1.35610 +2021 210 1.02683 +2021 211 2.15362 +2021 212 1.52264 +2021 213 0.90520 +2021 214 2.53675 +2021 215 2.94419 +2021 216 1.15018 +2021 217 0.88504 +2021 218 4.31915 +2021 219 3.21411 +2021 220 3.87637 +2021 221 3.80547 +2021 222 2.49711 +2021 223 2.49671 +2021 224 2.92913 +2021 225 3.61825 +2021 226 2.26125 +2021 227 2.09281 +2021 228 4.35124 +2021 229 2.71951 +2021 230 2.74011 +2021 231 2.77113 +2021 232 1.78815 +2021 233 1.87982 +2021 234 1.29762 +2021 235 0.63513 +2021 236 1.09453 +2021 237 1.20369 +2021 238 2.49004 +2021 239 2.41262 +2021 240 1.71146 +2021 241 2.92989 +2021 242 3.95021 +2021 243 2.58403 +2021 244 1.23930 +2021 245 1.21461 +2021 246 1.47506 +2021 247 0.99093 +2021 248 1.77189 +2021 249 3.63365 +2021 250 3.69084 +2021 251 3.91141 +2021 252 5.43142 +2021 253 4.17784 +2021 254 2.44736 +2021 255 3.63365 +2021 256 0.96309 +2021 257 2.80729 +2021 258 1.83478 +2021 259 4.93132 +2021 260 1.20200 +2021 261 1.08809 +2021 262 3.06303 +2021 263 2.42093 +2021 264 3.17056 +2021 265 3.54500 +2021 266 3.63810 +2021 267 2.41796 +2021 268 1.88536 +2021 269 0.46006 +2021 270 2.02941 +2021 271 3.58915 +2021 272 4.09718 +2021 273 2.07183 +2021 274 2.28588 +2021 275 0.97048 +2021 276 1.68247 +2021 277 0.99820 +2021 278 1.29179 +2021 279 3.45210 +2021 280 1.45555 +2021 281 3.50214 +2021 282 2.62760 +2021 283 3.08690 +2021 284 4.49638 +2021 285 3.49231 +2021 286 1.78271 +2021 287 1.79147 +2021 288 1.73535 +2021 289 4.17248 +2021 290 3.07796 +2021 291 3.08031 +2021 292 0.98941 +2021 293 2.37114 +2021 294 2.98839 +2021 295 3.95857 +2021 296 3.70363 +2021 297 2.90212 +2021 298 1.98590 +2021 299 1.62560 +2021 300 2.10455 +2021 301 2.23804 +2021 302 2.53187 +2021 303 2.92961 +2021 304 1.90594 +2021 305 1.48025 +2021 306 7.15125 +2021 307 5.94304 +2021 308 3.61498 +2021 309 2.17308 +2021 310 1.49409 +2021 311 1.11690 +2021 312 0.22618 +2021 313 0.58895 +2021 314 1.20617 +2021 315 1.99112 +2021 316 2.51603 +2021 317 3.41260 +2021 318 4.64383 +2021 319 4.07353 +2021 320 3.13156 +2021 321 1.90160 +2021 322 0.76682 +2021 323 1.10169 +2021 324 2.20403 +2021 325 1.97104 +2021 326 2.15031 +2021 327 1.18910 +2021 328 0.96518 +2021 329 2.20902 +2021 330 2.79228 +2021 331 2.03040 +2021 332 1.85733 +2021 333 1.93657 +2021 334 0.60433 +2021 335 0.69577 +2021 336 2.30079 +2021 337 3.20053 +2021 338 3.24015 +2021 339 3.00074 +2021 340 2.42232 +2021 341 1.35137 +2021 342 1.90284 +2021 343 1.60519 +2021 344 2.37526 +2021 345 0.69224 +2021 346 2.38207 +2021 347 3.59661 +2021 348 2.30988 +2021 349 3.03999 +2021 350 4.40445 +2021 351 4.50165 +2021 352 2.96693 +2021 353 2.88878 +2021 354 3.33150 +2021 355 2.71811 +2021 356 1.67267 +2021 357 1.51136 +2021 358 0.15661 +2021 359 1.93435 +2021 360 1.22776 +2021 361 2.25171 +2021 362 1.71127 +2021 363 2.09792 +2021 364 2.22645 +2021 365 0.48856 +2022 1 1.48176 +2022 2 0.54036 +2022 3 0.81893 +2022 4 0.75986 +2022 5 1.46251 +2022 6 1.35991 +2022 7 0.25056 +2022 8 2.34297 +2022 9 3.38937 +2022 10 2.50203 +2022 11 3.26454 +2022 12 3.00392 +2022 13 1.86912 +2022 14 3.26886 +2022 15 3.77063 +2022 16 2.96075 +2022 17 1.34382 +2022 18 2.32870 +2022 19 3.11185 +2022 20 1.34076 +2022 21 1.03107 +2022 22 1.62407 +2022 23 1.66896 +2022 24 3.55345 +2022 25 2.09337 +2022 26 1.64244 +2022 27 1.10903 +2022 28 1.65270 +2022 29 1.50477 +2022 30 2.14471 +2022 31 3.73585 +2022 32 3.95260 +2022 33 2.93416 +2022 34 2.61476 +2022 35 3.12993 +2022 36 2.82433 +2022 37 3.81682 +2022 38 1.85210 +2022 39 2.26031 +2022 40 2.68501 +2022 41 1.87501 +2022 42 3.80595 +2022 43 3.18473 +2022 44 2.31931 +2022 45 0.97378 +2022 46 1.76007 +2022 47 1.15597 +2022 48 1.90237 +2022 49 1.83351 +2022 50 1.59596 +2022 51 1.65181 +2022 52 1.61536 +2022 53 1.65599 +2022 54 3.66351 +2022 55 2.06761 +2022 56 0.87535 +2022 57 2.90189 +2022 58 1.61119 +2022 59 0.15181 +2022 60 3.06303 +2022 61 1.86052 +2022 62 1.04404 +2022 63 1.38753 +2022 64 1.97085 +2022 65 0.92950 +2022 66 1.53062 +2022 67 1.22369 +2022 68 1.25788 +2022 69 2.17457 +2022 70 0.81325 +2022 71 3.72140 +2022 72 2.96290 +2022 73 3.49216 +2022 74 3.84851 +2022 75 3.17197 +2022 76 0.27844 +2022 77 1.67975 +2022 78 4.51047 +2022 79 4.37391 +2022 80 2.09582 +2022 81 1.43068 +2022 82 3.86008 +2022 83 4.17978 +2022 84 3.57677 +2022 85 3.51217 +2022 86 3.74962 +2022 87 3.30954 +2022 88 2.50487 +2022 89 1.43201 +2022 90 0.70390 +2022 91 0.32409 +2022 92 1.08843 +2022 93 0.35999 +2022 94 1.92920 +2022 95 3.01441 +2022 96 2.36365 +2022 97 1.61437 +2022 98 1.01131 +2022 99 1.25762 +2022 100 0.62369 +2022 101 1.90697 +2022 102 5.11474 +2022 103 1.43390 +2022 104 0.67700 +2022 105 0.66605 +2022 106 3.20792 +2022 107 3.76227 +2022 108 3.69417 +2022 109 3.36006 +2022 110 3.35931 +2022 111 0.74481 +2022 112 2.56536 +2022 113 3.52457 +2022 114 1.43173 +2022 115 0.40309 +2022 116 1.63220 +2022 117 1.85035 +2022 118 1.82172 +2022 119 1.49749 +2022 120 1.80008 +2022 121 0.67826 +2022 122 0.45032 +2022 123 1.10087 +2022 124 0.97523 +2022 125 0.68661 +2022 126 0.16379 +2022 127 1.35927 +2022 128 1.85970 +2022 129 2.78376 +2022 130 3.68717 +2022 131 2.32259 +2022 132 0.83057 +2022 133 2.66611 +2022 134 3.49924 +2022 135 2.94246 +2022 136 2.65985 +2022 137 0.78549 +2022 138 2.24038 +2022 139 4.48360 +2022 140 6.03082 +2022 141 4.59182 +2022 142 2.49879 +2022 143 1.44568 +2022 144 3.26063 +2022 145 2.00401 +2022 146 1.73487 +2022 147 0.85180 +2022 148 3.26523 +2022 149 4.28660 +2022 150 1.92046 +2022 151 3.79695 +2022 152 3.11937 +2022 153 2.10952 +2022 154 2.42524 +2022 155 1.67563 +2022 156 2.74524 +2022 157 2.68272 +2022 158 1.69662 +2022 159 2.63268 +2022 160 3.75777 +2022 161 4.23650 +2022 162 3.47135 +2022 163 6.19282 +2022 164 5.35985 +2022 165 4.58350 +2022 166 3.32079 +2022 167 1.47597 +2022 168 1.36130 +2022 169 2.78625 +2022 170 4.60693 +2022 171 3.27498 +2022 172 2.48172 +2022 173 0.86037 +2022 174 1.69151 +2022 175 1.24068 +2022 176 1.60667 +2022 177 2.37271 +2022 178 0.55207 +2022 179 1.51537 +2022 180 3.31395 +2022 181 3.42396 +2022 182 1.57297 +2022 183 1.77246 +2022 184 0.70140 +2022 185 1.36636 +2022 186 1.14452 +2022 187 1.80708 +2022 188 3.83013 +2022 189 4.34254 +2022 190 1.05604 +2022 191 3.53888 +2022 192 2.95943 +2022 193 3.92587 +2022 194 0.21783 +2022 195 1.96348 +2022 196 2.24284 +2022 197 1.02852 +2022 198 1.05904 +2022 199 3.43454 +2022 200 1.63383 +2022 201 3.58822 +2022 202 2.65348 +2022 203 2.02603 +2022 204 3.02614 +2022 205 5.72151 +2022 206 4.30847 +2022 207 4.35954 +2022 208 3.55581 +2022 209 3.95982 +2022 210 2.03923 +2022 211 3.41885 +2022 212 2.01644 +2022 213 2.06655 +2022 214 1.89111 +2022 215 1.13322 +2022 216 0.80465 +2022 217 0.76476 +2022 218 1.75956 +2022 219 0.81201 +2022 220 2.57316 +2022 221 2.53713 +2022 222 3.26239 +2022 223 2.93101 +2022 224 1.75278 +2022 225 1.01473 +2022 226 0.38708 +2022 227 2.43873 +2022 228 5.04953 +2022 229 5.50536 +2022 230 3.99492 +2022 231 3.75232 +2022 232 2.46290 +2022 233 1.79593 +2022 234 1.65441 +2022 235 2.96853 +2022 236 2.10928 +2022 237 2.26955 +2022 238 2.59582 +2022 239 2.86356 +2022 240 2.79847 +2022 241 1.44422 +2022 242 0.18090 +2022 243 1.08655 +2022 244 1.26081 +2022 245 2.77389 +2022 246 3.70320 +2022 247 1.66127 +2022 248 3.52703 +2022 249 0.53890 +2022 250 0.12001 +2022 251 1.54596 +2022 252 3.53859 +2022 253 2.64185 +2022 254 2.53634 +2022 255 4.69703 +2022 256 1.89700 +2022 257 0.81476 +2022 258 2.01373 +2022 259 0.33149 +2022 260 0.63698 +2022 261 3.56942 +2022 262 2.82347 +2022 263 1.48139 +2022 264 3.43956 +2022 265 1.90634 +2022 266 2.28597 +2022 267 2.38083 +2022 268 2.89929 +2022 269 2.76928 +2022 270 2.27765 +2022 271 2.32793 +2022 272 1.09620 +2022 273 2.62788 +2022 274 2.12728 +2022 275 0.37136 +2022 276 0.36362 +2022 277 4.09847 +2022 278 3.56976 +2022 279 1.71551 +2022 280 0.73783 +2022 281 1.89887 +2022 282 1.79902 +2022 283 1.46231 +2022 284 1.47557 +2022 285 1.15111 +2022 286 3.51451 +2022 287 2.99361 +2022 288 3.02433 +2022 289 2.90182 +2022 290 2.67513 +2022 291 3.93230 +2022 292 4.28586 +2022 293 2.15494 +2022 294 0.47593 +2022 295 1.33105 +2022 296 3.46224 +2022 297 2.28416 +2022 298 1.84004 +2022 299 1.84399 +2022 300 1.87677 +2022 301 3.18261 +2022 302 3.35480 +2022 303 1.64827 +2022 304 1.17059 +2022 305 2.29283 +2022 306 3.10966 +2022 307 2.60938 +2022 308 2.71790 +2022 309 1.59027 +2022 310 2.15088 +2022 311 2.59344 +2022 312 2.63690 +2022 313 4.63295 +2022 314 4.29822 +2022 315 1.34157 +2022 316 2.08058 +2022 317 1.64642 +2022 318 1.42179 +2022 319 1.70602 +2022 320 2.31202 +2022 321 3.11239 +2022 322 2.66253 +2022 323 2.71360 +2022 324 3.07723 +2022 325 3.38520 +2022 326 4.74889 +2022 327 4.55410 +2022 328 4.71753 +2022 329 2.49995 +2022 330 2.04003 +2022 331 4.23421 +2022 332 2.38017 +2022 333 2.99219 +2022 334 3.89580 +2022 335 3.62050 +2022 336 1.07477 +2022 337 1.99813 +2022 338 3.56662 +2022 339 2.27102 +2022 340 3.51406 +2022 341 4.30702 +2022 342 4.59328 +2022 343 2.65883 +2022 344 2.45173 +2022 345 0.46345 +2022 346 2.20142 +2022 347 4.09398 +2022 348 4.02757 +2022 349 2.39144 +2022 350 1.68763 +2022 351 1.04159 +2022 352 0.64078 +2022 353 1.55601 +2022 354 1.59317 +2022 355 0.78556 +2022 356 1.41236 +2022 357 2.45340 +2022 358 0.62395 +2022 359 0.89744 +2022 360 1.92996 +2022 361 2.35715 +2022 362 1.05084 +2022 363 1.48544 +2022 364 3.41893 +2022 365 2.80376 +2023 1 3.18858 +2023 2 4.86619 +2023 3 6.15772 +2023 4 5.94897 +2023 5 4.81413 +2023 6 1.72844 +2023 7 2.37707 +2023 8 4.87697 +2023 9 6.01282 +2023 10 2.26397 +2023 11 2.41361 +2023 12 1.55113 +2023 13 1.41092 +2023 14 2.11261 +2023 15 1.23288 +2023 16 0.92668 +2023 17 2.84361 +2023 18 2.13732 +2023 19 2.16141 +2023 20 1.71082 +2023 21 1.05402 +2023 22 0.59291 +2023 23 1.49790 +2023 24 1.65218 +2023 25 3.47903 +2023 26 4.83411 +2023 27 4.12513 +2023 28 4.45741 +2023 29 4.08649 +2023 30 4.79669 +2023 31 5.83697 +2023 32 3.25788 +2023 33 2.79186 +2023 34 1.72832 +2023 35 2.71428 +2023 36 2.37882 +2023 37 2.82559 +2023 38 3.71318 +2023 39 3.39976 +2023 40 1.94555 +2023 41 2.78406 +2023 42 5.16607 +2023 43 7.40452 +2023 44 3.81050 +2023 45 4.66854 +2023 46 1.54114 +2023 47 1.59272 +2023 48 0.71881 +2023 49 1.06416 +2023 50 0.31919 +2023 51 1.47990 +2023 52 1.42677 +2023 53 1.67327 +2023 54 3.97424 +2023 55 2.32549 +2023 56 1.92265 +2023 57 1.33533 +2023 58 2.06419 +2023 59 0.99523 +2023 60 1.51139 +2023 61 0.73102 +2023 62 1.83104 +2023 63 0.95068 +2023 64 2.97019 +2023 65 1.50314 +2023 66 2.58234 +2023 67 2.47493 +2023 68 2.34184 +2023 69 3.07096 +2023 70 2.29866 +2023 71 3.29784 +2023 72 1.74725 +2023 73 0.20052 +2023 74 2.08115 +2023 75 3.51386 +2023 76 1.40571 +2023 77 0.71647 +2023 78 1.47219 +2023 79 2.32891 +2023 80 2.16644 +2023 81 0.85602 +2023 82 0.57262 +2023 83 2.23206 +2023 84 2.30145 +2023 85 1.23869 +2023 86 2.71347 +2023 87 3.17542 +2023 88 3.78753 +2023 89 0.51698 +2023 90 2.37046 +2023 91 1.10982 +2023 92 2.66254 +2023 93 1.48602 +2023 94 0.89592 +2023 95 0.49571 +2023 96 4.61326 +2023 97 4.18002 +2023 98 1.44080 +2023 99 2.71634 +2023 100 2.77416 +2023 101 2.38133 +2023 102 0.36265 +2023 103 2.63077 +2023 104 3.86661 +2023 105 3.64599 +2023 106 3.33008 +2023 107 3.28692 +2023 108 2.42986 +2023 109 2.05618 +2023 110 3.52764 +2023 111 3.06163 +2023 112 0.40536 +2023 113 3.75968 +2023 114 3.18755 +2023 115 3.74007 +2023 116 0.70016 +2023 117 1.45582 +2023 118 3.04881 +2023 119 5.10994 +2023 120 5.44399 +2023 121 2.83992 +2023 122 3.72439 +2023 123 4.94057 +2023 124 4.21148 +2023 125 3.73144 +2023 126 3.27426 +2023 127 3.63179 +2023 128 4.48142 +2023 129 4.20016 +2023 130 3.21676 +2023 131 2.60723 +2023 132 1.75708 +2023 133 1.19484 +2023 134 1.53766 +2023 135 1.85284 +2023 136 1.81953 +2023 137 2.13184 +2023 138 4.64882 +2023 139 4.82357 +2023 140 5.05984 +2023 141 1.72588 +2023 142 2.68404 +2023 143 2.36906 +2023 144 1.28222 +2023 145 0.43391 +2023 146 0.95061 +2023 147 3.99192 +2023 148 4.71381 +2023 149 1.17330 +2023 150 2.57637 +2023 151 2.72921 +2023 152 3.26408 +2023 153 3.15220 +2023 154 0.79920 +2023 155 3.33854 +2023 156 5.41920 +2023 157 4.21231 +2023 158 3.66393 +2023 159 3.28573 +2023 160 2.89630 +2023 161 2.40539 +2023 162 3.10087 +2023 163 2.66235 +2023 164 2.07172 +2023 165 0.70252 +2023 166 2.16252 +2023 167 3.08026 +2023 168 3.48347 +2023 169 1.98147 +2023 170 1.65193 +2023 171 3.36885 +2023 172 4.81367 +2023 173 3.09325 +2023 174 4.14121 +2023 175 3.62048 +2023 176 0.74700 +2023 177 1.78929 +2023 178 3.03738 +2023 179 4.24741 +2023 180 3.70881 +2023 181 4.92023 +2023 182 5.11825 +2023 183 4.91581 +2023 184 4.89003 +2023 185 4.72257 +2023 186 2.50053 +2023 187 3.13871 +2023 188 3.01331 +2023 189 2.82769 +2023 190 3.56085 +2023 191 3.67051 +2023 192 3.84086 +2023 193 4.55799 +2023 194 4.54652 +2023 195 3.88063 +2023 196 4.38819 +2023 197 4.17983 +2023 198 3.59728 +2023 199 2.32510 +2023 200 1.85930 +2023 201 5.65392 +2023 202 2.95963 +2023 203 2.13115 +2023 204 1.73573 +2023 205 3.02266 +2023 206 4.46876 +2023 207 3.08965 +2023 208 2.55656 +2023 209 1.91354 +2023 210 1.37358 +2023 211 1.01949 +2023 212 2.88803 +2023 213 4.14272 +2023 214 4.05530 +2023 215 2.76632 +2023 216 1.72482 +2023 217 1.20737 +2023 218 1.91505 +2023 219 2.17395 +2023 220 2.38216 +2023 221 2.35776 +2023 222 3.42077 +2023 223 1.65860 +2023 224 0.93631 +2023 225 1.52363 +2023 226 2.07576 +2023 227 1.73029 +2023 228 3.25213 +2023 229 1.78309 +2023 230 2.02274 +2023 231 1.89260 +2023 232 3.13212 +2023 233 2.64194 +2023 234 0.74588 +2023 235 0.63454 +2023 236 0.31342 +2023 237 1.61289 +2023 238 3.10232 +2023 239 1.28008 +2023 240 0.93497 +2023 241 0.55869 +2023 242 1.33431 +2023 243 0.07934 +2023 244 1.39138 +2023 245 2.73188 +2023 246 3.83196 +2023 247 4.00564 +2023 248 2.64916 +2023 249 1.42071 +2023 250 1.16183 +2023 251 0.91105 +2023 252 1.67341 +2023 253 3.49410 +2023 254 3.06532 +2023 255 3.91455 +2023 256 4.08683 +2023 257 3.53775 +2023 258 1.57835 +2023 259 3.94925 +2023 260 5.31268 +2023 261 3.26972 +2023 262 2.19423 +2023 263 1.31792 +2023 264 3.18788 +2023 265 4.28915 +2023 266 1.19853 +2023 267 4.22180 +2023 268 0.23314 +2023 269 4.71463 +2023 270 3.12518 +2023 271 5.81836 +2023 272 3.97821 +2023 273 4.41550 +2023 274 5.09753 +2023 275 3.13966 +2023 276 1.90542 +2023 277 1.52159 +2023 278 1.06753 +2023 279 1.58147 +2023 280 2.16474 +2023 281 3.36878 +2023 282 4.80674 +2023 283 2.94832 +2023 284 4.42793 +2023 285 2.50952 +2023 286 2.99622 +2023 287 4.02865 +2023 288 2.06783 +2023 289 2.58975 +2023 290 1.77703 +2023 291 0.85437 +2023 292 0.82399 +2023 293 0.72371 +2023 294 2.58858 +2023 295 0.48039 +2023 296 2.83909 +2023 297 3.99712 +2023 298 4.45735 +2023 299 4.00885 +2023 300 1.19099 +2023 301 4.13149 +2023 302 5.42059 +2023 303 2.91706 +2023 304 0.84296 +2023 305 1.10466 +2023 306 2.55845 +2023 307 2.00156 +2023 308 1.66953 +2023 309 0.77577 +2023 310 0.26193 +2023 311 2.95980 +2023 312 1.31581 +2023 313 1.99063 +2023 314 0.46109 +2023 315 2.11164 +2023 316 3.64156 +2023 317 2.26650 +2023 318 2.76644 +2023 319 1.84580 +2023 320 3.10224 +2023 321 1.91515 +2023 322 3.26797 +2023 323 3.08054 +2023 324 3.58461 +2023 325 2.11495 +2023 326 1.80639 +2023 327 3.06867 +2023 328 5.39064 +2023 329 2.24963 +2023 330 2.85416 +2023 331 3.68998 +2023 332 3.14363 +2023 333 1.75188 +2023 334 0.67424 +2023 335 2.47969 +2023 336 3.18745 +2023 337 0.87320 +2023 338 3.15266 +2023 339 1.32358 +2023 340 3.95461 +2023 341 0.97286 +2023 342 2.17591 +2023 343 2.53134 +2023 344 0.29189 +2023 345 5.23447 +2023 346 5.00352 +2023 347 5.15306 +2023 348 2.68530 +2023 349 2.90595 +2023 350 2.68542 +2023 351 1.95248 +2023 352 1.52216 +2023 353 1.48826 +2023 354 1.35068 +2023 355 1.47448 +2023 356 2.26648 +2023 357 2.16893 +2023 358 2.08399 +2023 359 2.02452 +2023 360 0.41481 +2023 361 2.41179 +2023 362 3.08475 +2023 363 2.85255 +2023 364 3.63331 +2023 365 3.38298 diff --git a/src/r-api/swatplusEditoR/inst/extdata/era5/hmd.cli b/src/r-api/swatplusEditoR/inst/extdata/era5/hmd.cli new file mode 100644 index 00000000..691a0779 --- /dev/null +++ b/src/r-api/swatplusEditoR/inst/extdata/era5/hmd.cli @@ -0,0 +1,3 @@ +hmd.cli +filename +IDera5.hmd diff --git a/src/r-api/swatplusEditoR/inst/extdata/era5/pcp.cli b/src/r-api/swatplusEditoR/inst/extdata/era5/pcp.cli new file mode 100644 index 00000000..9faec174 --- /dev/null +++ b/src/r-api/swatplusEditoR/inst/extdata/era5/pcp.cli @@ -0,0 +1,3 @@ +pcp.cli +filename +IDera5.pcp diff --git a/src/r-api/swatplusEditoR/inst/extdata/era5/slr.cli b/src/r-api/swatplusEditoR/inst/extdata/era5/slr.cli new file mode 100644 index 00000000..c6289a4b --- /dev/null +++ b/src/r-api/swatplusEditoR/inst/extdata/era5/slr.cli @@ -0,0 +1,3 @@ +slr.cli +filename +IDera5.slr diff --git a/src/r-api/swatplusEditoR/inst/extdata/era5/tmp.cli b/src/r-api/swatplusEditoR/inst/extdata/era5/tmp.cli new file mode 100644 index 00000000..2ffb5b23 --- /dev/null +++ b/src/r-api/swatplusEditoR/inst/extdata/era5/tmp.cli @@ -0,0 +1,3 @@ +tmp.cli +filename +IDera5.tmp diff --git a/src/r-api/swatplusEditoR/inst/extdata/era5/wnd.cli b/src/r-api/swatplusEditoR/inst/extdata/era5/wnd.cli new file mode 100644 index 00000000..666c57fd --- /dev/null +++ b/src/r-api/swatplusEditoR/inst/extdata/era5/wnd.cli @@ -0,0 +1,3 @@ +wnd.cli +filename +IDera5.wnd diff --git a/src/r-api/swatplusEditoR/inst/extdata/gwflow.ini b/src/r-api/swatplusEditoR/inst/extdata/gwflow.ini new file mode 100644 index 00000000..cf1c7805 --- /dev/null +++ b/src/r-api/swatplusEditoR/inst/extdata/gwflow.ini @@ -0,0 +1,72 @@ +! GWFLOW module configuration file +! This file contains default parameters for the GWFLOW module. +! It is read by SWAT+ when the gwflow module is activated in codes.bsn +! +! Parameters below use INI-style key = value pairs. +! Lines starting with ! are comments. + +[general] +! Cell size in map units (metres) +cell_size = 250 + +! Boundary condition type +! 1 = constant head, 2 = no-flow +boundary_conditions = 2 + +! Recharge connection type +! 1 = HRU-cell, 2 = LSU-cell, 3 = both +recharge = 1 + +! Recharge delay (days) +recharge_delay = 0 + +[flags] +! Groundwater to soil transfer (0 = off, 1 = on) +soil_transfer = 0 + +! Saturation excess flow (0 = off, 1 = on) +saturation_excess = 0 + +! External groundwater pumping (0 = off, 1 = on) +external_pumping = 0 + +! Tile drainage (0 = off, 1 = on) +tile_drainage = 0 + +! Reservoir exchange (0 = off, 1 = on) +reservoir_exchange = 0 + +! Wetland exchange (0 = off, 1 = on) +wetland_exchange = 0 + +! Floodplain exchange (0 = off, 1 = on) +floodplain_exchange = 0 + +! Canal seepage (0 = off, 1 = on) +canal_seepage = 0 + +! Solute transport (0 = off, 1 = on) +solute_transport = 0 + +[output] +! Daily output (0 = off, 1 = on) +daily_output = 0 + +! Annual output (0 = off, 1 = on) +annual_output = 1 + +! Average annual output (0 = off, 1 = on) +aa_output = 1 + +[default_zone] +! Default aquifer hydraulic conductivity (m/day) +aquifer_k = 10.0 + +! Default specific yield (dimensionless) +specific_yield = 0.1 + +! Default streambed hydraulic conductivity (m/day) +streambed_k = 1.0 + +! Default streambed thickness (m) +streambed_thickness = 1.0 diff --git a/src/r-api/swatplusEditoR/inst/extdata/swatplus_wgn_nz.sqlite b/src/r-api/swatplusEditoR/inst/extdata/swatplus_wgn_nz.sqlite new file mode 100644 index 00000000..df94295c Binary files /dev/null and b/src/r-api/swatplusEditoR/inst/extdata/swatplus_wgn_nz.sqlite differ diff --git a/src/r-api/swatplusEditoR/man/add_weather_generators.Rd b/src/r-api/swatplusEditoR/man/add_weather_generators.Rd new file mode 100644 index 00000000..73ed8655 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/add_weather_generators.Rd @@ -0,0 +1,37 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/weather.R +\name{add_weather_generators} +\alias{add_weather_generators} +\title{Add weather generator (WGN) data} +\usage{ +add_weather_generators(project, wgn_data, monthly_data = NULL) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{wgn_data}{A data.frame with columns: \code{name}, \code{lat}, +\code{lon}, \code{elev}, \code{rain_yrs}.} + +\item{monthly_data}{Optional data.frame with monthly WGN values. Must have +columns: \code{wgn_name} (matching name in wgn_data), \code{month} (1-12), +and the monthly parameters: \code{tmp_max_ave}, \code{tmp_min_ave}, +\code{tmp_max_sd}, \code{tmp_min_sd}, \code{pcp_ave}, \code{pcp_sd}, +\code{pcp_skew}, \code{wet_dry}, \code{wet_wet}, \code{pcp_days}, +\code{pcp_hhr}, \code{slr_ave}, \code{dew_ave}, \code{wnd_ave}.} +} +\value{ +The project object (invisibly). +} +\description{ +Inserts weather generator station data into the \code{weather_wgn_cli} +table and optional monthly values into \code{weather_wgn_cli_mon}. +} +\examples{ +\dontrun{ +wgn <- data.frame( + name = "wgn_station1", + lat = -38.1, lon = 176.3, elev = 350, rain_yrs = 30 +) +add_weather_generators(project, wgn) +} +} diff --git a/src/r-api/swatplusEditoR/man/add_weather_stations.Rd b/src/r-api/swatplusEditoR/man/add_weather_stations.Rd new file mode 100644 index 00000000..64715133 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/add_weather_stations.Rd @@ -0,0 +1,45 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/weather.R +\name{add_weather_stations} +\alias{add_weather_stations} +\title{Add weather stations to the project database} +\usage{ +add_weather_stations(project, stations) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{stations}{A data.frame with weather station data. Required columns: +\code{name}, \code{lat}, \code{lon}. Optional columns: \code{elev}, +\code{pcp}, \code{tmp}, \code{slr}, \code{hmd}, \code{wnd}, \code{pet}, +\code{atmo_dep}, \code{wgn_id}. +File columns (\code{pcp}, \code{tmp}, etc.) should be character strings +with the weather data filename (e.g., "pcp1.cli"). Use \code{NULL} or +\code{NA} for unavailable variables.} +} +\value{ +The project object (invisibly). +} +\description{ +Inserts weather station records into the \code{weather_sta_cli} table. Each +station includes geographic coordinates and file references for climate +variables (precipitation, temperature, solar radiation, humidity, wind, PET). +} +\examples{ +\dontrun{ +stations <- data.frame( + name = c("station1", "station2"), + lat = c(-38.1, -38.2), + lon = c(176.3, 176.4), + pcp = c("pcp1.cli", "pcp2.cli"), + tmp = c("tmp1.cli", "tmp2.cli"), + slr = c("slr1.cli", "slr2.cli"), + hmd = c("hmd1.cli", "hmd2.cli"), + wnd = c("wnd1.cli", "wnd2.cli"), + pet = c("pet1.cli", "pet2.cli"), + atmo_dep = c("atmo1.cli", "atmo2.cli"), + stringsAsFactors = FALSE +) +add_weather_stations(project, stations) +} +} diff --git a/src/r-api/swatplusEditoR/man/build_update_sql.Rd b/src/r-api/swatplusEditoR/man/build_update_sql.Rd new file mode 100644 index 00000000..6cf336a8 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/build_update_sql.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{build_update_sql} +\alias{build_update_sql} +\title{Build an UPDATE SQL statement from named values} +\usage{ +build_update_sql(table_name, values, where_clause) +} +\arguments{ +\item{table_name}{Character. Table name.} + +\item{values}{Named list of column = value pairs.} + +\item{where_clause}{Character. WHERE clause (without WHERE keyword).} +} +\value{ +Character. SQL UPDATE statement. +} +\description{ +Build an UPDATE SQL statement from named values +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/check_swatplus.Rd b/src/r-api/swatplusEditoR/man/check_swatplus.Rd new file mode 100644 index 00000000..499371c6 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/check_swatplus.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/check_swatplus.R +\name{check_swatplus} +\alias{check_swatplus} +\title{Check SWAT+ input file consistency} +\usage{ +check_swatplus(project, output_dir) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{output_dir}{Character. Directory where the input files will be +written. Defaults to \code{"TxtInOut"} in the project directory.} +} +\value{ +A list of issues found, or an empty list if no issues detected. Each issue is a character string describing the problem. +} +\description{ +Check SWAT+ input file consistency +} diff --git a/src/r-api/swatplusEditoR/man/close_db.Rd b/src/r-api/swatplusEditoR/man/close_db.Rd new file mode 100644 index 00000000..6a939927 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/close_db.Rd @@ -0,0 +1,15 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/db_connect.R +\name{close_db} +\alias{close_db} +\title{Safely close a database connection} +\usage{ +close_db(con) +} +\arguments{ +\item{con}{A DBI connection object.} +} +\description{ +Safely close a database connection +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/copy_weather_files.Rd b/src/r-api/swatplusEditoR/man/copy_weather_files.Rd new file mode 100644 index 00000000..59255a5a --- /dev/null +++ b/src/r-api/swatplusEditoR/man/copy_weather_files.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{copy_weather_files} +\alias{copy_weather_files} +\title{Copy weather data files from weather_dir to output_dir} +\usage{ +copy_weather_files( + con, + output_dir, + weather_dir, + weather_data_format = "observed" +) +} +\description{ +Copy weather data files from weather_dir to output_dir +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/create_project_db.Rd b/src/r-api/swatplusEditoR/man/create_project_db.Rd new file mode 100644 index 00000000..9e8f08bc --- /dev/null +++ b/src/r-api/swatplusEditoR/man/create_project_db.Rd @@ -0,0 +1,27 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/project.R +\name{create_project_db} +\alias{create_project_db} +\title{Create a new SWAT+ project database} +\usage{ +create_project_db(project, overwrite = FALSE) +} +\arguments{ +\item{project}{List. A project object.} + +\item{overwrite}{Logical. If TRUE, overwrite an existing database.} +} +\value{ +The project object with \code{db_file} set to the new database path. +} +\description{ +Creates an empty SQLite database with the GIS tables populated from +a project object's spatial data. This initializes the database schema +matching the SWAT+ Editor format. +} +\examples{ +\dontrun{ +project <- list(project_dir = "/path/to/project") +project <- create_project_db(project, "/path/to/project/swatplus.sqlite") +} +} diff --git a/src/r-api/swatplusEditoR/man/display_df.Rd b/src/r-api/swatplusEditoR/man/display_df.Rd new file mode 100644 index 00000000..42fb93a3 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/display_df.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{display_df} +\alias{display_df} +\title{Format a data.frame for display} +\usage{ +display_df(df, max_rows = 10) +} +\arguments{ +\item{df}{A data.frame.} + +\item{max_rows}{Integer. Maximum rows to display.} +} +\value{ +The input data.frame (invisibly), with a message showing dimensions. +} +\description{ +Format a data.frame for display +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/ensure_write_tables.Rd b/src/r-api/swatplusEditoR/man/ensure_write_tables.Rd new file mode 100644 index 00000000..f167c28d --- /dev/null +++ b/src/r-api/swatplusEditoR/man/ensure_write_tables.Rd @@ -0,0 +1,21 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/project.R +\name{ensure_write_tables} +\alias{ensure_write_tables} +\title{Ensure all required SWAT+ tables exist before writing files} +\usage{ +ensure_write_tables(con) +} +\arguments{ +\item{con}{DBI connection to the project database.} +} +\value{ +Invisible \code{NULL}. +} +\description{ +Creates any missing tables that \code{\link{write_config_files}} needs +and populates mandatory tables with sensible defaults (mirroring the Python +SWAT+ Editor \code{setup.py} initialisation). Tables that already exist +are left untouched. +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/execute_db.Rd b/src/r-api/swatplusEditoR/man/execute_db.Rd new file mode 100644 index 00000000..012872b1 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/execute_db.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/db_connect.R +\name{execute_db} +\alias{execute_db} +\title{Execute a statement on the project database (INSERT, UPDATE, DELETE)} +\usage{ +execute_db(con, statement, params = NULL) +} +\arguments{ +\item{con}{A DBI connection object.} + +\item{statement}{Character. SQL statement to execute.} + +\item{params}{List. Optional statement parameters.} +} +\value{ +Number of affected rows. +} +\description{ +Execute a statement on the project database (INSERT, UPDATE, DELETE) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/find_closest_station.Rd b/src/r-api/swatplusEditoR/man/find_closest_station.Rd new file mode 100644 index 00000000..88ff7484 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/find_closest_station.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{find_closest_station} +\alias{find_closest_station} +\title{Find the closest station by latitude/longitude} +\usage{ +find_closest_station(stations, lat, lon) +} +\arguments{ +\item{stations}{A data.frame with lat and lon columns.} + +\item{lat}{Numeric. Target latitude.} + +\item{lon}{Numeric. Target longitude.} +} +\value{ +Integer. Row index of the closest station. +} +\description{ +Find the closest station by latitude/longitude +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/get_cio_file_names.Rd b/src/r-api/swatplusEditoR/man/get_cio_file_names.Rd new file mode 100644 index 00000000..d6728292 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/get_cio_file_names.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fileio.R +\name{get_cio_file_names} +\alias{get_cio_file_names} +\title{Get file names from file_cio for a classification section} +\usage{ +get_cio_file_names(con, section) +} +\arguments{ +\item{con}{DBI connection.} + +\item{section}{Character. Classification name (e.g. "simulation").} +} +\value{ +Character vector of file names. +} +\description{ +Get file names from file_cio for a classification section +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/get_file_cio_conditions.Rd b/src/r-api/swatplusEditoR/man/get_file_cio_conditions.Rd new file mode 100644 index 00000000..c118edf2 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/get_file_cio_conditions.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{get_file_cio_conditions} +\alias{get_file_cio_conditions} +\title{Get file.cio condition flags for each classification} +\usage{ +get_file_cio_conditions(con, is_lte = FALSE, is_netcdf = FALSE) +} +\description{ +Get file.cio condition flags for each classification +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/get_gwflow_base.Rd b/src/r-api/swatplusEditoR/man/get_gwflow_base.Rd new file mode 100644 index 00000000..88ebf205 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/get_gwflow_base.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gwflow.R +\name{get_gwflow_base} +\alias{get_gwflow_base} +\title{Get GWFLOW base configuration} +\usage{ +get_gwflow_base(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A list with GWFLOW base settings. +} +\description{ +Get GWFLOW base configuration +} diff --git a/src/r-api/swatplusEditoR/man/get_gwflow_status.Rd b/src/r-api/swatplusEditoR/man/get_gwflow_status.Rd new file mode 100644 index 00000000..7667e181 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/get_gwflow_status.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gwflow.R +\name{get_gwflow_status} +\alias{get_gwflow_status} +\title{Get GWFLOW status} +\usage{ +get_gwflow_status(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A list with \code{use_gwflow} (logical) and \code{can_enable} +(logical). +} +\description{ +Checks whether GWFLOW is enabled and available in the project. +} +\examples{ +\dontrun{ +status <- get_gwflow_status(project) +status$use_gwflow +} +} diff --git a/src/r-api/swatplusEditoR/man/get_gwflow_zones.Rd b/src/r-api/swatplusEditoR/man/get_gwflow_zones.Rd new file mode 100644 index 00000000..b6b0d67b --- /dev/null +++ b/src/r-api/swatplusEditoR/man/get_gwflow_zones.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gwflow.R +\name{get_gwflow_zones} +\alias{get_gwflow_zones} +\title{Get GWFLOW zones} +\usage{ +get_gwflow_zones(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A data.frame with zone parameters. +} +\description{ +Get GWFLOW zones +} diff --git a/src/r-api/swatplusEditoR/man/get_project_config.Rd b/src/r-api/swatplusEditoR/man/get_project_config.Rd new file mode 100644 index 00000000..04e31d85 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/get_project_config.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/project.R +\name{get_project_config} +\alias{get_project_config} +\title{Get project configuration from the database} +\usage{ +get_project_config(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A list with project configuration values. +} +\description{ +Get project configuration from the database +} +\examples{ +\dontrun{ +config <- get_project_config(project) +} +} diff --git a/src/r-api/swatplusEditoR/man/get_project_info.Rd b/src/r-api/swatplusEditoR/man/get_project_info.Rd new file mode 100644 index 00000000..dabc4e70 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/get_project_info.Rd @@ -0,0 +1,23 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/project.R +\name{get_project_info} +\alias{get_project_info} +\title{Get project information summary} +\usage{ +get_project_info(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A list with project summary information. +} +\description{ +Returns a summary of the project including GIS table row counts, +weather station status, and configuration. +} +\examples{ +\dontrun{ +info <- get_project_info(project) +} +} diff --git a/src/r-api/swatplusEditoR/man/get_wgn_cfsr_world.Rd b/src/r-api/swatplusEditoR/man/get_wgn_cfsr_world.Rd new file mode 100644 index 00000000..36c9154c --- /dev/null +++ b/src/r-api/swatplusEditoR/man/get_wgn_cfsr_world.Rd @@ -0,0 +1,39 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/weather.R +\name{get_wgn_cfsr_world} +\alias{get_wgn_cfsr_world} +\title{Get WGN data from the CFSR world database for the nearest stations} +\usage{ +get_wgn_cfsr_world(project, stations, wgn_db) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{stations}{A data.frame with at minimum \code{lat} and \code{lon} +columns representing the stations for which the nearest WGN site is needed.} + +\item{wgn_db}{Character. Path to the \code{swatplus_wgn.sqlite} database +containing the \code{wgn_cfsr_world} and \code{wgn_cfsr_world_mon} tables.} +} +\value{ +The project object (invisibly). +} +\description{ +For each station provided, finds the nearest weather generator site in the +\code{wgn_cfsr_world} table of the SWAT+ WGN database and writes the matched +WGN data (station header plus 12 monthly rows) to the project's +\code{weather_wgn_cli} and \code{weather_wgn_cli_mon} tables. +Only unique matched WGN sites are written; duplicate matches are silently +skipped via \code{INSERT OR IGNORE}. +} +\examples{ +\dontrun{ +stations <- data.frame( + name = c("station1", "station2"), + lat = c(-38.1, -38.2), + lon = c(176.3, 176.4) +) +project <- get_wgn_cfsr_world(project, stations, + wgn_db = "path/to/swatplus_wgn.sqlite") +} +} diff --git a/src/r-api/swatplusEditoR/man/gwflow_exists.Rd b/src/r-api/swatplusEditoR/man/gwflow_exists.Rd new file mode 100644 index 00000000..792b2c10 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/gwflow_exists.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{gwflow_exists} +\alias{gwflow_exists} +\title{Check if gwflow module is active} +\usage{ +gwflow_exists(con) +} +\arguments{ +\item{con}{Database connection.} +} +\value{ +Logical. TRUE if gwflow_base table exists and has data, +AND project_config.use_gwflow is enabled. +} +\description{ +Check if gwflow module is active +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/gwflow_gis_to_con_index.Rd b/src/r-api/swatplusEditoR/man/gwflow_gis_to_con_index.Rd new file mode 100644 index 00000000..28f9bdf6 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/gwflow_gis_to_con_index.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{gwflow_gis_to_con_index} +\alias{gwflow_gis_to_con_index} +\title{Build GIS ID to connection index mapping} +\usage{ +gwflow_gis_to_con_index(con, con_table) +} +\description{ +Build GIS ID to connection index mapping +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/gwflow_grid_index.Rd b/src/r-api/swatplusEditoR/man/gwflow_grid_index.Rd new file mode 100644 index 00000000..675ee0b8 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/gwflow_grid_index.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{gwflow_grid_index} +\alias{gwflow_grid_index} +\title{Build grid index mapping cell_id -> cell data} +\usage{ +gwflow_grid_index(con) +} +\description{ +Build grid index mapping cell_id -> cell data +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/gwflow_write_grid_column.Rd b/src/r-api/swatplusEditoR/man/gwflow_write_grid_column.Rd new file mode 100644 index 00000000..09c0f1c4 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/gwflow_write_grid_column.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{gwflow_write_grid_column} +\alias{gwflow_write_grid_column} +\title{Write a grid column for gwflow_init_conc} +\usage{ +gwflow_write_grid_column(con, gw, column_name) +} +\description{ +Write a grid column for gwflow_init_conc +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/has_data.Rd b/src/r-api/swatplusEditoR/man/has_data.Rd new file mode 100644 index 00000000..385d056f --- /dev/null +++ b/src/r-api/swatplusEditoR/man/has_data.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fileio.R +\name{has_data} +\alias{has_data} +\title{Safely check if a table exists and has data} +\usage{ +has_data(con, table_name) +} +\arguments{ +\item{con}{DBI connection.} + +\item{table_name}{Table name.} +} +\value{ +Logical. +} +\description{ +Safely check if a table exists and has data +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/init_gwflow.Rd b/src/r-api/swatplusEditoR/man/init_gwflow.Rd new file mode 100644 index 00000000..8cc3bbc6 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/init_gwflow.Rd @@ -0,0 +1,77 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gwflow.R +\name{init_gwflow} +\alias{init_gwflow} +\title{Initialize GWFLOW in the project} +\usage{ +init_gwflow( + project, + cell_size, + row_count, + col_count, + boundary_conditions = 1, + recharge = 1, + soil_transfer = 0, + saturation_excess = 0, + external_pumping = 0, + tile_drainage = 0, + reservoir_exchange = 0, + wetland_exchange = 0, + floodplain_exchange = 0, + canal_seepage = 0, + solute_transport = 0, + daily_output = 0, + annual_output = 0, + aa_output = 0 +) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{cell_size}{Numeric. Grid cell size in map units.} + +\item{row_count}{Integer. Number of grid rows.} + +\item{col_count}{Integer. Number of grid columns.} + +\item{boundary_conditions}{Integer. Boundary condition type.} + +\item{recharge}{Integer. Recharge option (1 = soil water, 2 = specific rate).} + +\item{soil_transfer}{Integer. Soil transfer option.} + +\item{saturation_excess}{Integer. Saturation excess routing.} + +\item{external_pumping}{Integer. External pumping flag.} + +\item{tile_drainage}{Integer. Tile drainage flag.} + +\item{reservoir_exchange}{Integer. Reservoir exchange flag.} + +\item{wetland_exchange}{Integer. Wetland exchange flag.} + +\item{floodplain_exchange}{Integer. Floodplain exchange flag.} + +\item{canal_seepage}{Integer. Canal seepage flag.} + +\item{solute_transport}{Integer. Solute transport flag.} + +\item{daily_output}{Integer. Daily output flag.} + +\item{annual_output}{Integer. Annual output flag.} + +\item{aa_output}{Integer. Average annual output flag.} +} +\value{ +The project object (invisibly). +} +\description{ +Enables the groundwater flow module and creates the necessary database +tables if they don't exist. +} +\examples{ +\dontrun{ +init_gwflow(project, cell_size = 200, row_count = 100, + col_count = 150) +} +} diff --git a/src/r-api/swatplusEditoR/man/is_nonempty_string.Rd b/src/r-api/swatplusEditoR/man/is_nonempty_string.Rd new file mode 100644 index 00000000..614ef017 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/is_nonempty_string.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{is_nonempty_string} +\alias{is_nonempty_string} +\title{Check if a value is a non-empty string} +\usage{ +is_nonempty_string(x) +} +\arguments{ +\item{x}{Value to check.} +} +\value{ +Logical. +} +\description{ +Check if a value is a non-empty string +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/list_db_tables.Rd b/src/r-api/swatplusEditoR/man/list_db_tables.Rd new file mode 100644 index 00000000..ea228145 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/list_db_tables.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/db_connect.R +\name{list_db_tables} +\alias{list_db_tables} +\title{List all tables in the project database} +\usage{ +list_db_tables(con) +} +\arguments{ +\item{con}{A DBI connection object.} +} +\value{ +Character vector of table names. +} +\description{ +List all tables in the project database +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/list_weather_stations.Rd b/src/r-api/swatplusEditoR/man/list_weather_stations.Rd new file mode 100644 index 00000000..eecc72e4 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/list_weather_stations.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/weather.R +\name{list_weather_stations} +\alias{list_weather_stations} +\title{List weather stations in the project database} +\usage{ +list_weather_stations(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A data.frame with all weather stations. +} +\description{ +List weather stations in the project database +} +\examples{ +\dontrun{ +stations <- list_weather_stations(project) +} +} diff --git a/src/r-api/swatplusEditoR/man/load_project.Rd b/src/r-api/swatplusEditoR/man/load_project.Rd new file mode 100644 index 00000000..f4935519 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/load_project.Rd @@ -0,0 +1,30 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/project.R +\name{load_project} +\alias{load_project} +\title{Load a SWAT+ project from an R project object} +\usage{ +load_project(project) +} +\arguments{ +\item{project}{List. A project object with at minimum \code{project_dir} +and \code{db_file} fields. The \code{db_file} should point to the SQLite +database containing gis_* tables.} +} +\value{ +The project object with a validated database connection confirmed. +} +\description{ +Takes a project list object (as produced by upstream GIS/delineation tools) +and validates that it has the required database file for SWAT+ Editor +operations. +} +\examples{ +\dontrun{ +project <- list( + project_dir = "/path/to/project", + db_file = "/path/to/project/project.sqlite" +) +project <- load_project(project) +} +} diff --git a/src/r-api/swatplusEditoR/man/match_weather_stations.Rd b/src/r-api/swatplusEditoR/man/match_weather_stations.Rd new file mode 100644 index 00000000..c660a915 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/match_weather_stations.Rd @@ -0,0 +1,30 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/weather.R +\name{match_weather_stations} +\alias{match_weather_stations} +\title{Match weather stations to spatial objects by nearest distance} +\usage{ +match_weather_stations( + project, + tables = c("aquifer_con", "channel_con", "chandeg_con", "rout_unit_con", + "reservoir_con", "recall_con", "exco_con", "hru_con", "hru_lte_con") +) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{tables}{Character vector. Connection tables to update. +Defaults to common SWAT+ connection tables.} +} +\value{ +The project object (invisibly). +} +\description{ +Updates the \code{wst_id} foreign key on connection tables (e.g., +\code{hru_con}, \code{aquifer_con}) to reference the closest weather +station by lat/lon coordinates. Also matches \code{wgn_id} on +\code{weather_sta_cli} to the nearest weather generator station. +} +\details{ +Called automatically by \code{\link{add_weather_stations}}. +} diff --git a/src/r-api/swatplusEditoR/man/match_weather_stations_db.Rd b/src/r-api/swatplusEditoR/man/match_weather_stations_db.Rd new file mode 100644 index 00000000..595ba3bc --- /dev/null +++ b/src/r-api/swatplusEditoR/man/match_weather_stations_db.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/weather.R +\name{match_weather_stations_db} +\alias{match_weather_stations_db} +\title{Match weather stations to spatial objects (database-level)} +\usage{ +match_weather_stations_db( + con, + tables = c("aquifer_con", "channel_con", "chandeg_con", "rout_unit_con", + "reservoir_con", "recall_con", "exco_con", "hru_con", "hru_lte_con") +) +} +\arguments{ +\item{con}{DBI database connection.} + +\item{tables}{Character vector of connection tables to update.} +} +\description{ +Internal workhorse called by \code{\link{match_weather_stations}} and by +\code{write_direct()} during file writing. Operates on an already-open +database connection so it can be used inside \code{write_config_files()} +after \code{populate_from_gis()} has created all \code{_con} tables. +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/open_project_db.Rd b/src/r-api/swatplusEditoR/man/open_project_db.Rd new file mode 100644 index 00000000..3cfd7690 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/open_project_db.Rd @@ -0,0 +1,23 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/db_connect.R +\name{open_project_db} +\alias{open_project_db} +\title{Open a connection to the SWAT+ project database} +\usage{ +open_project_db(db_path) +} +\arguments{ +\item{db_path}{Character. Path to the SQLite project database file.} +} +\value{ +A DBI connection object. +} +\description{ +Open a connection to the SWAT+ project database +} +\examples{ +\dontrun{ +con <- open_project_db("/path/to/project.sqlite") +DBI::dbDisconnect(con) +} +} diff --git a/src/r-api/swatplusEditoR/man/populate_from_datasets.Rd b/src/r-api/swatplusEditoR/man/populate_from_datasets.Rd new file mode 100644 index 00000000..028e3c5d --- /dev/null +++ b/src/r-api/swatplusEditoR/man/populate_from_datasets.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/project.R +\name{populate_from_datasets} +\alias{populate_from_datasets} +\title{Populate reference/parameter tables from the SWAT+ datasets databases} +\usage{ +populate_from_datasets(con) +} +\arguments{ +\item{con}{DBI connection to the project database.} +} +\value{ +Invisible \code{NULL}. +} +\description{ +Delegates to the \code{populate_from_datasets()} function in +\pkg{rQSWATPlus}, which copies reference data (plants, fertilizers, +operations, land use, calibration parameters, etc.) from bundled databases +into the project database. Only empty or missing tables are populated; +tables with existing data are left untouched. +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/populate_from_gis.Rd b/src/r-api/swatplusEditoR/man/populate_from_gis.Rd new file mode 100644 index 00000000..a851928f --- /dev/null +++ b/src/r-api/swatplusEditoR/man/populate_from_gis.Rd @@ -0,0 +1,29 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/project.R +\name{populate_from_gis} +\alias{populate_from_gis} +\title{Populate SWAT+ model tables from GIS data} +\usage{ +populate_from_gis(con) +} +\arguments{ +\item{con}{DBI connection to the project database (must already have +\code{gis_*} tables populated by +\code{rQSWATPlus::qswat_write_database()}).} +} +\value{ +Invisible \code{NULL}. +} +\description{ +Reads the \code{gis_*} tables written by +\code{rQSWATPlus::qswat_write_database()} and creates the SWAT+ model +objects (channels, routing units, HRUs, aquifers, connections, etc.) +that \code{\link{write_config_files}} needs to produce a complete set of +SWAT+ input files. +} +\details{ +This mirrors the Python SWAT+ Editor \file{actions/import_gis.py} +\code{insert_default()} method. Only creates rows in tables that are +currently empty; existing data is left untouched. +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/populate_gis_from_project.Rd b/src/r-api/swatplusEditoR/man/populate_gis_from_project.Rd new file mode 100644 index 00000000..b0c0784b --- /dev/null +++ b/src/r-api/swatplusEditoR/man/populate_gis_from_project.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/project.R +\name{populate_gis_from_project} +\alias{populate_gis_from_project} +\title{Populate GIS tables from project basin/HRU data} +\usage{ +populate_gis_from_project(con, project) +} +\arguments{ +\item{con}{DBI connection.} + +\item{project}{Project list object.} +} +\description{ +Populate GIS tables from project basin/HRU data +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/query_db.Rd b/src/r-api/swatplusEditoR/man/query_db.Rd new file mode 100644 index 00000000..6c20acbc --- /dev/null +++ b/src/r-api/swatplusEditoR/man/query_db.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/db_connect.R +\name{query_db} +\alias{query_db} +\title{Execute a query on the project database} +\usage{ +query_db(con, query, params = NULL) +} +\arguments{ +\item{con}{A DBI connection object.} + +\item{query}{Character. SQL query to execute.} + +\item{params}{List. Optional query parameters.} +} +\value{ +A data.frame with query results. +} +\description{ +Execute a query on the project database +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/read_db_table.Rd b/src/r-api/swatplusEditoR/man/read_db_table.Rd new file mode 100644 index 00000000..590822ce --- /dev/null +++ b/src/r-api/swatplusEditoR/man/read_db_table.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/db_connect.R +\name{read_db_table} +\alias{read_db_table} +\title{Read a table from the project database} +\usage{ +read_db_table(con, table_name) +} +\arguments{ +\item{con}{A DBI connection object.} + +\item{table_name}{Character. Name of the table to read.} +} +\value{ +A data.frame with the table contents. +} +\description{ +Read a table from the project database +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/read_gis_aquifers.Rd b/src/r-api/swatplusEditoR/man/read_gis_aquifers.Rd new file mode 100644 index 00000000..0259b5f8 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/read_gis_aquifers.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gis_data.R +\name{read_gis_aquifers} +\alias{read_gis_aquifers} +\title{Read GIS aquifers table} +\usage{ +read_gis_aquifers(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A data.frame with aquifer data. +} +\description{ +Read GIS aquifers table +} diff --git a/src/r-api/swatplusEditoR/man/read_gis_channels.Rd b/src/r-api/swatplusEditoR/man/read_gis_channels.Rd new file mode 100644 index 00000000..f5dbd517 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/read_gis_channels.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gis_data.R +\name{read_gis_channels} +\alias{read_gis_channels} +\title{Read GIS channels table} +\usage{ +read_gis_channels(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A data.frame with channel data (length, slope, width, depth). +} +\description{ +Read GIS channels table +} diff --git a/src/r-api/swatplusEditoR/man/read_gis_data.Rd b/src/r-api/swatplusEditoR/man/read_gis_data.Rd new file mode 100644 index 00000000..b49fc2a9 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/read_gis_data.Rd @@ -0,0 +1,25 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gis_data.R +\name{read_gis_data} +\alias{read_gis_data} +\title{Read all GIS data from the project database} +\usage{ +read_gis_data(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A named list of data.frames for each GIS table present in the +database. +} +\description{ +Returns a list containing all available GIS tables as data.frames. +} +\examples{ +\dontrun{ +gis <- read_gis_data(project) +names(gis) +head(gis$subbasins) +} +} diff --git a/src/r-api/swatplusEditoR/man/read_gis_deep_aquifers.Rd b/src/r-api/swatplusEditoR/man/read_gis_deep_aquifers.Rd new file mode 100644 index 00000000..4406c725 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/read_gis_deep_aquifers.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gis_data.R +\name{read_gis_deep_aquifers} +\alias{read_gis_deep_aquifers} +\title{Read GIS deep aquifers table} +\usage{ +read_gis_deep_aquifers(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A data.frame with deep aquifer data. +} +\description{ +Read GIS deep aquifers table +} diff --git a/src/r-api/swatplusEditoR/man/read_gis_hrus.Rd b/src/r-api/swatplusEditoR/man/read_gis_hrus.Rd new file mode 100644 index 00000000..05e17345 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/read_gis_hrus.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gis_data.R +\name{read_gis_hrus} +\alias{read_gis_hrus} +\title{Read GIS HRUs table} +\usage{ +read_gis_hrus(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A data.frame with HRU data (landuse, soil, slope, area). +} +\description{ +Read GIS HRUs table +} diff --git a/src/r-api/swatplusEditoR/man/read_gis_lsus.Rd b/src/r-api/swatplusEditoR/man/read_gis_lsus.Rd new file mode 100644 index 00000000..db1881ef --- /dev/null +++ b/src/r-api/swatplusEditoR/man/read_gis_lsus.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gis_data.R +\name{read_gis_lsus} +\alias{read_gis_lsus} +\title{Read GIS landscape units table} +\usage{ +read_gis_lsus(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A data.frame with LSU data. +} +\description{ +Read GIS landscape units table +} diff --git a/src/r-api/swatplusEditoR/man/read_gis_points.Rd b/src/r-api/swatplusEditoR/man/read_gis_points.Rd new file mode 100644 index 00000000..e4b6b95c --- /dev/null +++ b/src/r-api/swatplusEditoR/man/read_gis_points.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gis_data.R +\name{read_gis_points} +\alias{read_gis_points} +\title{Read GIS points table} +\usage{ +read_gis_points(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A data.frame with point feature data. +} +\description{ +Read GIS points table +} diff --git a/src/r-api/swatplusEditoR/man/read_gis_routing.Rd b/src/r-api/swatplusEditoR/man/read_gis_routing.Rd new file mode 100644 index 00000000..5266b934 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/read_gis_routing.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gis_data.R +\name{read_gis_routing} +\alias{read_gis_routing} +\title{Read GIS routing table} +\usage{ +read_gis_routing(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A data.frame with routing connectivity data. +} +\description{ +Read GIS routing table +} diff --git a/src/r-api/swatplusEditoR/man/read_gis_subbasins.Rd b/src/r-api/swatplusEditoR/man/read_gis_subbasins.Rd new file mode 100644 index 00000000..0a18bbf4 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/read_gis_subbasins.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gis_data.R +\name{read_gis_subbasins} +\alias{read_gis_subbasins} +\title{Read GIS subbasins table} +\usage{ +read_gis_subbasins(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A data.frame with subbasin data (area, slope, length, elevation). +} +\description{ +Read GIS subbasins table +} diff --git a/src/r-api/swatplusEditoR/man/read_gis_water.Rd b/src/r-api/swatplusEditoR/man/read_gis_water.Rd new file mode 100644 index 00000000..977c4ba2 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/read_gis_water.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gis_data.R +\name{read_gis_water} +\alias{read_gis_water} +\title{Read GIS water bodies table} +\usage{ +read_gis_water(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} +} +\value{ +A data.frame with water body data. +} +\description{ +Read GIS water bodies table +} diff --git a/src/r-api/swatplusEditoR/man/read_swat.Rd b/src/r-api/swatplusEditoR/man/read_swat.Rd new file mode 100644 index 00000000..a52eba6c --- /dev/null +++ b/src/r-api/swatplusEditoR/man/read_swat.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{read_swat} +\alias{read_swat} +\title{Helper to read a SWAT+ text file (skip title + header)} +\usage{ +read_swat(file, out_dir, skip = 1, ...) +} +\arguments{ +\item{file}{Character. Filename relative to the output directory.} + +\item{out_dir}{Character. Path to the output directory. Default is the project's output +directory.} + +\item{skip}{Integer. Number of lines to skip (default 1 for title line +and header line).} + +\item{...}{Additional arguments passed to \code{read.table()}.} +} +\value{ +A data.frame with the contents of the file, or NULL if the file is missing or cannot be read. +} +\description{ +Helper to read a SWAT+ text file (skip title + header) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/remove_weather_stations.Rd b/src/r-api/swatplusEditoR/man/remove_weather_stations.Rd new file mode 100644 index 00000000..786a93b2 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/remove_weather_stations.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/weather.R +\name{remove_weather_stations} +\alias{remove_weather_stations} +\title{Remove weather stations from the project database} +\usage{ +remove_weather_stations(project, station_ids = NULL) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{station_ids}{Integer vector. IDs of stations to remove. +If NULL, removes all stations.} +} +\value{ +The project object (invisibly). +} +\description{ +Remove weather stations from the project database +} +\examples{ +\dontrun{ +remove_weather_stations(project, station_ids = c(1, 2)) +remove_weather_stations(project) # removes all +} +} diff --git a/src/r-api/swatplusEditoR/man/run_swatplus.Rd b/src/r-api/swatplusEditoR/man/run_swatplus.Rd new file mode 100644 index 00000000..6c517caa --- /dev/null +++ b/src/r-api/swatplusEditoR/man/run_swatplus.Rd @@ -0,0 +1,68 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/run_swatplus.R +\name{run_swatplus} +\alias{run_swatplus} +\title{Run the SWAT+ model} +\usage{ +run_swatplus( + swat_exe = swatplus_exe(), + working_dir = getwd(), + args = character(0), + timeout = Inf, + echo = verbose, + verbose = TRUE +) +} +\arguments{ +\item{swat_exe}{Path to the SWAT+ executable. Defaults to +\code{\link{swatplus_exe}()} (the bundled Windows binary). On +non-Windows platforms you must supply a compatible native binary.} + +\item{working_dir}{Directory that contains the SWAT+ input files +(\code{file.cio}, \code{basins.def}, etc.). The executable is launched +with this as its working directory. Defaults to the current working +directory.} + +\item{args}{Character vector of additional command-line arguments +passed to the executable (rarely needed; SWAT+ reads \code{file.cio} +automatically). Default \code{character(0)}.} + +\item{timeout}{Maximum number of seconds to wait for the model to +finish. Passed to \code{processx::run()}. Use \code{Inf} (the default) +for no timeout.} + +\item{echo}{Print stdout/stderr lines to the R console as they +arrive. Default \code{TRUE} when \code{verbose = TRUE}.} + +\item{verbose}{Print progress messages via \code{\link{emit_progress}}. +Default \code{TRUE}.} +} +\value{ +Invisibly, a named list: +\describe{ +\item{\code{status}}{Integer exit code (0 = success).} +\item{\code{stdout}}{Character vector of stdout lines.} +\item{\code{stderr}}{Character vector of stderr lines.} +\item{\code{elapsed}}{Elapsed wall-clock time in seconds (\code{numeric}).} +\item{\code{success}}{Logical: \code{TRUE} when \code{status == 0}.} +} +} +\description{ +Launches the SWAT+ executable in \code{working_dir} using +\pkg{processx}, streams stdout/stderr in real time (when \code{verbose = +TRUE}), and returns a tidy summary of the run. +} +\details{ +Compared to the bare \code{system2()} call that was used previously, +\pkg{processx} provides: +\itemize{ +\item Non-blocking, line-by-line streaming of model output. +\item A clean exit-code check: non-zero exit raises an R warning rather +than silently succeeding. +\item Elapsed-time reporting. +\item A \code{timeout} parameter so long-running models can be killed. +} +} +\seealso{ +\code{\link{run_all}}, \code{\link{swatplus_exe}} +} diff --git a/src/r-api/swatplusEditoR/man/safe_count.Rd b/src/r-api/swatplusEditoR/man/safe_count.Rd new file mode 100644 index 00000000..4a5d50fe --- /dev/null +++ b/src/r-api/swatplusEditoR/man/safe_count.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fileio.R +\name{safe_count} +\alias{safe_count} +\title{Get count of rows in a table (safely)} +\usage{ +safe_count(con, table_name) +} +\arguments{ +\item{con}{DBI connection.} + +\item{table_name}{Table name.} +} +\value{ +Integer count, 0 if table doesn't exist. +} +\description{ +Get count of rows in a table (safely) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/set_print_options.Rd b/src/r-api/swatplusEditoR/man/set_print_options.Rd new file mode 100644 index 00000000..97e1b0af --- /dev/null +++ b/src/r-api/swatplusEditoR/man/set_print_options.Rd @@ -0,0 +1,63 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/parameters.R +\name{set_print_options} +\alias{set_print_options} +\title{Set print/output options} +\usage{ +set_print_options( + project, + nyskip = NULL, + day_start = NULL, + day_end = NULL, + yrc_start = NULL, + yrc_end = NULL, + interval = NULL, + csvout = NULL, + dbout = NULL, + cdfout = NULL, + crop_yld = NULL, + mgtout = NULL, + hydcon = NULL, + fdcout = NULL +) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{nyskip}{Integer. Number of years to skip for warm-up.} + +\item{day_start}{Integer. Print start Julian day.} + +\item{day_end}{Integer. Print end Julian day.} + +\item{yrc_start}{Integer. Print start year.} + +\item{yrc_end}{Integer. Print end year.} + +\item{interval}{Integer. Print interval.} + +\item{csvout}{Logical. Write CSV output files.} + +\item{dbout}{Logical. Write database output.} + +\item{cdfout}{Logical. Write NetCDF output.} + +\item{crop_yld}{Character. Crop yield output option.} + +\item{mgtout}{Logical. Write management output.} + +\item{hydcon}{Logical. Write hydrology connections output.} + +\item{fdcout}{Logical. Write flow duration curve output.} +} +\value{ +The project object (invisibly). +} +\description{ +Configures what SWAT+ output is written and at what intervals. +} +\examples{ +\dontrun{ +set_print_options(project, nyskip = 2, csvout = TRUE, dbout = FALSE) +} +} diff --git a/src/r-api/swatplusEditoR/man/set_simulation_time.Rd b/src/r-api/swatplusEditoR/man/set_simulation_time.Rd new file mode 100644 index 00000000..2cbf9a30 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/set_simulation_time.Rd @@ -0,0 +1,33 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/parameters.R +\name{set_simulation_time} +\alias{set_simulation_time} +\title{Set simulation time period} +\usage{ +set_simulation_time(project, day_start, yrc_start, day_end, yrc_end, step = 0) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{day_start}{Integer. Start Julian day (1-366).} + +\item{yrc_start}{Integer. Start year.} + +\item{day_end}{Integer. End Julian day (1-366).} + +\item{yrc_end}{Integer. End year.} + +\item{step}{Integer. Time step (0 = daily, 1 = hourly). Default 0.} +} +\value{ +The project object (invisibly). +} +\description{ +Set simulation time period +} +\examples{ +\dontrun{ +set_simulation_time(project, day_start = 1, yrc_start = 2000, + day_end = 365, yrc_end = 2010) +} +} diff --git a/src/r-api/swatplusEditoR/man/set_weather_dir.Rd b/src/r-api/swatplusEditoR/man/set_weather_dir.Rd new file mode 100644 index 00000000..85c77490 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/set_weather_dir.Rd @@ -0,0 +1,25 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/weather.R +\name{set_weather_dir} +\alias{set_weather_dir} +\title{Set the weather data directory in the project configuration} +\usage{ +set_weather_dir(project, weather_dir) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{weather_dir}{Character. Path to the directory containing weather +data files.} +} +\value{ +The project object (invisibly). +} +\description{ +Set the weather data directory in the project configuration +} +\examples{ +\dontrun{ +set_weather_dir(project, "/path/to/weather/data") +} +} diff --git a/src/r-api/swatplusEditoR/man/setup_project.Rd b/src/r-api/swatplusEditoR/man/setup_project.Rd new file mode 100644 index 00000000..9633fcd1 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/setup_project.Rd @@ -0,0 +1,32 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/project.R +\name{setup_project} +\alias{setup_project} +\title{Set up required tables and reference data in the project database} +\usage{ +setup_project(project) +} +\arguments{ +\item{project}{List. A SWAT+ project object with a \code{db_file} element.} +} +\value{ +The input \code{project} list, invisibly. +} +\description{ +Initialises the project database after running \code{rQSWATPlus::qswat_run()} +by ensuring all tables required by \code{\link{write_config_files}} exist and +are populated with sensible defaults. Creates any supplementary tables +(e.g. \code{weather_wgn_cli}, \code{object_cnt}, \code{initial_cha}, +\code{initial_aqu}, \code{delratio_del}) that may not yet exist in the +database. Tables that already contain data are left untouched. +} +\details{ +Typical usage in a setup pipeline: +\preformatted{ +project <- rQSWATPlus::qswat_run(...) |> + setup_project() |> + set_simulation_time(...) |> + add_weather_stations(stations) |> + get_wgn_cfsr_world(wgn_db = wgn_db) +} +} diff --git a/src/r-api/swatplusEditoR/man/swat_bool_pad.Rd b/src/r-api/swatplusEditoR/man/swat_bool_pad.Rd new file mode 100644 index 00000000..3c901813 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/swat_bool_pad.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fileio.R +\name{swat_bool_pad} +\alias{swat_bool_pad} +\title{Format a boolean value as y/n (mirrors Python write_bool_yn)} +\usage{ +swat_bool_pad(val, pad = SWAT_CODE_PAD, align = "right") +} +\arguments{ +\item{val}{Logical value.} + +\item{pad}{Padding width.} + +\item{align}{"right" or "left".} +} +\value{ +Formatted string. +} +\description{ +Format a boolean value as y/n (mirrors Python write_bool_yn) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/swat_format_value.Rd b/src/r-api/swatplusEditoR/man/swat_format_value.Rd new file mode 100644 index 00000000..e12ab152 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/swat_format_value.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fileio.R +\name{swat_format_value} +\alias{swat_format_value} +\title{Format a single value based on its R type for SWAT+ output} +\usage{ +swat_format_value(val, col_name = "", is_header = FALSE) +} +\arguments{ +\item{val}{Value to format.} + +\item{col_name}{Column name for special handling.} + +\item{is_header}{If TRUE, format as header text not data.} +} +\value{ +Formatted string. +} +\description{ +Format a single value based on its R type for SWAT+ output +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/swat_int_pad.Rd b/src/r-api/swatplusEditoR/man/swat_int_pad.Rd new file mode 100644 index 00000000..b26443dc --- /dev/null +++ b/src/r-api/swatplusEditoR/man/swat_int_pad.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fileio.R +\name{swat_int_pad} +\alias{swat_int_pad} +\title{Format an integer value with padding (mirrors Python int_pad)} +\usage{ +swat_int_pad(val, pad = SWAT_INT_PAD, align = "right") +} +\arguments{ +\item{val}{Integer value.} + +\item{pad}{Padding width.} + +\item{align}{"right" or "left".} +} +\value{ +Formatted string. +} +\description{ +Format an integer value with padding (mirrors Python int_pad) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/swat_meta_line.Rd b/src/r-api/swatplusEditoR/man/swat_meta_line.Rd new file mode 100644 index 00000000..4d09e1b7 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/swat_meta_line.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fileio.R +\name{swat_meta_line} +\alias{swat_meta_line} +\title{Generate SWAT+ file meta line (mirrors Python get_meta_line)} +\usage{ +swat_meta_line(file_name, version = NULL, swat_version = NULL) +} +\arguments{ +\item{file_name}{Output file name (basename only).} + +\item{version}{Editor version string.} + +\item{swat_version}{SWAT+ version string.} +} +\value{ +Meta line string. +} +\description{ +Generate SWAT+ file meta line (mirrors Python get_meta_line) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/swat_num_pad.Rd b/src/r-api/swatplusEditoR/man/swat_num_pad.Rd new file mode 100644 index 00000000..a7fa914b --- /dev/null +++ b/src/r-api/swatplusEditoR/man/swat_num_pad.Rd @@ -0,0 +1,38 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fileio.R +\name{swat_num_pad} +\alias{swat_num_pad} +\title{Format a numeric value with padding (mirrors Python num_pad)} +\usage{ +swat_num_pad( + val, + decimals = SWAT_DECIMALS, + pad = SWAT_NUM_PAD, + align = "right", + null_text = SWAT_NULL_NUM, + use_non_zero_min = FALSE, + non_zero_min = SWAT_NON_ZERO_MIN +) +} +\arguments{ +\item{val}{Numeric value.} + +\item{decimals}{Number of decimal places.} + +\item{pad}{Padding width.} + +\item{align}{"right" or "left".} + +\item{null_text}{Replacement for NULL/NA.} + +\item{use_non_zero_min}{If TRUE, enforce minimum value.} + +\item{non_zero_min}{Minimum value to use.} +} +\value{ +Formatted string. +} +\description{ +Format a numeric value with padding (mirrors Python num_pad) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/swat_string_pad.Rd b/src/r-api/swatplusEditoR/man/swat_string_pad.Rd new file mode 100644 index 00000000..3b9f7401 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/swat_string_pad.Rd @@ -0,0 +1,29 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fileio.R +\name{swat_string_pad} +\alias{swat_string_pad} +\title{Format a string value with padding (mirrors Python string_pad)} +\usage{ +swat_string_pad( + val, + pad = SWAT_STR_PAD, + align = "right", + null_text = SWAT_NULL_STR +) +} +\arguments{ +\item{val}{Value to format.} + +\item{pad}{Padding width.} + +\item{align}{"right" or "left".} + +\item{null_text}{Replacement text for NULL/NA values.} +} +\value{ +Formatted string. +} +\description{ +Format a string value with padding (mirrors Python string_pad) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/swat_write_table.Rd b/src/r-api/swatplusEditoR/man/swat_write_table.Rd new file mode 100644 index 00000000..7a1d279f --- /dev/null +++ b/src/r-api/swatplusEditoR/man/swat_write_table.Rd @@ -0,0 +1,60 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fileio.R +\name{swat_write_table} +\alias{swat_write_table} +\title{Write a database table to a SWAT+ formatted text file} +\usage{ +swat_write_table( + con, + table_name, + file_path, + version = NULL, + swat_version = NULL, + ignore_id = FALSE, + ignored_cols = character(0), + query = NULL, + write_count = FALSE, + non_zero_min_cols = character(0), + col_types = list(), + col_aligns = list(), + col_pads = list(), + col_names = list() +) +} +\arguments{ +\item{con}{DBI database connection.} + +\item{table_name}{Character. Name of the database table to query.} + +\item{file_path}{Character. Full path for the output file.} + +\item{version}{Character. Editor version string.} + +\item{swat_version}{Character. SWAT+ version string.} + +\item{ignore_id}{Logical. If TRUE, skip the 'id' column.} + +\item{ignored_cols}{Character vector. Additional columns to skip.} + +\item{query}{Character. Custom SQL query (overrides table_name).} + +\item{write_count}{Logical. If TRUE, write row count line.} + +\item{non_zero_min_cols}{Character vector. Columns to enforce non-zero minimum.} + +\item{col_types}{Named list. Override column types: "int", "num", "str", "bool".} + +\item{col_aligns}{Named list. Override column alignments.} + +\item{col_pads}{Named list. Override column padding widths.} + +\item{col_names}{Named list. Override header names for columns.} +} +\value{ +Invisible NULL. +} +\description{ +Generic writer that queries a database table and writes it in standard +SWAT+ fixed-width format. Mimics Python's write_default_table(). +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/swatplusEditoR-package.Rd b/src/r-api/swatplusEditoR/man/swatplusEditoR-package.Rd new file mode 100644 index 00000000..a7edc21c --- /dev/null +++ b/src/r-api/swatplusEditoR/man/swatplusEditoR-package.Rd @@ -0,0 +1,31 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/swatplusEditoR-package.R +\docType{package} +\name{swatplusEditoR-package} +\alias{swatplusEditoR-package} +\alias{swatplusEditoR} +\title{swatplusEditoR: R Interface to SWAT+ Editor API} +\description{ +Provides an R interface to the SWAT+ Editor project database. Supports direct SQLite access for managing weather stations, updating model parameters, configuring groundwater flow (GWFLOW), and writing SWAT+ model configuration files. Works with project objects containing GIS data stored in SQLite databases with gis_* tables. + +Provides an R interface to the SWAT+ Editor project database. +Supports direct SQLite access for managing weather stations, updating model +parameters, configuring groundwater flow (GWFLOW), and writing SWAT+ model +configuration files. +} +\section{Main functions}{ + +\describe{ +\item{\code{\link{load_project}}}{Load a SWAT+ project from an R project object} +\item{\code{\link{add_weather_stations}}}{Add weather station data} +\item{\code{\link{update_parameters}}}{Update model parameters} +\item{\code{\link{write_config_files}}}{Write SWAT+ model configuration files} +\item{\code{\link{init_gwflow}}}{Initialize groundwater flow module} +} +} + +\author{ +\strong{Maintainer}: SWAT+ Editor Development Team \email{swatplus@example.com} + +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/swatplus_exe.Rd b/src/r-api/swatplusEditoR/man/swatplus_exe.Rd new file mode 100644 index 00000000..2285693c --- /dev/null +++ b/src/r-api/swatplusEditoR/man/swatplus_exe.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/run_swatplus.R +\name{swatplus_exe} +\alias{swatplus_exe} +\title{Return the path to the bundled SWAT+ Windows executable} +\usage{ +swatplus_exe() +} +\value{ +A character string: the full path to the bundled +\code{.exe} file, or \code{NULL} when no executable is found (e.g. on +non-Windows platforms or in a source install without the binary). +} +\description{ +The package ships a pre-built SWAT+ Windows executable in +\code{inst/extbin/}. This function resolves its path at run time so that +callers do not need to hard-code file names. +} diff --git a/src/r-api/swatplusEditoR/man/table_exists.Rd b/src/r-api/swatplusEditoR/man/table_exists.Rd new file mode 100644 index 00000000..6fb6e342 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/table_exists.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/db_connect.R +\name{table_exists} +\alias{table_exists} +\title{Check if a table exists in the database} +\usage{ +table_exists(con, table_name) +} +\arguments{ +\item{con}{A DBI connection object.} + +\item{table_name}{Character. Name of the table to check.} +} +\value{ +Logical. TRUE if the table exists. +} +\description{ +Check if a table exists in the database +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/update_gwflow_base.Rd b/src/r-api/swatplusEditoR/man/update_gwflow_base.Rd new file mode 100644 index 00000000..4560fe2b --- /dev/null +++ b/src/r-api/swatplusEditoR/man/update_gwflow_base.Rd @@ -0,0 +1,25 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gwflow.R +\name{update_gwflow_base} +\alias{update_gwflow_base} +\title{Update GWFLOW base configuration} +\usage{ +update_gwflow_base(project, ...) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{...}{Named arguments for GWFLOW base settings to update (e.g., +cell_size, recharge, solute_transport).} +} +\value{ +The project object (invisibly). +} +\description{ +Update GWFLOW base configuration +} +\examples{ +\dontrun{ +update_gwflow_base(project, recharge = 2, daily_output = 1) +} +} diff --git a/src/r-api/swatplusEditoR/man/update_gwflow_codes_bsn.Rd b/src/r-api/swatplusEditoR/man/update_gwflow_codes_bsn.Rd new file mode 100644 index 00000000..9f4b25fb --- /dev/null +++ b/src/r-api/swatplusEditoR/man/update_gwflow_codes_bsn.Rd @@ -0,0 +1,16 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{update_gwflow_codes_bsn} +\alias{update_gwflow_codes_bsn} +\title{Update codes_bsn gwflow flag} +\usage{ +update_gwflow_codes_bsn(con) +} +\arguments{ +\item{con}{Database connection.} +} +\description{ +Sets codes_bsn.gwflow = 1 if gwflow module is active, 0 otherwise. +Matches Python gwflow_writer.update_codes_bsn(). +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/update_gwflow_zones.Rd b/src/r-api/swatplusEditoR/man/update_gwflow_zones.Rd new file mode 100644 index 00000000..2927c421 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/update_gwflow_zones.Rd @@ -0,0 +1,40 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gwflow.R +\name{update_gwflow_zones} +\alias{update_gwflow_zones} +\title{Update GWFLOW zone parameters} +\usage{ +update_gwflow_zones( + project, + zone_id, + aquifer_k = NULL, + specific_yield = NULL, + streambed_k = NULL, + streambed_thickness = NULL +) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{zone_id}{Integer. ID of the zone to update.} + +\item{aquifer_k}{Numeric. Hydraulic conductivity (m/day).} + +\item{specific_yield}{Numeric. Specific yield (dimensionless).} + +\item{streambed_k}{Numeric. Streambed conductivity (m/day).} + +\item{streambed_thickness}{Numeric. Streambed thickness (m).} +} +\value{ +The project object (invisibly). +} +\description{ +Update GWFLOW zone parameters +} +\examples{ +\dontrun{ +update_gwflow_zones(project, zone_id = 1, aquifer_k = 15.0, + specific_yield = 0.15) +} +} diff --git a/src/r-api/swatplusEditoR/man/update_parameters.Rd b/src/r-api/swatplusEditoR/man/update_parameters.Rd new file mode 100644 index 00000000..3d5f91d9 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/update_parameters.Rd @@ -0,0 +1,45 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/parameters.R +\name{update_parameters} +\alias{update_parameters} +\title{Update parameters in the project database} +\usage{ +update_parameters(project, table_name, values, ids = NULL, where = NULL) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{table_name}{Character. Name of the database table to update +(e.g., "hru_data_hru", "aquifer_aqu", "hydrology_hyd", +"topography_hyd", "channel_chn").} + +\item{values}{Named list. Column names and their new values.} + +\item{ids}{Integer vector. Optional IDs of rows to update. If NULL, +updates all rows matching the \code{where} condition.} + +\item{where}{Character. Optional SQL WHERE clause (without the WHERE +keyword). Applied in addition to \code{ids} if both are provided.} +} +\value{ +Integer. Number of rows affected. +} +\description{ +A general-purpose function to update parameter values in any table of +the SWAT+ project database. Supports updating by ID, by condition, or +in bulk. +} +\examples{ +\dontrun{ +# Update CN2 for all HRUs +update_parameters(project, "hydrology_hyd", list(cn2 = 65)) + +# Update specific HRUs +update_parameters(project, "hydrology_hyd", list(cn2 = 70), + ids = c(1, 2, 3)) + +# Update with a WHERE condition +update_parameters(project, "hydrology_hyd", list(cn2 = 75), + where = "cn2 > 80") +} +} diff --git a/src/r-api/swatplusEditoR/man/update_weather_station.Rd b/src/r-api/swatplusEditoR/man/update_weather_station.Rd new file mode 100644 index 00000000..5e388d86 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/update_weather_station.Rd @@ -0,0 +1,27 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/weather.R +\name{update_weather_station} +\alias{update_weather_station} +\title{Update a weather station} +\usage{ +update_weather_station(project, station_id, ...) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{station_id}{Integer. ID of the station to update.} + +\item{...}{Named arguments of fields to update (e.g., name, lat, lon, +pcp, tmp, slr, hmd, wnd, pet, atmo_dep, wgn_id).} +} +\value{ +The project object (invisibly). +} +\description{ +Update a weather station +} +\examples{ +\dontrun{ +update_weather_station(project, station_id = 1, lat = -38.15, lon = 176.35) +} +} diff --git a/src/r-api/swatplusEditoR/man/validate_project.Rd b/src/r-api/swatplusEditoR/man/validate_project.Rd new file mode 100644 index 00000000..5512c984 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/validate_project.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{validate_project} +\alias{validate_project} +\title{Validate that a project object has the expected structure} +\usage{ +validate_project(project) +} +\arguments{ +\item{project}{List. The SWAT+ project object.} +} +\value{ +Logical TRUE if valid, otherwise stops with an error. +} +\description{ +Validate that a project object has the expected structure +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/weather_sta_name.Rd b/src/r-api/swatplusEditoR/man/weather_sta_name.Rd new file mode 100644 index 00000000..542fd85f --- /dev/null +++ b/src/r-api/swatplusEditoR/man/weather_sta_name.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{weather_sta_name} +\alias{weather_sta_name} +\title{Generate a weather station name from coordinates} +\usage{ +weather_sta_name(lat, lon) +} +\arguments{ +\item{lat}{Numeric. Latitude.} + +\item{lon}{Numeric. Longitude.} +} +\value{ +Character. Station name in format "latXXX.XXlonXXX.XX" +} +\description{ +Follows the convention used in the SWAT+ Editor Python API. +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_atmo_cli.Rd b/src/r-api/swatplusEditoR/man/write_atmo_cli.Rd new file mode 100644 index 00000000..0c60b9d0 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_atmo_cli.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_atmo_cli} +\alias{write_atmo_cli} +\title{Write atmospheric deposition file (atmo.cli)} +\usage{ +write_atmo_cli( + con, + output_dir, + version = NULL, + swat_version = NULL, + file_name = "atmo.cli" +) +} +\description{ +Write atmospheric deposition file (atmo.cli) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_config_files.Rd b/src/r-api/swatplusEditoR/man/write_config_files.Rd new file mode 100644 index 00000000..4c7744ca --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_config_files.Rd @@ -0,0 +1,52 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_config_files} +\alias{write_config_files} +\title{Write SWAT+ model configuration files} +\usage{ +write_config_files( + project, + output_dir = NULL, + swat_version = "60", + weather_dir = NULL +) +} +\arguments{ +\item{project}{List. A SWAT+ project object with \code{db_file}.} + +\item{output_dir}{Character. Directory where the input files will be +written. Defaults to \code{"TxtInOut"} in the project directory.} + +\item{swat_version}{Character. SWAT+ version string. Default \code{"60"}.} + +\item{weather_dir}{Character. Path to weather data files. If provided, +weather \code{.cli} files are copied from this directory to output_dir.} + +\item{editor_exe}{Character. Optional path to the SWAT+ Editor +executable/script. If provided, delegates to the exe instead of writing +natively. Default \code{NULL} (write natively in R).} + +\item{api_url}{Character. Optional URL of a running SWAT+ Editor API +server. Default \code{NULL} (write natively in R).} +} +\value{ +The project object (invisibly). +} +\description{ +Writes all SWAT+ input files (TxtInOut) from the project database entirely +within R, without requiring an external Python executable or API server. +The writing logic mirrors the Python \code{fileio} modules in the SWAT+ +Editor repository. +} +\examples{ +\dontrun{ +# Write all SWAT+ input files natively in R (recommended) +write_config_files(project) + +# Specify a custom output directory +write_config_files(project, output_dir = "/path/to/TxtInOut") + +# Copy weather data files from another directory +write_config_files(project, weather_dir = "/path/to/weather") +} +} diff --git a/src/r-api/swatplusEditoR/man/write_connect_file.Rd b/src/r-api/swatplusEditoR/man/write_connect_file.Rd new file mode 100644 index 00000000..8985f021 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_connect_file.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_connect_file} +\alias{write_connect_file} +\title{Write a single connect file (e.g. hru.con, channel.con)} +\usage{ +write_connect_file( + con, + con_tbl, + con_out_tbl, + elem_name, + file_path, + version, + swat_version +) +} +\description{ +Write a single connect file (e.g. hru.con, channel.con) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_connect_section.Rd b/src/r-api/swatplusEditoR/man/write_connect_section.Rd new file mode 100644 index 00000000..841c60ed --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_connect_section.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_connect_section} +\alias{write_connect_section} +\title{Write all connect section files} +\usage{ +write_connect_section(con, output_dir, v, sv, has_cio) +} +\description{ +Write all connect section files +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_constituents_cs.Rd b/src/r-api/swatplusEditoR/man/write_constituents_cs.Rd new file mode 100644 index 00000000..7d01e3b7 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_constituents_cs.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_constituents_cs} +\alias{write_constituents_cs} +\title{Write constituents.cs file} +\usage{ +write_constituents_cs( + con, + output_dir, + version = NULL, + swat_version = NULL, + file_name = "constituents.cs" +) +} +\description{ +Write constituents.cs file +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_decision_tables.Rd b/src/r-api/swatplusEditoR/man/write_decision_tables.Rd new file mode 100644 index 00000000..f0523bd3 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_decision_tables.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_decision_tables} +\alias{write_decision_tables} +\title{Write decision table files} +\usage{ +write_decision_tables(con, output_dir, version, swat_version) +} +\description{ +Write decision table files +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_direct.Rd b/src/r-api/swatplusEditoR/man/write_direct.Rd new file mode 100644 index 00000000..befd1751 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_direct.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_direct} +\alias{write_direct} +\title{Write all SWAT+ configuration files directly from the database} +\usage{ +write_direct(project, output_dir, swat_version = "60", weather_dir = NULL) +} +\arguments{ +\item{project}{Project list object.} + +\item{output_dir}{Output directory.} + +\item{swat_version}{SWAT+ version string.} + +\item{weather_dir}{Optional weather data directory to copy files from.} +} +\value{ +The project object (invisibly). +} +\description{ +This is the main R-native writer that replaces the Python executable. +It writes all SWAT+ input text files by reading from the SQLite project +database, following the same logic as the Python fileio modules. +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_file_cio.Rd b/src/r-api/swatplusEditoR/man/write_file_cio.Rd new file mode 100644 index 00000000..86559e24 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_file_cio.Rd @@ -0,0 +1,34 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_file_cio} +\alias{write_file_cio} +\title{Write file.cio (main SWAT+ configuration file)} +\usage{ +write_file_cio( + con, + output_dir, + version = NULL, + swat_version = NULL, + is_lte = FALSE, + weather_data_format = "observed" +) +} +\arguments{ +\item{con}{Database connection.} + +\item{output_dir}{Output directory.} + +\item{version}{Editor version.} + +\item{swat_version}{SWAT+ version.} + +\item{is_lte}{Logical. Is this an LTE project.} + +\item{weather_data_format}{Character. Weather data format.} +} +\description{ +Database-driven version that reads the file_cio and +file_cio_classification tables to determine which files to include. +Falls back to a static template if these tables don't exist. +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_file_cio_from_db.Rd b/src/r-api/swatplusEditoR/man/write_file_cio_from_db.Rd new file mode 100644 index 00000000..4c6a56e2 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_file_cio_from_db.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_file_cio_from_db} +\alias{write_file_cio_from_db} +\title{Write file.cio from database tables} +\usage{ +write_file_cio_from_db( + con, + file_path, + version, + swat_version, + is_lte, + weather_data_format +) +} +\description{ +Write file.cio from database tables +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_file_cio_static.Rd b/src/r-api/swatplusEditoR/man/write_file_cio_static.Rd new file mode 100644 index 00000000..ea76c016 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_file_cio_static.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_file_cio_static} +\alias{write_file_cio_static} +\title{Write static file.cio as fallback} +\usage{ +write_file_cio_static(file_path, version = NULL, swat_version = NULL) +} +\description{ +Write static file.cio as fallback +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_gwflow_chancells.Rd b/src/r-api/swatplusEditoR/man/write_gwflow_chancells.Rd new file mode 100644 index 00000000..4a877665 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_gwflow_chancells.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_gwflow_chancells} +\alias{write_gwflow_chancells} +\title{Write gwflow.chancells file} +\usage{ +write_gwflow_chancells(con, output_dir, version, swat_version) +} +\description{ +Write gwflow.chancells file +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_gwflow_files.Rd b/src/r-api/swatplusEditoR/man/write_gwflow_files.Rd new file mode 100644 index 00000000..8904d7de --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_gwflow_files.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_gwflow_files} +\alias{write_gwflow_files} +\title{Write all gwflow module files} +\usage{ +write_gwflow_files(con, output_dir, version = NULL, swat_version = NULL) +} +\arguments{ +\item{con}{Database connection.} + +\item{output_dir}{Output directory.} + +\item{version}{Editor version string.} + +\item{swat_version}{SWAT+ version string.} +} +\description{ +Writes the gwflow input files when gwflow_base exists. This mirrors +the Python \code{Gwflow_files.write()} method. +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_gwflow_floodplain.Rd b/src/r-api/swatplusEditoR/man/write_gwflow_floodplain.Rd new file mode 100644 index 00000000..69b4a880 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_gwflow_floodplain.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_gwflow_floodplain} +\alias{write_gwflow_floodplain} +\title{Write gwflow.floodplain file} +\usage{ +write_gwflow_floodplain(con, output_dir, version, swat_version) +} +\description{ +Write gwflow.floodplain file +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_gwflow_hrucell.Rd b/src/r-api/swatplusEditoR/man/write_gwflow_hrucell.Rd new file mode 100644 index 00000000..e5b16361 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_gwflow_hrucell.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_gwflow_hrucell} +\alias{write_gwflow_hrucell} +\title{Write gwflow.hrucell and gwflow.cellhru files} +\usage{ +write_gwflow_hrucell(con, output_dir, version, swat_version) +} +\description{ +Write gwflow.hrucell and gwflow.cellhru files +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_gwflow_input.Rd b/src/r-api/swatplusEditoR/man/write_gwflow_input.Rd new file mode 100644 index 00000000..1e87ddea --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_gwflow_input.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_gwflow_input} +\alias{write_gwflow_input} +\title{Write gwflow.input file} +\usage{ +write_gwflow_input(con, output_dir, version, swat_version) +} +\description{ +Write gwflow.input file +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_gwflow_lsucell.Rd b/src/r-api/swatplusEditoR/man/write_gwflow_lsucell.Rd new file mode 100644 index 00000000..082f3288 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_gwflow_lsucell.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_gwflow_lsucell} +\alias{write_gwflow_lsucell} +\title{Write gwflow.lsucell file} +\usage{ +write_gwflow_lsucell(con, output_dir, version, swat_version) +} +\description{ +Write gwflow.lsucell file +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_gwflow_rescells.Rd b/src/r-api/swatplusEditoR/man/write_gwflow_rescells.Rd new file mode 100644 index 00000000..b7c77d26 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_gwflow_rescells.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_gwflow_rescells} +\alias{write_gwflow_rescells} +\title{Write gwflow.rescells file} +\usage{ +write_gwflow_rescells(con, output_dir, version, swat_version) +} +\description{ +Write gwflow.rescells file +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_gwflow_solutes.Rd b/src/r-api/swatplusEditoR/man/write_gwflow_solutes.Rd new file mode 100644 index 00000000..95688109 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_gwflow_solutes.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_gwflow_solutes} +\alias{write_gwflow_solutes} +\title{Write gwflow.solutes file} +\usage{ +write_gwflow_solutes(con, output_dir, version, swat_version) +} +\description{ +Write gwflow.solutes file +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_gwflow_tiles.Rd b/src/r-api/swatplusEditoR/man/write_gwflow_tiles.Rd new file mode 100644 index 00000000..adb6d37e --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_gwflow_tiles.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_gwflow_tiles} +\alias{write_gwflow_tiles} +\title{Write gwflow.tiles file} +\usage{ +write_gwflow_tiles(con, output_dir, version, swat_version) +} +\description{ +Write gwflow.tiles file +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_gwflow_wetland.Rd b/src/r-api/swatplusEditoR/man/write_gwflow_wetland.Rd new file mode 100644 index 00000000..90277659 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_gwflow_wetland.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_gwflow_wetland} +\alias{write_gwflow_wetland} +\title{Write gwflow.wetland file} +\usage{ +write_gwflow_wetland(con, output_dir, version, swat_version) +} +\description{ +Write gwflow.wetland file +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_management_sch.Rd b/src/r-api/swatplusEditoR/man/write_management_sch.Rd new file mode 100644 index 00000000..3f11aa1d --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_management_sch.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_management_sch} +\alias{write_management_sch} +\title{Writes the SWAT+ management schedule file, including auto-operations +(decision-table-driven) and manual operations for each schedule. +Mirrors Python Management_sch.write() in fileio/lum.py.} +\usage{ +write_management_sch( + con, + output_dir, + version = NULL, + swat_version = NULL, + file_name = "management.sch" +) +} +\description{ +Writes the SWAT+ management schedule file, including auto-operations +(decision-table-driven) and manual operations for each schedule. +Mirrors Python Management_sch.write() in fileio/lum.py. +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_object_cnt.Rd b/src/r-api/swatplusEditoR/man/write_object_cnt.Rd new file mode 100644 index 00000000..40d9e69a --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_object_cnt.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_object_cnt} +\alias{write_object_cnt} +\title{Write object.cnt file (object counts)} +\usage{ +write_object_cnt( + con, + output_dir, + version = NULL, + swat_version = NULL, + file_name = "object.cnt" +) +} +\description{ +Write object.cnt file (object counts) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_object_prt.Rd b/src/r-api/swatplusEditoR/man/write_object_prt.Rd new file mode 100644 index 00000000..e8cbecc9 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_object_prt.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_object_prt} +\alias{write_object_prt} +\title{Write object.prt file} +\usage{ +write_object_prt( + con, + output_dir, + version = NULL, + swat_version = NULL, + file_name = "object.prt" +) +} +\description{ +Write object.prt file +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_plant_ini.Rd b/src/r-api/swatplusEditoR/man/write_plant_ini.Rd new file mode 100644 index 00000000..4834a03d --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_plant_ini.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_plant_ini} +\alias{write_plant_ini} +\title{Write plant.ini in SWAT+ hierarchical format +Each plant community block: name + plt_cnt + rot_yr_ini, then one sub-row +per plant (indented). Only writes communities referenced from +landuse_lum.plnt_com_id (i.e. those actually used in the watershed). +Mirrors Python Plant_ini.write() in fileio/init.py.} +\usage{ +write_plant_ini( + con, + output_dir, + version = NULL, + swat_version = NULL, + file_name = "plant.ini" +) +} +\description{ +Write plant.ini in SWAT+ hierarchical format +Each plant community block: name + plt_cnt + rot_yr_ini, then one sub-row +per plant (indented). Only writes communities referenced from +landuse_lum.plnt_com_id (i.e. those actually used in the watershed). +Mirrors Python Plant_ini.write() in fileio/init.py. +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_print_prt.Rd b/src/r-api/swatplusEditoR/man/write_print_prt.Rd new file mode 100644 index 00000000..640b5e6d --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_print_prt.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_print_prt} +\alias{write_print_prt} +\title{Write print.prt file (print output settings)} +\usage{ +write_print_prt( + con, + output_dir, + version = NULL, + swat_version = NULL, + file_name = "print.prt" +) +} +\description{ +Write print.prt file (print output settings) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_recall_rec.Rd b/src/r-api/swatplusEditoR/man/write_recall_rec.Rd new file mode 100644 index 00000000..ca725f09 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_recall_rec.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_recall_rec} +\alias{write_recall_rec} +\title{Write recall.rec file (includes nested recall data)} +\usage{ +write_recall_rec(con, output_dir, version = NULL, swat_version = NULL) +} +\description{ +Write recall.rec file (includes nested recall data) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_rout_unit_def.Rd b/src/r-api/swatplusEditoR/man/write_rout_unit_def.Rd new file mode 100644 index 00000000..dbfa89fc --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_rout_unit_def.Rd @@ -0,0 +1,28 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_rout_unit_def} +\alias{write_rout_unit_def} +\title{Write rout_unit.def in SWAT+ format +Each routing unit block: id / name / elem_tot / element IDs. +Iterates over rout_unit_con (one row per RTU) and for each RTU writes +the sequential IDs of all associated rout_unit_ele rows using range +notation (negative = "through"). +Mirrors Python Rout_unit_def.write() in fileio/routing_unit.py.} +\usage{ +write_rout_unit_def( + con, + output_dir, + version = NULL, + swat_version = NULL, + file_name = "rout_unit.def" +) +} +\description{ +Write rout_unit.def in SWAT+ format +Each routing unit block: id / name / elem_tot / element IDs. +Iterates over rout_unit_con (one row per RTU) and for each RTU writes +the sequential IDs of all associated rout_unit_ele rows using range +notation (negative = "through"). +Mirrors Python Rout_unit_def.write() in fileio/routing_unit.py. +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_section_file.Rd b/src/r-api/swatplusEditoR/man/write_section_file.Rd new file mode 100644 index 00000000..bece14a6 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_section_file.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_section_file} +\alias{write_section_file} +\title{Write a file if file_name is not "null"} +\usage{ +write_section_file(con, file_name, output_dir, v, sv, writer = NULL) +} +\description{ +Write a file if file_name is not "null" +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_time_sim.Rd b/src/r-api/swatplusEditoR/man/write_time_sim.Rd new file mode 100644 index 00000000..dfc7b050 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_time_sim.Rd @@ -0,0 +1,29 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_time_sim} +\alias{write_time_sim} +\title{Write time.sim file} +\usage{ +write_time_sim( + con, + output_dir, + version = NULL, + swat_version = NULL, + file_name = "time.sim" +) +} +\arguments{ +\item{con}{Database connection.} + +\item{output_dir}{Output directory.} + +\item{version}{Editor version.} + +\item{swat_version}{SWAT+ version.} + +\item{file_name}{Output file name.} +} +\description{ +Write time.sim file +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_weather_sta_cli.Rd b/src/r-api/swatplusEditoR/man/write_weather_sta_cli.Rd new file mode 100644 index 00000000..fd42215c --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_weather_sta_cli.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_weather_sta_cli} +\alias{write_weather_sta_cli} +\title{Write weather station CLI file} +\usage{ +write_weather_sta_cli( + con, + output_dir, + version = NULL, + swat_version = NULL, + file_name = "weather-sta.cli" +) +} +\description{ +Write weather station CLI file +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/man/write_weather_wgn.Rd b/src/r-api/swatplusEditoR/man/write_weather_wgn.Rd new file mode 100644 index 00000000..2d800e19 --- /dev/null +++ b/src/r-api/swatplusEditoR/man/write_weather_wgn.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_files.R +\name{write_weather_wgn} +\alias{write_weather_wgn} +\title{Write weather generator file (weather-wgn.cli)} +\usage{ +write_weather_wgn( + con, + output_dir, + version = NULL, + swat_version = NULL, + file_name = "weather-wgn.cli" +) +} +\description{ +Write weather generator file (weather-wgn.cli) +} +\keyword{internal} diff --git a/src/r-api/swatplusEditoR/tests/testthat.R b/src/r-api/swatplusEditoR/tests/testthat.R new file mode 100644 index 00000000..a2f0633d --- /dev/null +++ b/src/r-api/swatplusEditoR/tests/testthat.R @@ -0,0 +1,4 @@ +library(testthat) +library(swatplusEditoR) + +test_check("swatplusEditoR") diff --git a/src/r-api/swatplusEditoR/tests/testthat/test-db_connect.R b/src/r-api/swatplusEditoR/tests/testthat/test-db_connect.R new file mode 100644 index 00000000..abf56bd0 --- /dev/null +++ b/src/r-api/swatplusEditoR/tests/testthat/test-db_connect.R @@ -0,0 +1,29 @@ +# Test database connection utilities + +test_that("open_project_db fails on missing file", { + expect_error( + open_project_db("/nonexistent/path.sqlite"), + "Database file not found" + ) +}) + +test_that("create and open project database", { + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + # Create minimal database + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + DBI::dbExecute(con, "CREATE TABLE test_table (id INTEGER, name TEXT)") + DBI::dbExecute(con, "INSERT INTO test_table VALUES (1, 'test')") + DBI::dbDisconnect(con) + + # Open with our function + + con <- open_project_db(db_path) + expect_true(inherits(con, "SQLiteConnection")) + + tables <- DBI::dbListTables(con) + expect_true("test_table" %in% tables) + + DBI::dbDisconnect(con) +}) diff --git a/src/r-api/swatplusEditoR/tests/testthat/test-gis_data.R b/src/r-api/swatplusEditoR/tests/testthat/test-gis_data.R new file mode 100644 index 00000000..e7f7273f --- /dev/null +++ b/src/r-api/swatplusEditoR/tests/testthat/test-gis_data.R @@ -0,0 +1,356 @@ +# Test GIS data reading functions + +# Helper to create a test project with GIS data +create_gis_test_project <- function() { + db_path <- tempfile(fileext = ".sqlite") + project_dir <- tempdir() + + project <- list( + project_dir = project_dir, + db_file = db_path, + hru_data = NULL, + basin_data = NULL + ) + + project <- create_project_db(project, db_path, overwrite = TRUE) + + # Insert some test GIS data + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + + DBI::dbExecute(con, + "INSERT INTO gis_subbasins (id, area, slo1, len1, sll, lat, lon, elev, elevmin, elevmax) + VALUES (1, 100.5, 0.05, 500, 0.04, -38.1, 176.3, 350, 300, 400)") + DBI::dbExecute(con, + "INSERT INTO gis_subbasins (id, area, slo1, len1, sll, lat, lon, elev, elevmin, elevmax) + VALUES (2, 200.3, 0.08, 750, 0.06, -38.2, 176.4, 320, 280, 380)") + + DBI::dbExecute(con, + "INSERT INTO gis_channels (id, subbasin, areac, strahler, len2, slo2, wid2, dep2, elevmin, elevmax, midlat, midlon) + VALUES (1, 1, 50.0, 2, 1000, 0.01, 5.0, 1.5, 300, 350, -38.15, 176.35)") + + DBI::dbExecute(con, + "INSERT INTO gis_hrus (id, lsu, arsub, arlsu, landuse, arland, soil, arso, slp, arslp, slope, lat, lon, elev) + VALUES (1, 1, 50.0, 50.0, 'FRST', 50.0, 'LOAM', 50.0, '0-8', 50.0, 0.04, -38.1, 176.3, 350)") + + DBI::dbExecute(con, + "INSERT INTO gis_routing (sourceid, sourcecat, hyd_typ, sinkid, sinkcat, percent) + VALUES (1, 'sub', 'tot', 2, 'sub', 100.0)") + + DBI::dbDisconnect(con) + project +} + +# Helper to create a test project with required tables for standard channel testing +create_channel_test_project <- function() { + project <- create_gis_test_project() + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + + # Create the required channel tables + DBI::dbExecute(con, "CREATE TABLE IF NOT EXISTS channel_cha ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + init_id INTEGER, hyd_id INTEGER, sed_id INTEGER, nut_id INTEGER)") + DBI::dbExecute(con, "CREATE TABLE IF NOT EXISTS hydrology_cha ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + wd REAL, dp REAL, slp REAL, len REAL, mann REAL, k REAL)") + DBI::dbExecute(con, "CREATE TABLE IF NOT EXISTS sediment_cha ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE)") + DBI::dbExecute(con, "CREATE TABLE IF NOT EXISTS nutrients_cha ( + id INTEGER PRIMARY KEY, name TEXT UNIQUE, + alg_stl REAL, ben_disp REAL, ben_nh3n REAL, cbn_bod_co REAL, + alg_grow REAL, nh3_pref REAL)") + DBI::dbExecute(con, "CREATE TABLE IF NOT EXISTS initial_cha ( + id INTEGER PRIMARY KEY, name TEXT, org_min_id INTEGER)") + DBI::dbExecute(con, "CREATE TABLE IF NOT EXISTS om_water_ini ( + id INTEGER PRIMARY KEY, name TEXT)") + DBI::dbExecute(con, "CREATE TABLE IF NOT EXISTS chandeg_con ( + id INTEGER PRIMARY KEY, name TEXT, gis_id INTEGER, + area REAL, lat REAL, lon REAL, elev REAL, ovfl INTEGER, rule INTEGER)") + DBI::dbExecute(con, "CREATE TABLE IF NOT EXISTS object_cnt ( + id INTEGER PRIMARY KEY, name TEXT, ls_area REAL, tot_area REAL, + obj INTEGER DEFAULT 0, hru INTEGER DEFAULT 0, lhru INTEGER DEFAULT 0, + rtu INTEGER DEFAULT 0, gwfl INTEGER DEFAULT 0, aqu INTEGER DEFAULT 0, + cha INTEGER DEFAULT 0, res INTEGER DEFAULT 0, rec INTEGER DEFAULT 0, + exco INTEGER DEFAULT 0, dlr INTEGER DEFAULT 0, can INTEGER DEFAULT 0, + pmp INTEGER DEFAULT 0, out INTEGER DEFAULT 0, lcha INTEGER DEFAULT 0, + aqu2d INTEGER DEFAULT 0, hrd INTEGER DEFAULT 0, wro INTEGER DEFAULT 0)") + DBI::dbExecute(con, "INSERT OR IGNORE INTO object_cnt (id, name) VALUES (1, 'test')") + DBI::dbExecute(con, "INSERT OR IGNORE INTO om_water_ini (id, name) VALUES (1, 'omwater1')") + + # Also create channel_con (LTE channel connection table) for counting + + DBI::dbExecute(con, "CREATE TABLE IF NOT EXISTS channel_con ( + id INTEGER PRIMARY KEY, name TEXT)") + + DBI::dbDisconnect(con) + project +} + +test_that("read_gis_data returns all GIS tables", { + project <- create_gis_test_project() + on.exit(unlink(project$db_file)) + + gis <- read_gis_data(project) + expect_true(is.list(gis)) + expect_true("subbasins" %in% names(gis)) + expect_true("channels" %in% names(gis)) + expect_true("hrus" %in% names(gis)) + expect_true("routing" %in% names(gis)) +}) + +test_that("read_gis_subbasins returns correct data", { + project <- create_gis_test_project() + on.exit(unlink(project$db_file)) + + subs <- read_gis_subbasins(project) + expect_equal(nrow(subs), 2) + expect_true("area" %in% names(subs)) + expect_equal(subs$area[1], 100.5) +}) + +test_that("read_gis_channels returns correct data", { + project <- create_gis_test_project() + on.exit(unlink(project$db_file)) + + channels <- read_gis_channels(project) + expect_equal(nrow(channels), 1) + expect_equal(channels$strahler[1], 2) +}) + +test_that("read_gis_hrus returns correct data", { + project <- create_gis_test_project() + on.exit(unlink(project$db_file)) + + hrus <- read_gis_hrus(project) + expect_equal(nrow(hrus), 1) + expect_equal(hrus$landuse[1], "FRST") + expect_equal(hrus$soil[1], "LOAM") +}) + +test_that("read_gis_routing returns correct data", { + project <- create_gis_test_project() + on.exit(unlink(project$db_file)) + + routing <- read_gis_routing(project) + expect_equal(nrow(routing), 1) + expect_equal(routing$sourcecat[1], "sub") + expect_equal(routing$percent[1], 100.0) +}) + +# ------------------------------------------------------------------- +# Tests for standard channel insertion (.gis_insert_channels) +# ------------------------------------------------------------------- + +test_that(".gis_insert_channels populates channel_cha and hydrology_cha", { + project <- create_channel_test_project() + on.exit(unlink(project$db_file)) + + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + on.exit(DBI::dbDisconnect(con), add = TRUE) + + # Call the internal function + swatplusEditoR:::.gis_insert_channels(con) + + # channel_cha should have 1 row (one channel from gis_channels) + cha <- DBI::dbGetQuery(con, "SELECT * FROM channel_cha") + expect_equal(nrow(cha), 1) + expect_true(grepl("^cha", cha$name[1])) + expect_equal(cha$hyd_id[1], 1L) + + # hydrology_cha should have 1 row + hyd <- DBI::dbGetQuery(con, "SELECT * FROM hydrology_cha") + expect_equal(nrow(hyd), 1) + expect_equal(hyd$wd[1], 5.0) + expect_equal(hyd$dp[1], 1.5) + expect_true(hyd$mann[1] == 0.05) + + # sediment_cha should have one row per channel + sed <- DBI::dbGetQuery(con, "SELECT * FROM sediment_cha") + expect_equal(nrow(sed), 1) + expect_true(grepl("^sed", sed$name[1])) + + # nutrients_cha should have 1 default row with physics-based defaults + nut <- DBI::dbGetQuery(con, "SELECT * FROM nutrients_cha") + expect_equal(nrow(nut), 1) + expect_equal(nut$alg_stl[1], 1.0) + expect_equal(nut$ben_disp[1], 0.05) + expect_equal(nut$ben_nh3n[1], 0.5) + expect_equal(nut$cbn_bod_co[1], 1.71) + expect_equal(nut$alg_grow[1], 2.0) + expect_equal(nut$nh3_pref[1], 0.5) + + # chandeg_con should have 1 row + chandeg <- DBI::dbGetQuery(con, "SELECT * FROM chandeg_con") + expect_equal(nrow(chandeg), 1) + expect_equal(chandeg$gis_id[1], 1L) + + # channel_lte_cha should NOT be populated (standard mode) + lte_count <- tryCatch( + DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM channel_lte_cha")$n[1], + error = function(e) 0L) + expect_equal(lte_count, 0L) +}) + +test_that(".gis_insert_channels is idempotent", { + project <- create_channel_test_project() + on.exit(unlink(project$db_file)) + + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + on.exit(DBI::dbDisconnect(con), add = TRUE) + + swatplusEditoR:::.gis_insert_channels(con) + swatplusEditoR:::.gis_insert_channels(con) # second call should be no-op + + cha <- DBI::dbGetQuery(con, "SELECT * FROM channel_cha") + expect_equal(nrow(cha), 1) +}) + +# ------------------------------------------------------------------- +# Tests for object_cnt update +# ------------------------------------------------------------------- + +test_that(".gis_update_object_cnt sets lcha from chandeg_con count", { + project <- create_channel_test_project() + on.exit(unlink(project$db_file)) + + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + on.exit(DBI::dbDisconnect(con), add = TRUE) + + # Insert a channel to populate chandeg_con + swatplusEditoR:::.gis_insert_channels(con) + + # Update object counts + swatplusEditoR:::.gis_update_object_cnt(con) + + cnt <- DBI::dbGetQuery(con, "SELECT * FROM object_cnt LIMIT 1") + + # lcha should be 1 (from 1 row in chandeg_con) + expect_equal(cnt$lcha, 1L) + # cha should be 0 (channel_con is empty for standard mode) + expect_equal(cnt$cha, 0L) + # obj should include lcha in the total + expect_true(cnt$obj >= cnt$lcha) +}) + +# ------------------------------------------------------------------- +# Tests for .gis_insert_connections PT chain following +# ------------------------------------------------------------------- + +# Helper to create a test project with channels and routing through PT nodes +create_pt_chain_project <- function() { + project <- create_channel_test_project() + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + + # Add two channels (gis_id 1 and 2) with channel routing through a PT node: + # ch gis_id=1 -> PT id=99 -> ch gis_id=2 + DBI::dbExecute(con, + "INSERT INTO gis_channels (id, subbasin, areac, strahler, len2, slo2, wid2, dep2, elevmin, elevmax, midlat, midlon) + VALUES (2, 1, 50.0, 1, 500, 0.02, 3.0, 1.0, 280, 310, -38.20, 176.40)") + DBI::dbExecute(con, + "INSERT INTO gis_routing (sourceid, sourcecat, hyd_typ, sinkid, sinkcat, percent) + VALUES (1, 'ch', 'tot', 99, 'pt', 100.0)") + DBI::dbExecute(con, + "INSERT INTO gis_routing (sourceid, sourcecat, hyd_typ, sinkid, sinkcat, percent) + VALUES (99, 'pt', 'tot', 2, 'ch', 100.0)") + + # Create chandeg_con_out table + DBI::dbExecute(con, "CREATE TABLE IF NOT EXISTS chandeg_con_out ( + id INTEGER PRIMARY KEY, chandeg_con_id INTEGER, order_id INTEGER, + obj_typ TEXT, obj_id INTEGER, hyd_typ TEXT, frac REAL)") + + DBI::dbDisconnect(con) + project +} + +test_that(".gis_insert_connections follows PT chains for chandeg_con_out", { + project <- create_pt_chain_project() + on.exit(unlink(project$db_file)) + + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + on.exit(DBI::dbDisconnect(con), add = TRUE) + + # Insert two channels so chandeg_con has gis_id=1 and gis_id=2 + swatplusEditoR:::.gis_insert_channels(con) + + chandeg <- DBI::dbGetQuery(con, "SELECT * FROM chandeg_con ORDER BY gis_id") + expect_equal(nrow(chandeg), 2L) + + # Build connections — channel 1 routes via PT 99 to channel 2 + swatplusEditoR:::.gis_insert_connections(con) + + out <- DBI::dbGetQuery(con, "SELECT * FROM chandeg_con_out") + expect_equal(nrow(out), 1L) + + # The source should be chandeg_con id for gis_id=1 + src_con_id <- chandeg$id[chandeg$gis_id == 1L] + snk_con_id <- chandeg$id[chandeg$gis_id == 2L] + expect_equal(out$chandeg_con_id[1], src_con_id) + expect_equal(out$obj_id[1], snk_con_id) + expect_equal(out$obj_typ[1], "sdc") + expect_equal(out$hyd_typ[1], "tot") + expect_equal(out$frac[1], 1.0) +}) + +test_that(".gis_insert_connections handles direct (non-PT) channel routing", { + project <- create_channel_test_project() + on.exit(unlink(project$db_file)) + + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + on.exit(DBI::dbDisconnect(con), add = TRUE) + + # Add second channel and direct ch->ch routing row + DBI::dbExecute(con, + "INSERT INTO gis_channels (id, subbasin, areac, strahler, len2, slo2, wid2, dep2, elevmin, elevmax, midlat, midlon) + VALUES (2, 1, 50.0, 1, 500, 0.02, 3.0, 1.0, 280, 310, -38.20, 176.40)") + DBI::dbExecute(con, + "INSERT INTO gis_routing (sourceid, sourcecat, hyd_typ, sinkid, sinkcat, percent) + VALUES (1, 'ch', 'tot', 2, 'ch', 100.0)") + DBI::dbExecute(con, "CREATE TABLE IF NOT EXISTS chandeg_con_out ( + id INTEGER PRIMARY KEY, chandeg_con_id INTEGER, order_id INTEGER, + obj_typ TEXT, obj_id INTEGER, hyd_typ TEXT, frac REAL)") + + swatplusEditoR:::.gis_insert_channels(con) + swatplusEditoR:::.gis_insert_connections(con) + + out <- DBI::dbGetQuery(con, "SELECT * FROM chandeg_con_out") + expect_equal(nrow(out), 1L) + chandeg <- DBI::dbGetQuery(con, "SELECT * FROM chandeg_con ORDER BY gis_id") + expect_equal(out$chandeg_con_id[1], chandeg$id[chandeg$gis_id == 1L]) + expect_equal(out$obj_id[1], chandeg$id[chandeg$gis_id == 2L]) +}) + +test_that(".gis_insert_connections falls back to sub topology when no CH rows in gis_routing", { + # Simulates a QSWAT+ project where gis_routing only has sub->sub rows (not ch->ch). + # create_gis_test_project() already has: sub1->sub2 routing + channel gis_id=1 in sub1. + # We just add a second channel for sub2, then verify ch_in_sub1 -> ch_in_sub2 is built. + project <- create_channel_test_project() + on.exit(unlink(project$db_file)) + + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + on.exit(DBI::dbDisconnect(con), add = TRUE) + + # Add channel gis_id=2 in subbasin 2 (sub2 already exists from create_gis_test_project). + DBI::dbExecute(con, + "INSERT INTO gis_channels (id, subbasin, areac, strahler, len2, slo2, wid2, dep2, elevmin, elevmax, midlat, midlon) + VALUES (2, 2, 60.0, 1, 600, 0.015, 4.0, 1.2, 270, 310, -38.20, 176.45)") + + DBI::dbExecute(con, "CREATE TABLE IF NOT EXISTS chandeg_con_out ( + id INTEGER PRIMARY KEY, chandeg_con_id INTEGER, order_id INTEGER, + obj_typ TEXT, obj_id INTEGER, hyd_typ TEXT, frac REAL)") + + # Existing gis_routing has sub1->sub2; no explicit ch rows. + swatplusEditoR:::.gis_insert_channels(con) + swatplusEditoR:::.gis_insert_connections(con) + + chandeg <- DBI::dbGetQuery(con, "SELECT * FROM chandeg_con ORDER BY gis_id") + expect_equal(nrow(chandeg), 2L) + + out <- DBI::dbGetQuery(con, "SELECT * FROM chandeg_con_out") + # sub1 routes to sub2, so ch_in_sub1 (gis_id=1) should route to ch_in_sub2 (gis_id=2) + expect_equal(nrow(out), 1L) + src_id <- chandeg$id[chandeg$gis_id == 1L] + snk_id <- chandeg$id[chandeg$gis_id == 2L] + expect_equal(out$chandeg_con_id[1], src_id) + expect_equal(out$obj_id[1], snk_id) + expect_equal(out$obj_typ[1], "sdc") + expect_equal(out$frac[1], 1.0) +}) diff --git a/src/r-api/swatplusEditoR/tests/testthat/test-gwflow.R b/src/r-api/swatplusEditoR/tests/testthat/test-gwflow.R new file mode 100644 index 00000000..3953e27b --- /dev/null +++ b/src/r-api/swatplusEditoR/tests/testthat/test-gwflow.R @@ -0,0 +1,86 @@ +# Test GWFLOW configuration functions + +create_gwflow_test_project <- function() { + skip_if_not_installed("rQSWATPlus") + + dem <- system.file("extdata", "ravn_dem.tif", package = "rQSWATPlus") + landuse <- system.file("extdata", "ravn_landuse.tif", package = "rQSWATPlus") + soil <- system.file("extdata", "ravn_soil.tif", package = "rQSWATPlus") + lu_lookup <- system.file("extdata", "ravn_landuse.csv", package = "rQSWATPlus") + soil_lookup <- system.file("extdata", "ravn_soil.csv", package = "rQSWATPlus") + outlet <- system.file("extdata", "ravn_outlet.shp", package = "rQSWATPlus") + + rQSWATPlus::qswat_run( + project_dir = file.path(tempdir(), "ravn_gwflow"), + dem_file = dem, + landuse_file = landuse, + soil_file = soil, + landuse_lookup = lu_lookup, + soil_lookup = soil_lookup, + outlet_file = outlet, + threshold = 500, + slope_breaks = c(0, 5, 15, 9999), + landuse_threshold = 5, + soil_threshold = 5, + db_file = "swat.db", + quiet = TRUE + ) +} + +test_that("get_gwflow_status returns status", { + project <- create_gwflow_test_project() + on.exit(unlink(project$db_file)) + + status <- get_gwflow_status(project) + expect_true(is.list(status)) + expect_false(status$use_gwflow) + expect_false(status$can_enable) +}) + +test_that("init_gwflow creates GWFLOW tables and config", { + project <- create_gwflow_test_project() + + init_gwflow(project, cell_size = 200, row_count = 50, col_count = 60) + + # Check base config + base <- get_gwflow_base(project) + expect_equal(base$cell_size, 200) + expect_equal(base$row_count, 50) + expect_equal(base$col_count, 60) + expect_equal(base$recharge, 1) + + # Check default zone created + zones <- get_gwflow_zones(project) + expect_equal(nrow(zones), 1) + expect_equal(zones$zone_id[1], 1) + expect_equal(zones$aquifer_k[1], 10.0) + + # Check project config updated + config <- get_project_config(project) + expect_equal(config$use_gwflow, 1L) +}) + +test_that("update_gwflow_base modifies settings", { + project <- create_gwflow_test_project() + on.exit(unlink(project$db_file)) + + init_gwflow(project, cell_size = 200, row_count = 50, col_count = 60) + update_gwflow_base(project, recharge = 2, daily_output = 1) + + base <- get_gwflow_base(project) + expect_equal(base$recharge, 2) + expect_equal(base$daily_output, 1) +}) + +test_that("update_gwflow_zones modifies zone parameters", { + project <- create_gwflow_test_project() + on.exit(unlink(project$db_file)) + + init_gwflow(project, cell_size = 200, row_count = 50, col_count = 60) + update_gwflow_zones(project, zone_id = 1, aquifer_k = 15.0, + specific_yield = 0.15) + + zones <- get_gwflow_zones(project) + expect_equal(zones$aquifer_k[1], 15.0) + expect_equal(zones$specific_yield[1], 0.15) +}) diff --git a/src/r-api/swatplusEditoR/tests/testthat/test-parameters.R b/src/r-api/swatplusEditoR/tests/testthat/test-parameters.R new file mode 100644 index 00000000..caf95214 --- /dev/null +++ b/src/r-api/swatplusEditoR/tests/testthat/test-parameters.R @@ -0,0 +1,111 @@ +# Test parameter update functions + +# Helper +create_param_test_project <- function() { + db_path <- tempfile(fileext = ".sqlite") + project_dir <- tempdir() + + project <- list( + project_dir = project_dir, + db_file = db_path, + hru_data = NULL, + basin_data = NULL + ) + + project <- create_project_db(project, db_path, overwrite = TRUE) + + # Create a test parameter table (hydrology_hyd) + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + DBI::dbExecute(con, " + CREATE TABLE hydrology_hyd ( + id INTEGER PRIMARY KEY, + name TEXT, cn2 REAL, awc REAL, esco REAL, epco REAL + )") + DBI::dbExecute(con, + "INSERT INTO hydrology_hyd (id, name, cn2, awc, esco, epco) + VALUES (1, 'hyd1', 70, 0.5, 0.95, 1.0)") + DBI::dbExecute(con, + "INSERT INTO hydrology_hyd (id, name, cn2, awc, esco, epco) + VALUES (2, 'hyd2', 75, 0.6, 0.90, 0.95)") + DBI::dbExecute(con, + "INSERT INTO hydrology_hyd (id, name, cn2, awc, esco, epco) + VALUES (3, 'hyd3', 80, 0.4, 0.85, 0.90)") + DBI::dbDisconnect(con) + + project +} + +test_that("update_parameters updates all rows", { + project <- create_param_test_project() + on.exit(unlink(project$db_file)) + + n <- update_parameters(project, "hydrology_hyd", list(cn2 = 65)) + expect_equal(n, 3) + + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + result <- DBI::dbGetQuery(con, "SELECT cn2 FROM hydrology_hyd") + DBI::dbDisconnect(con) + + expect_true(all(result$cn2 == 65)) +}) + +test_that("update_parameters updates by IDs", { + project <- create_param_test_project() + on.exit(unlink(project$db_file)) + + n <- update_parameters(project, "hydrology_hyd", list(cn2 = 90), ids = c(1, 2)) + expect_equal(n, 2) + + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + result <- DBI::dbGetQuery(con, "SELECT id, cn2 FROM hydrology_hyd ORDER BY id") + DBI::dbDisconnect(con) + + expect_equal(result$cn2[1], 90) + expect_equal(result$cn2[2], 90) + expect_equal(result$cn2[3], 80) # unchanged +}) + +test_that("update_parameters updates with WHERE clause", { + project <- create_param_test_project() + on.exit(unlink(project$db_file)) + + n <- update_parameters(project, "hydrology_hyd", + list(esco = 0.5), where = "cn2 > 74") + expect_equal(n, 2) +}) + +test_that("update_parameters validates table existence", { + project <- create_param_test_project() + on.exit(unlink(project$db_file)) + + expect_error( + update_parameters(project, "nonexistent_table", list(cn2 = 65)), + "not found in database" + ) +}) + +test_that("update_parameters validates column names", { + project <- create_param_test_project() + on.exit(unlink(project$db_file)) + + expect_error( + update_parameters(project, "hydrology_hyd", list(invalid_col = 65)), + "Invalid column" + ) +}) + +test_that("set_simulation_time sets time period", { + project <- create_param_test_project() + on.exit(unlink(project$db_file)) + + set_simulation_time(project, day_start = 1, yrc_start = 2000, + day_end = 365, yrc_end = 2010) + + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + result <- DBI::dbGetQuery(con, "SELECT * FROM time_sim") + DBI::dbDisconnect(con) + + expect_equal(nrow(result), 1) + expect_equal(result$yrc_start, 2000) + expect_equal(result$yrc_end, 2010) +}) diff --git a/src/r-api/swatplusEditoR/tests/testthat/test-project.R b/src/r-api/swatplusEditoR/tests/testthat/test-project.R new file mode 100644 index 00000000..da5abd01 --- /dev/null +++ b/src/r-api/swatplusEditoR/tests/testthat/test-project.R @@ -0,0 +1,84 @@ +# Test project management functions + +# Helper to create a test project with database +create_test_project <- function() { + db_path <- tempfile(fileext = ".sqlite") + project_dir <- tempdir() + + project <- list( + project_dir = project_dir, + db_file = db_path, + dem_file = NULL, + landuse_file = NULL, + soil_file = NULL, + hru_data = NULL, + basin_data = NULL + ) + + # Create the database using the package function + project <- create_project_db(project, db_path, overwrite = TRUE) + project +} + +test_that("create_project_db creates database with GIS tables", { + project <- create_test_project() + on.exit(unlink(project$db_file)) + + expect_true(file.exists(project$db_file)) + + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + tables <- DBI::dbListTables(con) + DBI::dbDisconnect(con) + + # Check all required GIS tables exist + expected_tables <- c("gis_aquifers", "gis_channels", "gis_deep_aquifers", + "gis_hrus", "gis_lsus", "gis_points", "gis_routing", + "gis_subbasins", "gis_water") + for (tbl in expected_tables) { + expect_true(tbl %in% tables, info = paste("Missing table:", tbl)) + } + + # Check weather tables + expect_true("weather_sta_cli" %in% tables) + expect_true("weather_wgn_cli" %in% tables) + + # Check project config + expect_true("project_config" %in% tables) +}) + +test_that("load_project validates project object", { + project <- create_test_project() + on.exit(unlink(project$db_file)) + + # Should work + expect_message(load_project(project), "SWAT\\+ project loaded") + + # Missing db_file + bad_project <- list(project_dir = tempdir()) + expect_error(load_project(bad_project), "missing required fields") + + # NULL db_file + bad_project2 <- list(project_dir = tempdir(), db_file = NULL) + expect_error(load_project(bad_project2), "db_file is NULL") +}) + +test_that("get_project_config returns configuration", { + project <- create_test_project() + on.exit(unlink(project$db_file)) + + config <- get_project_config(project) + expect_true(is.list(config)) + expect_true("project_name" %in% names(config)) + expect_equal(config$editor_version, "3.2.0") +}) + +test_that("get_project_info returns summary", { + project <- create_test_project() + on.exit(unlink(project$db_file)) + + info <- get_project_info(project) + expect_true(is.list(info)) + expect_true("gis_counts" %in% names(info)) + expect_true("status" %in% names(info)) + expect_equal(info$status$weather_stations, 0L) +}) diff --git a/src/r-api/swatplusEditoR/tests/testthat/test-run_swatplus.R b/src/r-api/swatplusEditoR/tests/testthat/test-run_swatplus.R new file mode 100644 index 00000000..d5d0f430 --- /dev/null +++ b/src/r-api/swatplusEditoR/tests/testthat/test-run_swatplus.R @@ -0,0 +1,129 @@ +# Tests for run_swatplus() and swatplus_exe() + +# Helper: build a full project with rQSWATPlus + ERA5 weather +library(testthat) +setup_swat_sim <- function() { + skip_if_not_installed("rQSWATPlus") + + dem <- system.file("extdata", "ravn_dem.tif", package = "rQSWATPlus") + landuse <- system.file("extdata", "ravn_landuse.tif", package = "rQSWATPlus") + lu_lookup <- system.file("extdata", "ravn_landuse.csv", package = "rQSWATPlus") + soil <- system.file("extdata", "ravn_soil.tif", package = "rQSWATPlus") + soil_lookup <- system.file("extdata", "ravn_soil.csv", package = "rQSWATPlus") + usersoil <- system.file("extdata", "ravn_usersoil.csv", package = "rQSWATPlus") + outlet <- system.file("extdata", "ravn_outlet.shp", package = "rQSWATPlus") + era5_dir <- system.file("extdata", "era5", package = "swatplusEditoR") + wgn_db <- system.file("extdata", "swatplus_wgn_nz.sqlite", package = "swatplusEditoR") + # Register ERA5 as the weather station + stations <- data.frame( + name = "IDera5", + lat = -38.1, + lon = 176.3, + pcp = "pcp.cli", + tmp = "tmp.cli", + slr = "slr.cli", + hmd = "hmd.cli", + wnd = "wnd.cli", + stringsAsFactors = FALSE + ) + + + + project <- rQSWATPlus::qswat_run( + project_dir = file.path(tempdir(), "ravn_sim"), + dem_file = dem, + landuse_file = landuse, + landuse_lookup = lu_lookup, + soil_file = soil, + soil_lookup = soil_lookup, + usersoil = usersoil, + outlet_file = outlet, + threshold = 500, + slope_breaks = c(0, 5, 15, 9999), + landuse_threshold = 5, + soil_threshold = 5, + db_file = "swat.db", + quiet = TRUE + ) |> + setup_project() |> + set_simulation_time(day_start = 1, yrc_start = 2000, + day_end = 365, yrc_end = 2000) |> + add_weather_stations(stations) |> + get_wgn_cfsr_world(wgn_db = wgn_db) + + list(project = project, era5_dir = era5_dir, + output_dir = tempfile("txtinout_")) +} + +test_that("swatplus_exe returns NULL or a valid path", { + exe <- swatplus_exe() + expect_true(is.null(exe) || (is.character(exe) && file.exists(exe))) +}) + +test_that("write_config_files writes SWAT+ files from rQSWATPlus project", { + skip_if_not_installed("rQSWATPlus") + + sim <- setup_swat_sim() + project <- sim$project + output_dir <- sim$output_dir + era5_dir <- sim$era5_dir + on.exit({ + unlink(project$db_file) + unlink(output_dir, recursive = TRUE) + }, add = TRUE) + + write_config_files(project, output_dir = output_dir, + weather_dir = era5_dir) + + expect_true(file.exists(file.path(output_dir, "file.cio"))) + expect_true(file.exists(file.path(output_dir, "time.sim"))) + expect_true(file.exists(file.path(output_dir, "weather-sta.cli"))) +}) + +test_that("run_swatplus executes SWAT+ simulation", { + skip_if_not_installed("rQSWATPlus") + exe <- swatplus_exe() + skip_if(is.null(exe), "No SWAT+ executable available on this platform") + + sim <- setup_swat_sim() + project <- sim$project + output_dir <- sim$output_dir + era5_dir <- sim$era5_dir + on.exit({ + unlink(project$db_file) + unlink(output_dir, recursive = TRUE) + }, add = TRUE) + + gis <- read_gis_data(project) + lapply(gis, head) + + write_config_files(project, output_dir = output_dir, + weather_dir = era5_dir) + list.files(output_dir) # Debug: check files before running + + issues <- check_swatplus(project = project, output_dir = output_dir) + result <- run_swatplus(swat_exe = exe, working_dir = output_dir, + verbose = TRUE) + readLines(result$stdout_file) # Debug: print stdout for troubleshooting + + expect_true(result$success) + expect_equal(result$status, 0L) +}) + +test_that("run_swatplus errors clearly when no executable supplied", { + skip_on_os("windows") + exe <- swatplus_exe() + skip_if(!is.null(exe), "SWAT+ executable present; skipping error test") + + output_dir <- tempfile("txtinout_") + dir.create(output_dir) + on.exit(unlink(output_dir, recursive = TRUE)) + + expect_error( + run_swatplus(swat_exe = NULL, working_dir = output_dir), + regexp = "No SWAT\\+ executable", + ignore.case = TRUE + ) +}) + + diff --git a/src/r-api/swatplusEditoR/tests/testthat/test-weather.R b/src/r-api/swatplusEditoR/tests/testthat/test-weather.R new file mode 100644 index 00000000..ba6c81cc --- /dev/null +++ b/src/r-api/swatplusEditoR/tests/testthat/test-weather.R @@ -0,0 +1,356 @@ +# Test weather station management functions + +# Helper to create a project with weather capability +create_weather_test_project <- function() { + db_path <- tempfile(fileext = ".sqlite") + project_dir <- tempdir() + + project <- list( + project_dir = project_dir, + db_file = db_path, + hru_data = NULL, + basin_data = NULL + ) + + project <- create_project_db(project, db_path, overwrite = TRUE) + project +} + +test_that("add_weather_stations inserts stations", { + project <- create_weather_test_project() + on.exit(unlink(project$db_file)) + + stations <- data.frame( + name = c("station1", "station2"), + lat = c(-38.1, -38.2), + lon = c(176.3, 176.4), + pcp = c("pcp1.cli", "pcp2.cli"), + tmp = c("tmp1.cli", "tmp2.cli"), + slr = c("slr1.cli", "slr2.cli"), + hmd = c("hmd1.cli", "hmd2.cli"), + wnd = c("wnd1.cli", "wnd2.cli"), + pet = c("pet1.cli", "pet2.cli"), + atmo_dep = c("atmo1.cli", "atmo2.cli"), + stringsAsFactors = FALSE + ) + + add_weather_stations(project, stations) + + result <- list_weather_stations(project) + expect_equal(nrow(result), 2) + expect_equal(result$name[1], "station1") + expect_equal(result$lat[1], -38.1) + expect_equal(result$pcp[1], "pcp1.cli") +}) + +test_that("add_weather_stations validates input", { + project <- create_weather_test_project() + on.exit(unlink(project$db_file)) + + # Not a data.frame + expect_error(add_weather_stations(project, "not_a_df"), + "must be a data.frame") + + # Missing required columns + bad_df <- data.frame(x = 1) + expect_error(add_weather_stations(project, bad_df), + "missing required columns") + + # Empty data.frame + empty_df <- data.frame(name = character(0), lat = numeric(0), + lon = numeric(0)) + expect_error(add_weather_stations(project, empty_df), + "empty") +}) + +test_that("update_weather_station updates station", { + project <- create_weather_test_project() + on.exit(unlink(project$db_file)) + + stations <- data.frame( + name = "test_station", + lat = -38.1, lon = 176.3, + stringsAsFactors = FALSE + ) + add_weather_stations(project, stations) + + update_weather_station(project, station_id = 1, lat = -38.5, lon = 176.8) + + result <- list_weather_stations(project) + expect_equal(result$lat[1], -38.5) + expect_equal(result$lon[1], 176.8) +}) + +test_that("remove_weather_stations removes stations", { + project <- create_weather_test_project() + on.exit(unlink(project$db_file)) + + stations <- data.frame( + name = c("s1", "s2", "s3"), + lat = c(-38.1, -38.2, -38.3), + lon = c(176.3, 176.4, 176.5), + stringsAsFactors = FALSE + ) + add_weather_stations(project, stations) + expect_equal(nrow(list_weather_stations(project)), 3) + + # Remove specific stations + remove_weather_stations(project, station_ids = c(1, 2)) + expect_equal(nrow(list_weather_stations(project)), 1) + + # Remove all + remove_weather_stations(project) + expect_equal(nrow(list_weather_stations(project)), 0) +}) + +test_that("add_weather_generators inserts WGN data", { + project <- create_weather_test_project() + on.exit(unlink(project$db_file)) + + wgn <- data.frame( + name = "wgn_test", + lat = -38.1, lon = 176.3, elev = 350, rain_yrs = 30, + stringsAsFactors = FALSE + ) + + add_weather_generators(project, wgn) + + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + result <- DBI::dbGetQuery(con, "SELECT * FROM weather_wgn_cli") + DBI::dbDisconnect(con) + + expect_equal(nrow(result), 1) + expect_equal(result$name[1], "wgn_test") + expect_equal(result$rain_yrs[1], 30) +}) + +# ------------------------------------------------------------------- +# Tests for ERA5 climate data integration +# ------------------------------------------------------------------- + +test_that("ERA5 climate data files exist in package", { + era5_dir <- system.file("extdata", "era5", package = "swatplusEditoR") + expect_true(nchar(era5_dir) > 0, info = "ERA5 directory not found in package") + expect_true(dir.exists(era5_dir)) + + expected_files <- c("pcp.cli", "tmp.cli", "slr.cli", "hmd.cli", "wnd.cli") + for (f in expected_files) { + expect_true(file.exists(file.path(era5_dir, f)), + info = paste("Missing ERA5 file:", f)) + } +}) + +test_that("add_weather_stations with ERA5 climate file references", { + project <- create_weather_test_project() + on.exit(unlink(project$db_file)) + + # Add a station that references ERA5-style climate files + stations <- data.frame( + name = "era5_station", + lat = 55.5, lon = 12.1, + pcp = "IDera5.pcp", + tmp = "IDera5.tmp", + slr = "IDera5.slr", + hmd = "IDera5.hmd", + wnd = "IDera5.wnd", + stringsAsFactors = FALSE + ) + + add_weather_stations(project, stations) + + result <- list_weather_stations(project) + expect_equal(nrow(result), 1) + expect_equal(result$name, "era5_station") + expect_equal(result$pcp, "IDera5.pcp") + expect_equal(result$tmp, "IDera5.tmp") + expect_equal(result$slr, "IDera5.slr") + expect_equal(result$hmd, "IDera5.hmd") + expect_equal(result$wnd, "IDera5.wnd") +}) + +test_that("set_weather_dir works with ERA5 data directory", { + project <- create_weather_test_project() + on.exit(unlink(project$db_file)) + + era5_dir <- system.file("extdata", "era5", package = "swatplusEditoR") + skip_if(nchar(era5_dir) == 0, "ERA5 data not installed") + + set_weather_dir(project, era5_dir) + + config <- get_project_config(project) + expect_equal(normalizePath(config$weather_data_dir), + normalizePath(era5_dir)) +}) + +test_that("set_weather_dir rejects non-existent directory", { + project <- create_weather_test_project() + on.exit(unlink(project$db_file)) + + expect_error(set_weather_dir(project, "/nonexistent/path"), + "does not exist") +}) + +# ------------------------------------------------------------------- +# Tests for get_wgn_cfsr_world +# ------------------------------------------------------------------- + +#' Create a minimal swatplus_wgn.sqlite with wgn_cfsr_world + _mon tables +create_mock_wgn_db <- function() { + wgn_db_path <- tempfile(fileext = ".sqlite") + con <- DBI::dbConnect(RSQLite::SQLite(), wgn_db_path) + on.exit(DBI::dbDisconnect(con)) + + DBI::dbExecute(con, "CREATE TABLE wgn_cfsr_world ( + id INTEGER PRIMARY KEY, + name TEXT NOT NULL, + lat REAL NOT NULL, + lon REAL NOT NULL, + elev REAL NOT NULL, + rain_yrs INTEGER NOT NULL + )") + + DBI::dbExecute(con, "CREATE TABLE wgn_cfsr_world_mon ( + id INTEGER PRIMARY KEY, + wgn_id INTEGER NOT NULL, + month INTEGER NOT NULL, + tmp_max_ave REAL, tmp_min_ave REAL, tmp_max_sd REAL, tmp_min_sd REAL, + pcp_ave REAL, pcp_sd REAL, pcp_skew REAL, + wet_dry REAL, wet_wet REAL, pcp_days REAL, pcp_hhr REAL, + slr_ave REAL, dew_ave REAL, wnd_ave REAL + )") + + # Insert two WGN stations + DBI::dbExecute(con, "INSERT INTO wgn_cfsr_world VALUES + (1, 'wgn_s1', -38.1, 176.3, 350.0, 30), + (2, 'wgn_s2', -39.5, 177.0, 120.0, 25)") + + # Insert 12 monthly rows for each station (use simple placeholder values) + for (wgn_id in 1:2) { + for (month in 1:12) { + DBI::dbExecute(con, + "INSERT INTO wgn_cfsr_world_mon + (wgn_id, month, tmp_max_ave, tmp_min_ave, tmp_max_sd, tmp_min_sd, + pcp_ave, pcp_sd, pcp_skew, wet_dry, wet_wet, pcp_days, pcp_hhr, + slr_ave, dew_ave, wnd_ave) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", + params = list(wgn_id, month, + 20.0 + month * 0.1, 10.0 + month * 0.1, + 2.0, 1.5, + 50.0, 10.0, 0.5, + 0.3, 0.4, 8.0, 15.0, + 18.0, 12.0, 3.0)) + } + } + + wgn_db_path +} + +test_that("get_wgn_cfsr_world inserts WGN data into weather_wgn_cli", { + project <- create_weather_test_project() + wgn_db <- create_mock_wgn_db() + on.exit({ + unlink(project$db_file) + unlink(wgn_db) + }) + + # Two stations - both nearest to wgn_s1 (-38.1, 176.3) + stations <- data.frame( + lat = c(-38.1, -38.15), + lon = c(176.3, 176.35), + stringsAsFactors = FALSE + ) + + result <- get_wgn_cfsr_world(project, stations, wgn_db) + + # Returns project invisibly + expect_identical(result, project) + + # One unique WGN site should have been written + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + on.exit(DBI::dbDisconnect(con), add = TRUE) + + wgn_rows <- DBI::dbGetQuery(con, "SELECT * FROM weather_wgn_cli") + expect_equal(nrow(wgn_rows), 1) + expect_equal(wgn_rows$name[1], "wgn_s1") + expect_equal(wgn_rows$rain_yrs[1], 30) + + mon_rows <- DBI::dbGetQuery(con, "SELECT * FROM weather_wgn_cli_mon") + expect_equal(nrow(mon_rows), 12) +}) + +test_that("get_wgn_cfsr_world writes two unique WGN sites when stations differ", { + project <- create_weather_test_project() + wgn_db <- create_mock_wgn_db() + on.exit({ + unlink(project$db_file) + unlink(wgn_db) + }) + + # One station near wgn_s1, one near wgn_s2 + stations <- data.frame( + lat = c(-38.1, -39.5), + lon = c(176.3, 177.0), + stringsAsFactors = FALSE + ) + + get_wgn_cfsr_world(project, stations, wgn_db) + + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + on.exit(DBI::dbDisconnect(con), add = TRUE) + + wgn_rows <- DBI::dbGetQuery(con, "SELECT * FROM weather_wgn_cli ORDER BY id") + expect_equal(nrow(wgn_rows), 2) + expect_equal(sort(wgn_rows$name), c("wgn_s1", "wgn_s2")) + + mon_rows <- DBI::dbGetQuery(con, "SELECT * FROM weather_wgn_cli_mon") + expect_equal(nrow(mon_rows), 24) # 12 months x 2 stations +}) + +test_that("get_wgn_cfsr_world is idempotent (INSERT OR IGNORE)", { + project <- create_weather_test_project() + wgn_db <- create_mock_wgn_db() + on.exit({ + unlink(project$db_file) + unlink(wgn_db) + }) + + stations <- data.frame(lat = -38.1, lon = 176.3, stringsAsFactors = FALSE) + + get_wgn_cfsr_world(project, stations, wgn_db) + get_wgn_cfsr_world(project, stations, wgn_db) # second call must not duplicate + + con <- DBI::dbConnect(RSQLite::SQLite(), project$db_file) + on.exit(DBI::dbDisconnect(con), add = TRUE) + + expect_equal(nrow(DBI::dbGetQuery(con, "SELECT * FROM weather_wgn_cli")), 1) + expect_equal(nrow(DBI::dbGetQuery(con, "SELECT * FROM weather_wgn_cli_mon")), 12) +}) + +test_that("get_wgn_cfsr_world validates inputs", { + project <- create_weather_test_project() + wgn_db <- create_mock_wgn_db() + on.exit({ + unlink(project$db_file) + unlink(wgn_db) + }) + + # Not a data.frame + expect_error(get_wgn_cfsr_world(project, "not_a_df", wgn_db), + "non-empty data.frame") + + # Empty data.frame + expect_error(get_wgn_cfsr_world(project, data.frame(), wgn_db), + "non-empty data.frame") + + # Missing required columns + expect_error( + get_wgn_cfsr_world(project, data.frame(x = 1), wgn_db), + "missing required columns" + ) + + # Non-existent WGN database + stations <- data.frame(lat = -38.1, lon = 176.3) + expect_error(get_wgn_cfsr_world(project, stations, "/no/such/file.sqlite"), + "not found") +}) + diff --git a/src/r-api/swatplusEditoR/tests/testthat/test-write_files.R b/src/r-api/swatplusEditoR/tests/testthat/test-write_files.R new file mode 100644 index 00000000..de73932b --- /dev/null +++ b/src/r-api/swatplusEditoR/tests/testthat/test-write_files.R @@ -0,0 +1,1033 @@ +# Test file writing functions +library(testthat) +create_write_test_project <- function() { + db_file <- tempfile(fileext = ".sqlite") + project_dir <- tempdir() + + dem <- system.file("extdata", "ravn_dem.tif", package = "rQSWATPlus") + landuse <- system.file("extdata", "ravn_landuse.tif", package = "rQSWATPlus") + soil <- system.file("extdata", "ravn_soil.tif", package = "rQSWATPlus") + lu_lookup <- system.file("extdata", "ravn_landuse.csv", package = "rQSWATPlus") + soil_lookup <- system.file("extdata", "ravn_soil.csv", package = "rQSWATPlus") + outlet <- system.file("extdata", "ravn_outlet.shp", package = "rQSWATPlus") + + + project <- rQSWATPlus::qswat_setup( + project_dir = project_dir, + dem_file = dem, + landuse_file = landuse, + soil_file = soil, + landuse_lookup = lu_lookup, + soil_lookup = soil_lookup, + outlet_file = outlet, + db_file = db_file + ) |> + rQSWATPlus::qswat_delineate(threshold = 500, quiet = TRUE) |> + rQSWATPlus::qswat_create_streams() |> + rQSWATPlus::qswat_create_hrus() |> + rQSWATPlus::qswat_write_database(overwrite = TRUE) |> + # Add simulation time + set_simulation_time(day_start = 1, yrc_start = 2000, + day_end = 365, yrc_end = 2010) + + project +} + +test_that("write_config_files writes basic files", { + project <- create_write_test_project() + output_dir <- tempfile("txtinout_") + on.exit({ + unlink(project$db_file) + unlink(output_dir, recursive = TRUE) + }) + + write_config_files(project, output_dir = output_dir) + + # Check files were created + expect_true(file.exists(file.path(output_dir, "time.sim"))) + expect_true(file.exists(file.path(output_dir, "weather-sta.cli"))) + expect_true(file.exists(file.path(output_dir, "file.cio"))) + + # Check time.sim content - now uses SWAT+ format with meta line + time_lines <- readLines(file.path(output_dir, "time.sim")) + expect_true(length(time_lines) >= 2) + # Meta line is first, then headers, then data + time_content <- paste(time_lines, collapse = " ") + expect_true(grepl("2000", time_content)) + expect_true(grepl("2010", time_content)) + + # Check weather station file content + weather_lines <- readLines(file.path(output_dir, "weather-sta.cli")) + expect_true(length(weather_lines) >= 3) + weather_content <- paste(weather_lines, collapse = " ") + expect_true(grepl("sta1", weather_content)) + expect_true(grepl("sta2", weather_content)) +}) + +test_that("write_config_files updates project config", { + project <- create_write_test_project() + output_dir <- tempfile("txtinout_") + on.exit({ + unlink(project$db_file) + unlink(output_dir, recursive = TRUE) + }) + + write_config_files(project, output_dir = output_dir) + + config <- get_project_config(project) + expect_false(is.null(config$input_files_last_written)) +}) + +test_that("write_config_files writes proper SWAT+ formatting", { + project <- create_write_test_project() + output_dir <- tempfile("txtinout_") + on.exit({ + unlink(project$db_file) + unlink(output_dir, recursive = TRUE) + }) + + write_config_files(project, output_dir = output_dir) + + # Check meta line in time.sim + time_lines <- readLines(file.path(output_dir, "time.sim")) + expect_true(grepl("^time\\.sim: written by SWAT\\+ editor", time_lines[1])) + + # Check weather-sta.cli has proper column headers + weather_lines <- readLines(file.path(output_dir, "weather-sta.cli")) + expect_true(grepl("name", weather_lines[2])) + expect_true(grepl("wgn", weather_lines[2])) + expect_true(grepl("pcp", weather_lines[2])) + + # Check file.cio meta line + cio_lines <- readLines(file.path(output_dir, "file.cio")) + expect_true(grepl("^file\\.cio: written by SWAT\\+ editor", cio_lines[1])) +}) + +test_that("write_config_files defaults to native R writing", { + # Verify that without editor_exe or api_url, it writes natively + project <- create_write_test_project() + output_dir <- tempfile("txtinout_") + on.exit({ + unlink(project$db_file) + unlink(output_dir, recursive = TRUE) + }) + + # Call without exe or api - should write directly + expect_message( + write_config_files(project, output_dir = output_dir), + "Writing SWAT\\+ input files" + ) + expect_true(file.exists(file.path(output_dir, "time.sim"))) + expect_true(file.exists(file.path(output_dir, "file.cio"))) +}) + +test_that("swat_write_table writes generic table correctly", { + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + DBI::dbExecute(con, "CREATE TABLE test_tbl ( + id INTEGER PRIMARY KEY, name TEXT, val REAL, cnt INTEGER)") + DBI::dbExecute(con, "INSERT INTO test_tbl VALUES (1, 'alpha', 1.5, 10)") + DBI::dbExecute(con, "INSERT INTO test_tbl VALUES (2, 'beta', 2.5, 20)") + + output_dir <- tempfile("out_") + dir.create(output_dir) + fp <- file.path(output_dir, "test.tbl") + + swatplusEditoR:::swat_write_table(con, "test_tbl", fp, + version = "3.2", swat_version = "60", + ignore_id = TRUE) + + DBI::dbDisconnect(con) + + lines <- readLines(fp) + # Meta line + expect_true(grepl("test.tbl: written by SWAT\\+ editor", lines[1])) + # Data should contain alpha and beta + content <- paste(lines, collapse = " ") + expect_true(grepl("alpha", content)) + expect_true(grepl("beta", content)) + + unlink(output_dir, recursive = TRUE) +}) + +# ------------------------------------------------------------------- +# Tests for ensure_write_tables +# ------------------------------------------------------------------- + +test_that("ensure_write_tables creates all required tables", { + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + # Start with a minimal database: only project_config + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + DBI::dbExecute(con, " + CREATE TABLE project_config ( + id INTEGER PRIMARY KEY, project_name TEXT, + editor_version TEXT, input_files_dir TEXT DEFAULT 'TxtInOut' + )") + DBI::dbExecute(con, "INSERT INTO project_config (project_name) VALUES ('test')") + DBI::dbDisconnect(con) + + # Open via package function and run ensure_write_tables + con <- swatplusEditoR:::open_project_db(db_path) + swatplusEditoR:::ensure_write_tables(con) + + tables <- DBI::dbListTables(con) + + # Check critical tables that must exist + critical <- c( + "time_sim", "print_prt", "print_prt_object", "object_prt", + "object_cnt", "constituents_cs", + "codes_bsn", "parameters_bsn", + "file_cio_classification", "file_cio", + "weather_sta_cli", "weather_wgn_cli", + "hru_con", "channel_con", "reservoir_con", "aquifer_con", + "hydrology_hyd", "topography_hyd", + "soils_sol", "nutrients_sol" + ) + for (tbl in critical) { + expect_true(tbl %in% tables, info = paste("Missing table:", tbl)) + } + + DBI::dbDisconnect(con) +}) + +test_that("ensure_write_tables populates default data", { + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + DBI::dbExecute(con, " + CREATE TABLE project_config ( + id INTEGER PRIMARY KEY, project_name TEXT, + editor_version TEXT, input_files_dir TEXT DEFAULT 'TxtInOut' + )") + DBI::dbExecute(con, "INSERT INTO project_config (project_name) VALUES ('myproj')") + DBI::dbDisconnect(con) + + con <- swatplusEditoR:::open_project_db(db_path) + swatplusEditoR:::ensure_write_tables(con) + + # time_sim should have a default row + ts <- DBI::dbGetQuery(con, "SELECT * FROM time_sim") + expect_equal(nrow(ts), 1) + expect_equal(ts$yrc_start, 1980L) + expect_equal(ts$step, 0L) + + # print_prt should have a default row + pp <- DBI::dbGetQuery(con, "SELECT * FROM print_prt") + expect_equal(nrow(pp), 1) + expect_equal(pp$nyskip, 1L) + expect_equal(pp$crop_yld, "b") + + # print_prt_object should have 52 rows + ppo <- DBI::dbGetQuery(con, "SELECT * FROM print_prt_object") + expect_equal(nrow(ppo), 52) + + # object_cnt should have project name + + oc <- DBI::dbGetQuery(con, "SELECT * FROM object_cnt") + expect_equal(nrow(oc), 1) + expect_equal(oc$name, "myproj") + + # codes_bsn should have defaults + cb <- DBI::dbGetQuery(con, "SELECT * FROM codes_bsn") + expect_equal(nrow(cb), 1) + expect_equal(cb$pet, 1L) + expect_equal(cb$atmo_dep, "a") + expect_equal(cb$gwflow, 0L) + + # parameters_bsn should have defaults + pb <- DBI::dbGetQuery(con, "SELECT * FROM parameters_bsn") + expect_equal(nrow(pb), 1) + expect_equal(pb$lai_noevap, 3.0) + expect_equal(pb$co2, 400.0) + + # file_cio_classification should have 31 rows + fcc <- DBI::dbGetQuery(con, "SELECT * FROM file_cio_classification") + expect_equal(nrow(fcc), 31) + expect_true("simulation" %in% fcc$name) + expect_true("basin" %in% fcc$name) + expect_true("climate" %in% fcc$name) + + # file_cio should have entries + fc <- DBI::dbGetQuery(con, "SELECT * FROM file_cio") + expect_true(nrow(fc) > 100) + + DBI::dbDisconnect(con) +}) + +test_that("ensure_write_tables is idempotent", { + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + DBI::dbExecute(con, " + CREATE TABLE project_config ( + id INTEGER PRIMARY KEY, project_name TEXT, + editor_version TEXT, input_files_dir TEXT DEFAULT 'TxtInOut' + )") + DBI::dbExecute(con, "INSERT INTO project_config (project_name) VALUES ('test')") + DBI::dbDisconnect(con) + + con <- swatplusEditoR:::open_project_db(db_path) + + # Run twice - should not duplicate data + swatplusEditoR:::ensure_write_tables(con) + swatplusEditoR:::ensure_write_tables(con) + + expect_equal( + DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM time_sim")$n, 1L) + expect_equal( + DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM print_prt")$n, 1L) + expect_equal( + DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM print_prt_object")$n, 52L) + expect_equal( + DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM object_cnt")$n, 1L) + expect_equal( + DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM codes_bsn")$n, 1L) + expect_equal( + DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM parameters_bsn")$n, 1L) + expect_equal( + DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM file_cio_classification")$n, 31L) + + DBI::dbDisconnect(con) +}) + +test_that("ensure_write_tables does not overwrite existing data", { + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + DBI::dbExecute(con, " + CREATE TABLE project_config ( + id INTEGER PRIMARY KEY, project_name TEXT, + editor_version TEXT, input_files_dir TEXT DEFAULT 'TxtInOut' + )") + DBI::dbExecute(con, "INSERT INTO project_config (project_name) VALUES ('test')") + # Pre-create time_sim with custom values + DBI::dbExecute(con, " + CREATE TABLE time_sim ( + id INTEGER PRIMARY KEY, + day_start INTEGER, yrc_start INTEGER, + day_end INTEGER, yrc_end INTEGER, step INTEGER + )") + DBI::dbExecute(con, "INSERT INTO time_sim (day_start, yrc_start, day_end, yrc_end, step) + VALUES (1, 2000, 365, 2020, 0)") + DBI::dbDisconnect(con) + + con <- swatplusEditoR:::open_project_db(db_path) + swatplusEditoR:::ensure_write_tables(con) + + # Custom time_sim should be preserved + ts <- DBI::dbGetQuery(con, "SELECT * FROM time_sim") + expect_equal(nrow(ts), 1) + expect_equal(ts$yrc_start, 2000L) + expect_equal(ts$yrc_end, 2020L) + + DBI::dbDisconnect(con) +}) + +test_that("write_config_files works on minimal db with ensure_write_tables", { + # Create a bare-minimum project (no tables except project_config + weather) + db_path <- tempfile(fileext = ".sqlite") + project_dir <- tempdir() + output_dir <- tempfile("txtinout_") + on.exit({ + unlink(db_path) + unlink(output_dir, recursive = TRUE) + }) + + project <- list( + project_dir = project_dir, + db_file = db_path, + hru_data = NULL, + basin_data = NULL + ) + + project <- create_project_db(project, db_path, overwrite = TRUE) + set_simulation_time(project, day_start = 1, yrc_start = 2005, + day_end = 365, yrc_end = 2015) + + # Write config files - should auto-create all missing tables + write_config_files(project, output_dir = output_dir) + + # Check that critical output files exist + expect_true(file.exists(file.path(output_dir, "time.sim"))) + expect_true(file.exists(file.path(output_dir, "file.cio"))) + expect_true(file.exists(file.path(output_dir, "codes.bsn"))) + expect_true(file.exists(file.path(output_dir, "parameters.bsn"))) + expect_true(file.exists(file.path(output_dir, "print.prt"))) + expect_true(file.exists(file.path(output_dir, "object.cnt"))) + + # Verify file.cio references all sections (not just static fallback) + cio_lines <- readLines(file.path(output_dir, "file.cio")) + cio_content <- paste(cio_lines, collapse = " ") + expect_true(grepl("simulation", cio_content)) + expect_true(grepl("basin", cio_content)) + expect_true(grepl("climate", cio_content)) + expect_true(grepl("time\\.sim", cio_content)) + expect_true(grepl("codes\\.bsn", cio_content)) +}) + +# ------------------------------------------------------------------- +# Test for sequential ID bug fix (matching Python hru.py / reservoir.py fix) +# ------------------------------------------------------------------- + +test_that("swat_write_table uses sequential row numbers for id column", { + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + # Create table with non-sequential IDs (simulating gaps from deletions) + DBI::dbExecute(con, "CREATE TABLE test_gap ( + id INTEGER PRIMARY KEY, name TEXT, val REAL)") + DBI::dbExecute(con, "INSERT INTO test_gap VALUES (5, 'alpha', 1.5)") + DBI::dbExecute(con, "INSERT INTO test_gap VALUES (10, 'beta', 2.5)") + DBI::dbExecute(con, "INSERT INTO test_gap VALUES (15, 'gamma', 3.5)") + + output_dir <- tempfile("out_") + dir.create(output_dir) + fp <- file.path(output_dir, "test_gap.tbl") + + # Write WITH id column (ignore_id = FALSE) + swatplusEditoR:::swat_write_table(con, "test_gap", fp, + version = "3.2", swat_version = "60", + ignore_id = FALSE) + + DBI::dbDisconnect(con) + + lines <- readLines(fp) + # Line 1 = meta, line 2 = header, lines 3-5 = data + expect_true(length(lines) >= 5) + + # The id values should be sequential 1, 2, 3 - not the DB ids 5, 10, 15 + # Extract the first number from each data line + data_lines <- lines[3:5] + ids <- as.integer(trimws(substring(data_lines, 1, 8))) + expect_equal(ids, c(1L, 2L, 3L)) + + # Also verify names are there + content <- paste(lines, collapse = " ") + expect_true(grepl("alpha", content)) + expect_true(grepl("beta", content)) + expect_true(grepl("gamma", content)) + + unlink(output_dir, recursive = TRUE) +}) + +# ------------------------------------------------------------------- +# Comprehensive test for writing all necessary simulation files +# ------------------------------------------------------------------- + +test_that("write_config_files produces all necessary files for SWAT+ simulation", { + project <- create_write_test_project() + output_dir <- tempfile("txtinout_full_") + on.exit({ + unlink(project$db_file) + unlink(output_dir, recursive = TRUE) + }) + + # Set weather dir to ERA5 data from package + era5_dir <- system.file("extdata", "era5", package = "swatplusEditoR") + skip_if(nchar(era5_dir) == 0, "ERA5 data not installed") + + set_weather_dir(project, era5_dir) + + # Write all config files with weather data + write_config_files(project, output_dir = output_dir, weather_dir = era5_dir) + + # === Simulation section files === + expect_true(file.exists(file.path(output_dir, "time.sim")), + info = "time.sim is required for SWAT+ simulation") + expect_true(file.exists(file.path(output_dir, "print.prt")), + info = "print.prt is required for SWAT+ simulation") + expect_true(file.exists(file.path(output_dir, "object.cnt")), + info = "object.cnt is required for SWAT+ simulation") + + # === Basin section files === + expect_true(file.exists(file.path(output_dir, "codes.bsn")), + info = "codes.bsn is required for SWAT+ simulation") + expect_true(file.exists(file.path(output_dir, "parameters.bsn")), + info = "parameters.bsn is required for SWAT+ simulation") + + # === Climate section files === + expect_true(file.exists(file.path(output_dir, "weather-sta.cli")), + info = "weather-sta.cli is required for SWAT+ simulation") + + # === Master config file === + expect_true(file.exists(file.path(output_dir, "file.cio")), + info = "file.cio is the master config, required for SWAT+") + + # === Weather data files (copied from ERA5 dir) === + expect_true(file.exists(file.path(output_dir, "pcp.cli")), + info = "pcp.cli weather data should be copied") + expect_true(file.exists(file.path(output_dir, "tmp.cli")), + info = "tmp.cli weather data should be copied") + expect_true(file.exists(file.path(output_dir, "slr.cli")), + info = "slr.cli weather data should be copied") + expect_true(file.exists(file.path(output_dir, "hmd.cli")), + info = "hmd.cli weather data should be copied") + expect_true(file.exists(file.path(output_dir, "wnd.cli")), + info = "wnd.cli weather data should be copied") + + # === Verify file contents === + # time.sim should contain correct simulation period + time_content <- paste(readLines(file.path(output_dir, "time.sim")), + collapse = " ") + expect_true(grepl("2000", time_content)) + expect_true(grepl("2010", time_content)) + + # weather-sta.cli should reference our stations + weather_content <- paste(readLines(file.path(output_dir, "weather-sta.cli")), + collapse = " ") + expect_true(grepl("sta1", weather_content)) + expect_true(grepl("sta2", weather_content)) + + # file.cio should reference simulation and basin sections + cio_content <- paste(readLines(file.path(output_dir, "file.cio")), + collapse = " ") + expect_true(grepl("simulation", cio_content)) + expect_true(grepl("basin", cio_content)) + expect_true(grepl("climate", cio_content)) + expect_true(grepl("connect", cio_content)) + expect_true(grepl("time\\.sim", cio_content)) + expect_true(grepl("codes\\.bsn", cio_content)) + expect_true(grepl("weather-sta\\.cli", cio_content)) + + # codes.bsn should contain properly formatted default values + codes_lines <- readLines(file.path(output_dir, "codes.bsn")) + expect_true(grepl("^codes\\.bsn: written by SWAT\\+ editor", codes_lines[1])) + expect_true(length(codes_lines) >= 3, info = "codes.bsn should have meta + header + data") + + # parameters.bsn should contain properly formatted default values + params_lines <- readLines(file.path(output_dir, "parameters.bsn")) + expect_true(grepl("^parameters\\.bsn: written by SWAT\\+ editor", params_lines[1])) + expect_true(length(params_lines) >= 3, info = "parameters.bsn should have meta + header + data") + + # print.prt should have proper structure + prt_lines <- readLines(file.path(output_dir, "print.prt")) + expect_true(grepl("^print\\.prt: written by SWAT\\+ editor", prt_lines[1])) + + # object.cnt should have object counts + cnt_lines <- readLines(file.path(output_dir, "object.cnt")) + expect_true(grepl("^object\\.cnt: written by SWAT\\+ editor", cnt_lines[1])) + + # Copied weather files should have correct content + pcp_content <- readLines(file.path(output_dir, "pcp.cli")) + expect_true(grepl("pcp\\.cli", pcp_content[1])) + expect_true(grepl("IDera5\\.pcp", pcp_content[3])) +}) + +test_that("write_config_files with weather_dir copies ERA5 climate files", { + project <- create_write_test_project() + output_dir <- tempfile("txtinout_weather_") + on.exit({ + unlink(project$db_file) + unlink(output_dir, recursive = TRUE) + }) + + era5_dir <- system.file("extdata", "era5", package = "swatplusEditoR") + skip_if(nchar(era5_dir) == 0, "ERA5 data not installed") + + write_config_files(project, output_dir = output_dir, weather_dir = era5_dir) + + # All ERA5 files should be copied to output + for (f in c("pcp.cli", "tmp.cli", "slr.cli", "hmd.cli", "wnd.cli")) { + expect_true(file.exists(file.path(output_dir, f)), + info = paste("ERA5 file not copied:", f)) + # Verify it's a faithful copy + src_content <- readLines(file.path(era5_dir, f)) + dst_content <- readLines(file.path(output_dir, f)) + expect_equal(src_content, dst_content, + info = paste("Content mismatch for:", f)) + } +}) + +# ------------------------------------------------------------------- +# Tests for file.cio completeness and naming consistency +# ------------------------------------------------------------------- + +test_that("file.cio references use consistent file names matching write specs", { + # Verify that file names in file_cio table match what write_config_files generates + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + DBI::dbExecute(con, " + CREATE TABLE project_config ( + id INTEGER PRIMARY KEY, project_name TEXT, + editor_version TEXT, input_files_dir TEXT DEFAULT 'TxtInOut' + )") + DBI::dbExecute(con, "INSERT INTO project_config (project_name) VALUES ('test')") + DBI::dbDisconnect(con) + + con <- swatplusEditoR:::open_project_db(db_path) + swatplusEditoR:::ensure_write_tables(con) + + # Verify pesticide file name matches (.pst not .pes) + pst_file <- DBI::dbGetQuery(con, + "SELECT f.file_name FROM file_cio f + JOIN file_cio_classification c ON f.classification_id = c.id + WHERE c.name = 'hru_parm_db' AND f.order_in_class = 4") + expect_equal(pst_file$file_name, "pesticide.pst", + info = "pesticide file in file_cio should be .pst not .pes") + + # Verify cons_prac file name matches + cp_file <- DBI::dbGetQuery(con, + "SELECT f.file_name FROM file_cio f + JOIN file_cio_classification c ON f.classification_id = c.id + WHERE c.name = 'lum' AND f.order_in_class = 4") + expect_equal(cp_file$file_name, "cons_prac.lum", + info = "conservation practice file should be cons_prac.lum") + + DBI::dbDisconnect(con) +}) + +test_that("file.cio has all 31 classification sections", { + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + DBI::dbExecute(con, " + CREATE TABLE project_config ( + id INTEGER PRIMARY KEY, project_name TEXT, + editor_version TEXT, input_files_dir TEXT DEFAULT 'TxtInOut' + )") + DBI::dbExecute(con, "INSERT INTO project_config (project_name) VALUES ('test')") + DBI::dbDisconnect(con) + + con <- swatplusEditoR:::open_project_db(db_path) + swatplusEditoR:::ensure_write_tables(con) + + fcc <- DBI::dbGetQuery(con, "SELECT * FROM file_cio_classification ORDER BY id") + expect_equal(nrow(fcc), 31) + + # Verify all expected sections exist + expected_sections <- c( + "simulation", "basin", "climate", "connect", "channel", + "reservoir", "routing_unit", "hru", "exco", "recall", + "dr", "aquifer", "herd", "water_rights", "link", + "hydrology", "structural", "hru_parm_db", "ops", "lum", + "chg", "init", "soils", "decision_table", "regions", + "pcp_path", "tmp_path", "slr_path", "hmd_path", "wnd_path", + "out_path") + + for (section in expected_sections) { + expect_true(section %in% fcc$name, + info = paste("Missing file_cio section:", section)) + } + + DBI::dbDisconnect(con) +}) + +test_that("file.cio section file counts match expected", { + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + DBI::dbExecute(con, " + CREATE TABLE project_config ( + id INTEGER PRIMARY KEY, project_name TEXT, + editor_version TEXT, input_files_dir TEXT DEFAULT 'TxtInOut' + )") + DBI::dbExecute(con, "INSERT INTO project_config (project_name) VALUES ('test')") + DBI::dbDisconnect(con) + + con <- swatplusEditoR:::open_project_db(db_path) + swatplusEditoR:::ensure_write_tables(con) + + # Check file counts per section + counts <- DBI::dbGetQuery(con, + "SELECT c.name, COUNT(f.id) as cnt + FROM file_cio_classification c + LEFT JOIN file_cio f ON f.classification_id = c.id + GROUP BY c.name ORDER BY c.id") + + expected_counts <- list( + simulation = 5, basin = 2, climate = 9, connect = 13, + channel = 8, reservoir = 8, routing_unit = 4, hru = 2, + exco = 6, recall = 1, dr = 6, aquifer = 2, + herd = 3, water_rights = 3, link = 2, hydrology = 3, + structural = 5, hru_parm_db = 10, ops = 6, lum = 5, + chg = 9, init = 11, soils = 3, decision_table = 4, + regions = 17 + ) + + for (section in names(expected_counts)) { + actual <- counts$cnt[counts$name == section] + expect_equal(actual, expected_counts[[section]], + info = paste("Wrong file count for section:", section, + "- expected", expected_counts[[section]], + "got", actual)) + } + + DBI::dbDisconnect(con) +}) + +# ------------------------------------------------------------------- +# Tests for new tables created by ensure_write_tables +# ------------------------------------------------------------------- + +test_that("ensure_write_tables creates all missing section tables", { + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + DBI::dbExecute(con, " + CREATE TABLE project_config ( + id INTEGER PRIMARY KEY, project_name TEXT, + editor_version TEXT, input_files_dir TEXT DEFAULT 'TxtInOut' + )") + DBI::dbExecute(con, "INSERT INTO project_config (project_name) VALUES ('test')") + DBI::dbDisconnect(con) + + con <- swatplusEditoR:::open_project_db(db_path) + swatplusEditoR:::ensure_write_tables(con) + + tables <- DBI::dbListTables(con) + + # Check that new tables from recent additions exist + new_tables <- c( + # Water rights + "element_wro", "define_wro", + # Link + "chan_aqu_lin", + # Channel + "temperature_cha", + # Init (additional) + "hmet_hru_ini", "hmet_water_ini", "salt_hru_ini", "salt_water_ini", + # DR (should already exist) + "dr_pest_del", "dr_path_del", "dr_hmet_del", "dr_salt_del" + ) + + for (tbl in new_tables) { + expect_true(tbl %in% tables, + info = paste("Missing table:", tbl)) + } + + DBI::dbDisconnect(con) +}) + +# ------------------------------------------------------------------- +# Full integration test: write_config_files generates all file.cio files +# ------------------------------------------------------------------- + +test_that("write_config_files generates files for all file.cio sections", { + # Create a project with data in every section to verify full file generation + db_path <- tempfile(fileext = ".sqlite") + project_dir <- tempdir() + output_dir <- tempfile("txtinout_full_cio_") + on.exit({ + unlink(db_path) + unlink(output_dir, recursive = TRUE) + }) + + project <- list( + project_dir = project_dir, + db_file = db_path, + hru_data = NULL, + basin_data = NULL + ) + + project <- create_project_db(project, db_path, overwrite = TRUE) + set_simulation_time(project, day_start = 1, yrc_start = 2000, + day_end = 365, yrc_end = 2010) + + # Add weather stations + stations <- data.frame( + name = c("sta1"), lat = c(-38.1), lon = c(176.3), + pcp = c("pcp1.cli"), tmp = c("tmp1.cli"), + slr = c("slr1.cli"), hmd = c("hmd1.cli"), + wnd = c("wnd1.cli"), + stringsAsFactors = FALSE + ) + add_weather_stations(project, stations) + + # Open DB directly and insert minimal data into key tables + # First ensure all tables exist + con <- swatplusEditoR:::open_project_db(db_path) + swatplusEditoR:::ensure_write_tables(con) + + # Insert data into connect tables for connect section + DBI::dbExecute(con, "INSERT INTO hru_con (name, lat, lon, elev, area, wst_id, obj_id) + VALUES ('hru1', -38.1, 176.3, 100, 10.0, 1, 1)") + DBI::dbExecute(con, "INSERT INTO channel_con (name, lat, lon, elev, area, wst_id, obj_id) + VALUES ('cha1', -38.1, 176.3, 100, 1.0, 1, 1)") + DBI::dbExecute(con, "INSERT INTO aquifer_con (name, lat, lon, elev, area, wst_id, obj_id) + VALUES ('aqu1', -38.1, 176.3, 100, 10.0, 1, 1)") + + # Insert data into channel tables + DBI::dbExecute(con, "INSERT INTO initial_cha (name) VALUES ('init_cha1')") + DBI::dbExecute(con, "INSERT INTO hydrology_cha (name, wd, dp, slp, len, mann, k) + VALUES ('hyd_cha1', 5.0, 1.0, 0.01, 100, 0.05, 0.01)") + DBI::dbExecute(con, "INSERT INTO channel_cha (name, init_id, hyd_id) + VALUES ('cha1', 1, 1)") + + # Insert data into hydrology tables + DBI::dbExecute(con, "INSERT INTO hydrology_hyd (name) VALUES ('hyd1')") + DBI::dbExecute(con, "INSERT INTO topography_hyd (name, slp, slp_len) + VALUES ('topo1', 0.05, 50.0)") + + # Insert data into aquifer tables + DBI::dbExecute(con, "INSERT INTO initial_aqu (name) VALUES ('init_aqu1')") + DBI::dbExecute(con, "INSERT INTO aquifer_aqu (name, init_id) VALUES ('aqu1', 1)") + + # Insert data into HRU tables + DBI::dbExecute(con, "INSERT INTO hru_data_hru (name) VALUES ('hru1')") + + # Insert data into soils tables + DBI::dbExecute(con, "INSERT INTO soils_sol (name) VALUES ('soil1')") + DBI::dbExecute(con, "INSERT INTO nutrients_sol (name) VALUES ('nut1')") + + # Insert into LUM tables + DBI::dbExecute(con, "INSERT INTO landuse_lum (name) VALUES ('agrl')") + + DBI::dbDisconnect(con) + + # Write all config files + write_config_files(project, output_dir = output_dir) + + # Verify all expected files exist + # -- Simulation -- + expect_true(file.exists(file.path(output_dir, "time.sim"))) + expect_true(file.exists(file.path(output_dir, "print.prt"))) + expect_true(file.exists(file.path(output_dir, "object.cnt"))) + + # -- Basin -- + expect_true(file.exists(file.path(output_dir, "codes.bsn"))) + expect_true(file.exists(file.path(output_dir, "parameters.bsn"))) + + # -- Climate -- + expect_true(file.exists(file.path(output_dir, "weather-sta.cli"))) + + # -- Connect (written because we have data) -- + expect_true(file.exists(file.path(output_dir, "hru.con")) || + file.exists(file.path(output_dir, "hru-lte.con")), + info = "At least one connect file should exist") + + # -- Channel (written because we have data) -- + expect_true(file.exists(file.path(output_dir, "initial.cha")), + info = "initial.cha should exist with channel data") + expect_true(file.exists(file.path(output_dir, "hydrology.cha")), + info = "hydrology.cha should exist with channel data") + + # -- Hydrology -- + expect_true(file.exists(file.path(output_dir, "hydrology.hyd")), + info = "hydrology.hyd should exist with hydro data") + expect_true(file.exists(file.path(output_dir, "topography.hyd")), + info = "topography.hyd should exist with topo data") + + # -- Aquifer -- + expect_true(file.exists(file.path(output_dir, "initial.aqu")), + info = "initial.aqu should exist with aquifer data") + expect_true(file.exists(file.path(output_dir, "aquifer.aqu")), + info = "aquifer.aqu should exist with aquifer data") + + # -- HRU -- + expect_true(file.exists(file.path(output_dir, "hru-data.hru")), + info = "hru-data.hru should exist with HRU data") + + # -- Soils -- + expect_true(file.exists(file.path(output_dir, "soils.sol")), + info = "soils.sol should exist with soils data") + expect_true(file.exists(file.path(output_dir, "nutrients.sol")), + info = "nutrients.sol should exist with soils data") + + # -- LUM -- + expect_true(file.exists(file.path(output_dir, "landuse.lum")), + info = "landuse.lum should exist with LUM data") + + # -- file.cio (always) -- + expect_true(file.exists(file.path(output_dir, "file.cio"))) + + # Verify file.cio includes all key sections with proper references + cio_content <- paste(readLines(file.path(output_dir, "file.cio")), + collapse = "\n") + # Sections that should appear in file.cio + for (section in c("simulation", "basin", "climate", "connect", + "channel", "hydrology", "aquifer", "hru", + "soils", "lum")) { + expect_true(grepl(section, cio_content), + info = paste("file.cio missing section:", section)) + } + + # Verify generated files have correct format + # All written files should have meta line as first line + written_files <- list.files(output_dir, pattern = "\\.(sim|prt|cnt|bsn|cli|cio|cha|hyd|aqu|hru|sol|lum)$") + for (f in written_files) { + fp <- file.path(output_dir, f) + first_line <- readLines(fp, n = 1) + # Meta line should contain "written by SWAT+ editor" or be a CLI data file + if (!grepl("\\.cli$", f) || f == "weather-sta.cli") { + expect_true( + grepl("written by SWAT\\+ editor", first_line) || + grepl("^\\w+\\.\\w+$", first_line), # CLI data file header + info = paste("File", f, "missing meta line, got:", first_line)) + } + } +}) + +# ------------------------------------------------------------------- +# Test: weather data from ERA5 CLI files integrates into database +# ------------------------------------------------------------------- + +test_that("ERA5 climate data integrates with weather stations and file writing", { + project <- create_write_test_project() + output_dir <- tempfile("txtinout_era5_") + on.exit({ + unlink(project$db_file) + unlink(output_dir, recursive = TRUE) + }) + + era5_dir <- system.file("extdata", "era5", package = "swatplusEditoR") + skip_if(nchar(era5_dir) == 0, "ERA5 data not installed") + + # Read the ERA5 CLI files to get the referenced data file names + pcp_lines <- readLines(file.path(era5_dir, "pcp.cli")) + tmp_lines <- readLines(file.path(era5_dir, "tmp.cli")) + + # Verify CLI file format (3 lines: header, "filename", data reference) + expect_equal(length(pcp_lines), 3) + expect_equal(pcp_lines[1], "pcp.cli") + expect_equal(pcp_lines[2], "filename") + expect_true(grepl("IDera5\\.pcp", pcp_lines[3])) + + # Now remove existing stations and add ERA5-referenced stations + remove_weather_stations(project) + era5_stations <- data.frame( + name = "era5_sta", + lat = -38.15, lon = 176.35, + pcp = trimws(pcp_lines[3]), + tmp = trimws(tmp_lines[3]), + slr = trimws(readLines(file.path(era5_dir, "slr.cli"))[3]), + hmd = trimws(readLines(file.path(era5_dir, "hmd.cli"))[3]), + wnd = trimws(readLines(file.path(era5_dir, "wnd.cli"))[3]), + stringsAsFactors = FALSE + ) + add_weather_stations(project, era5_stations) + + # Verify stations are in database + stations <- list_weather_stations(project) + expect_equal(nrow(stations), 1) + expect_equal(stations$name, "era5_sta") + expect_equal(stations$pcp, "IDera5.pcp") + + # Write config files with weather dir + write_config_files(project, output_dir = output_dir, weather_dir = era5_dir) + + # weather-sta.cli should reference the ERA5 station + weather_content <- paste(readLines(file.path(output_dir, "weather-sta.cli")), + collapse = " ") + expect_true(grepl("era5_sta", weather_content)) + expect_true(grepl("IDera5\\.pcp", weather_content)) + + # CLI data files should be copied to output + for (f in c("pcp.cli", "tmp.cli", "slr.cli", "hmd.cli", "wnd.cli")) { + expect_true(file.exists(file.path(output_dir, f)), + info = paste("ERA5 data file not copied:", f)) + } +}) + +# ---- populate_from_datasets tests ---- + +test_that("populate_from_datasets fills reference tables from rQSWATPlus", { + skip_if_not_installed("rQSWATPlus") + + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + on.exit(DBI::dbDisconnect(con), add = TRUE) + + # Create empty tables with minimal schema (as ensure_write_tables does) + DBI::dbExecute(con, "CREATE TABLE plants_plt (id INTEGER PRIMARY KEY, name TEXT)") + DBI::dbExecute(con, "CREATE TABLE fertilizer_frt (id INTEGER PRIMARY KEY, name TEXT)") + DBI::dbExecute(con, "CREATE TABLE cal_parms_cal (id INTEGER PRIMARY KEY, name TEXT)") + DBI::dbExecute(con, "CREATE TABLE snow_sno (id INTEGER PRIMARY KEY, name TEXT)") + DBI::dbExecute(con, "CREATE TABLE landuse_lum (id INTEGER PRIMARY KEY, name TEXT)") + DBI::dbExecute(con, "CREATE TABLE d_table_dtl (id INTEGER PRIMARY KEY, name TEXT)") + + # Verify they are empty + + expect_equal(DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM plants_plt")$n, 0L) + + # Run populate_from_datasets + swatplusEditoR:::populate_from_datasets(con) + + # Verify reference tables are now populated with full schemas + plants <- DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM plants_plt")$n + expect_true(plants > 200, + info = paste("Expected 266+ plants_plt rows, got", plants)) + + fert <- DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM fertilizer_frt")$n + expect_true(fert > 50, + info = paste("Expected 59+ fertilizer_frt rows, got", fert)) + + cal <- DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM cal_parms_cal")$n + expect_true(cal > 200, + info = paste("Expected 221+ cal_parms_cal rows, got", cal)) + + snow <- DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM snow_sno")$n + expect_true(snow >= 1, + info = paste("Expected 1+ snow_sno rows, got", snow)) + + lum <- DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM landuse_lum")$n + expect_true(lum > 200, + info = paste("Expected 284+ landuse_lum rows, got", lum)) + + # Decision tables should be filtered (lum.dtl + select res_rel.dtl) + dtl <- DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM d_table_dtl")$n + expect_true(dtl > 10, + info = paste("Expected 43+ d_table_dtl rows, got", dtl)) + + # Verify full schema was restored (not just id+name) + plant_cols <- DBI::dbGetQuery(con, "PRAGMA table_info(plants_plt)") + expect_true(nrow(plant_cols) > 40, + info = paste("Expected 50+ columns in plants_plt, got", + nrow(plant_cols))) +}) + +test_that("populate_from_datasets does not overwrite existing data", { + skip_if_not_installed("rQSWATPlus") + + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + on.exit(DBI::dbDisconnect(con), add = TRUE) + + # Create plants_plt with one row of data (simulating user-modified table) + DBI::dbExecute(con, "CREATE TABLE plants_plt (id INTEGER PRIMARY KEY, name TEXT)") + DBI::dbExecute(con, "INSERT INTO plants_plt (name) VALUES ('my_custom_plant')") + + # Run populate_from_datasets + swatplusEditoR:::populate_from_datasets(con) + + # The existing table with data should NOT be touched + plants <- DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM plants_plt")$n + expect_equal(plants, 1L) + custom <- DBI::dbGetQuery(con, "SELECT name FROM plants_plt")$name + expect_equal(custom, "my_custom_plant") +}) + +test_that("populate_from_datasets is idempotent", { + skip_if_not_installed("rQSWATPlus") + + db_path <- tempfile(fileext = ".sqlite") + on.exit(unlink(db_path)) + + con <- DBI::dbConnect(RSQLite::SQLite(), db_path) + on.exit(DBI::dbDisconnect(con), add = TRUE) + + # Run twice + swatplusEditoR:::populate_from_datasets(con) + n1 <- DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM plants_plt")$n + + swatplusEditoR:::populate_from_datasets(con) + n2 <- DBI::dbGetQuery(con, "SELECT COUNT(*) AS n FROM plants_plt")$n + + expect_equal(n1, n2) +}) diff --git a/src/r-api/swatplusEditoR/vignettes/simulation-setup.Rmd b/src/r-api/swatplusEditoR/vignettes/simulation-setup.Rmd new file mode 100644 index 00000000..b6eb6ead --- /dev/null +++ b/src/r-api/swatplusEditoR/vignettes/simulation-setup.Rmd @@ -0,0 +1,442 @@ +--- +title: "Setting Up a SWAT+ Simulation" +output: rmarkdown::html_vignette +vignette: > + %\VignetteIndexEntry{Setting Up a SWAT+ Simulation} + %\VignetteEngine{knitr::rmarkdown} + %\VignetteEncoding{UTF-8} +--- + +```{r setup, include = FALSE} +knitr::opts_chunk$set( + collapse = TRUE, + comment = "#>", + eval = FALSE +) +``` + +## Overview + +This vignette walks through every step involved in setting up and running a +SWAT+ simulation using the **swatplusEditoR** package. +The workflow assumes that watershed delineation and HRU definition have already +been completed—for example using the [rQSWATPlus](https://github.com/celray/rQSWATPlus) +package—and that a project database (`.sqlite` or `.db`) already exists. + +The typical simulation setup follows these steps: + +1. **Initialise the project** – create a project database from delineated + watershed data using rQSWATPlus (or load an existing database) +2. **Load and inspect the project** – validate the database and review GIS + tables +3. **Add weather data** – supply weather station observations and/or weather + generator parameters +4. **Configure simulation parameters** – set the time period, output options, + and adjust model parameters +5. **Write SWAT+ input files** – generate the complete TxtInOut file set + entirely within R +6. **Run the model** – execute the bundled SWAT+ executable + +--- + +## Step 1: Initialise the Project with rQSWATPlus + +The first step is to delineate the watershed and define HRUs. +The **rQSWATPlus** package automates this process from DEM, land-use, and soil +rasters. The example below uses the Ravn catchment data that ships with +rQSWATPlus: + +```{r rqswatplus-init} +# ── Locate example datasets bundled with rQSWATPlus ────────────────────────── +dem <- system.file("extdata", "ravn_dem.tif", package = "rQSWATPlus") +landuse <- system.file("extdata", "ravn_landuse.tif", package = "rQSWATPlus") +soil <- system.file("extdata", "ravn_soil.tif", package = "rQSWATPlus") +lu_lookup <- system.file("extdata", "ravn_landuse.csv", package = "rQSWATPlus") +soil_lookup <- system.file("extdata", "ravn_soil.csv", package = "rQSWATPlus") +outlet <- system.file("extdata", "ravn_outlet.shp", package = "rQSWATPlus") + +# ── Run the complete delineation + HRU workflow ────────────────────────────── +project <- rQSWATPlus::qswat_run( + project_dir = file.path(tempdir(), "ravn_quick"), + dem_file = dem, + landuse_file = landuse, + soil_file = soil, + landuse_lookup = lu_lookup, + soil_lookup = soil_lookup, + outlet_file = outlet, + threshold = 500, + slope_breaks = c(0, 5, 15, 9999), + landuse_threshold = 5, + soil_threshold = 5, + db_file = "swat.db", + quiet = TRUE +) +``` + +After `qswat_run()` completes, the `project` object contains the paths to all +generated files and, crucially, the `db_file` field pointing to the SQLite +project database. + +> **Tip:** If you already have an existing SWAT+ Editor project database you +> can skip this step and simply point `project$db_file` at that file. + +--- + +## Step 2: Load and Inspect the Project + +Once the database exists, use **swatplusEditoR** to load and validate it: + +```{r load-project} +library(swatplusEditoR) + +# Load the project – validates the database and lists available GIS tables +project <- load_project(project) +``` + +### Reviewing Project Information + +```{r project-info} +# Summary of project status +info <- get_project_info(project) +info +``` + +`get_project_info()` returns a list with counts for subbasins, channels, HRUs, +weather stations, and timestamps showing when files were last written or the +model was last run. + +### Reading GIS Data + +You can inspect any of the GIS tables directly: + +```{r gis-data} +# Read all GIS tables at once +gis <- read_gis_data(project) +names(gis) + +# Or read individual tables +subbasins <- read_gis_subbasins(project) +head(subbasins) + +channels <- read_gis_channels(project) +head(channels) + +hrus <- read_gis_hrus(project) +head(hrus) +``` + +Other GIS readers include `read_gis_lsus()`, `read_gis_aquifers()`, +`read_gis_routing()`, `read_gis_water()`, and `read_gis_points()`. + +--- + +## Step 3: Add Weather Data + +SWAT+ requires weather forcing data. You can add **weather stations** (which +reference `.cli` files on disk) and **weather generators** (monthly statistics +used by the built-in weather generator). + +### Adding Weather Stations + +Create a data frame where each row represents a station. The `pcp`, `tmp`, +`slr`, `hmd`, `wnd`, and `pet` columns contain the file names of the +corresponding climate input files: + +```{r add-stations} +stations <- data.frame( + name = c("station1", "station2"), + lat = c(55.8, 55.9), + lon = c(9.6, 9.7), + pcp = c("pcp1.cli", "pcp2.cli"), + tmp = c("tmp1.cli", "tmp2.cli"), + slr = c("slr1.cli", "slr2.cli"), + hmd = c("hmd1.cli", "hmd2.cli"), + wnd = c("wnd1.cli", "wnd2.cli"), + pet = c("pet1.cli", "pet2.cli"), + atmo_dep = c("atmo1.cli", "atmo2.cli"), + stringsAsFactors = FALSE +) + +add_weather_stations(project, stations) +``` + +### Setting the Weather Data Directory + +Tell SWAT+ where to find the climate files on disk: + +```{r set-weather-dir} +set_weather_dir(project, "/path/to/weather/data") +``` + +### Listing and Updating Stations + +```{r list-stations} +# View all registered stations +list_weather_stations(project) + +# Update a single station field (e.g. change the PCP file) +update_weather_station(project, station_id = 1, pcp = "pcp1_v2.cli") +``` + +### Adding Weather Generators + +Weather generator (WGN) parameters provide monthly climate statistics that +SWAT+ uses when observed data are missing: + +```{r add-wgn} +wgn <- data.frame( + name = "wgn_ravn", + lat = 55.85, + lon = 9.65, + elev = 50, + rain_yrs = 30, + stringsAsFactors = FALSE +) + +add_weather_generators(project, wgn) +``` + +You can optionally supply a `monthly_data` data frame with 12 rows of monthly +statistics (temperature means/std dev, precipitation, solar radiation, etc.). + +--- + +## Step 4: Configure the Simulation + +### Setting the Simulation Period + +Define the start and end dates for the model run. Julian days are used +(1 = January 1, 365 = December 31): + +```{r sim-time} +set_simulation_time( + project, + day_start = 1, + yrc_start = 2000, + day_end = 365, + yrc_end = 2010, + step = 0 # 0 = daily time step +) +``` + +### Configuring Output Options + +Control what SWAT+ writes during and after the simulation: + +```{r print-options} +set_print_options( + project, + nyskip = 2, # skip 2 years for warm-up + csvout = TRUE, # write CSV output files + dbout = FALSE, # do not write SQLite output + cdfout = FALSE # do not write NetCDF output +) +``` + +### Updating Model Parameters + +`update_parameters()` is a general-purpose function that can modify any +database table. Common tables include: + +| Table | Contents | +|-------|----------| +| `hydrology_hyd` | Curve number, percolation, lateral flow | +| `topography_hyd` | Slope, slope length | +| `aquifer_aqu` | Groundwater parameters | +| `channel_cha` | Channel geometry and erodibility | +| `codes_bsn` | Basin-wide model codes | +| `parameters_bsn` | Basin-wide calibration parameters | + +```{r update-params} +# Update curve number for ALL HRUs +update_parameters(project, "hydrology_hyd", list(cn2 = 65)) + +# Update only specific HRUs (by row ID) +update_parameters(project, "hydrology_hyd", list(cn2 = 70), ids = c(1, 2, 3)) + +# Adjust percolation coefficient +update_parameters(project, "hydrology_hyd", list(perco = 0.5)) + +# Modify aquifer parameters +update_parameters(project, "aquifer_aqu", list(gw_dp = 30, bf_max = 1.5)) +``` + +### Configuring GWFLOW (Optional) + +If your model requires a detailed groundwater module: + +```{r gwflow} +# Check current GWFLOW status +get_gwflow_status(project) + +# Initialise GWFLOW grid +init_gwflow(project, cell_size = 200, row_count = 100, col_count = 150) + +# Get/update base configuration +base <- get_gwflow_base(project) +update_gwflow_base(project, boundary_conditions = "constant_head") + +# Get/update zones +zones <- get_gwflow_zones(project) +update_gwflow_zones(project, zone_id = 1, aquifer_k = 15.0) +``` + +--- + +## Step 5: Write SWAT+ Input Files + +With the database fully configured, generate the complete set of SWAT+ input +text files (the "TxtInOut" directory). **This is done entirely within R**—no +external Python executable or API server is needed: + +```{r write-files} +write_config_files(project) +``` + +By default the files are written to a `TxtInOut` sub-directory inside the +project directory. You can customise the output location and provide a +directory of weather data files to copy: + +```{r write-files-custom} +write_config_files( + project, + output_dir = file.path(project$project_dir, "TxtInOut"), + weather_dir = "/path/to/weather/data" +) +``` + +The function writes the full suite of SWAT+ input files including: + +- **file.cio** – master index +- **time.sim** – simulation period +- **print.prt** – output configuration +- Climate station and weather generator files +- Connection, channel, reservoir, and routing files +- HRU, aquifer, basin, hydrology, and soils files +- Land-use management, operations, and structural files +- Calibration and decision-table files +- Region definition files + +--- + +## Step 6: Run the Model + +The package ships with a bundled Windows SWAT+ executable. +Use `run_swatplus()` to launch it: + +```{r run-model} +result <- run_swatplus( + swat_exe = swatplus_exe(), + working_dir = file.path(project$project_dir, "TxtInOut"), + timeout = 3600, # 1-hour timeout + verbose = TRUE # stream output to console +) +``` + +> **Note:** `swatplus_exe()` returns the path to the bundled Windows +> executable (`rev61.0.2_64rel.exe`). On Linux or macOS you will need to +> supply the path to a compatible SWAT+ binary instead. + +The returned list contains: + +```{r run-result} +result$success # TRUE if exit code == 0 +result$elapsed # run time in seconds +result$status # exit code +``` + +--- + +## Complete Workflow Example + +Putting it all together, here is a minimal end-to-end script: + +```{r full-workflow} +library(swatplusEditoR) + +# ── 1. Create the project (via rQSWATPlus) ────────────────────────────────── +dem <- system.file("extdata", "ravn_dem.tif", package = "rQSWATPlus") +landuse <- system.file("extdata", "ravn_landuse.tif", package = "rQSWATPlus") +soil <- system.file("extdata", "ravn_soil.tif", package = "rQSWATPlus") +lu_lookup <- system.file("extdata", "ravn_landuse.csv", package = "rQSWATPlus") +soil_lookup <- system.file("extdata", "ravn_soil.csv", package = "rQSWATPlus") +outlet <- system.file("extdata", "ravn_outlet.shp", package = "rQSWATPlus") + +project <- rQSWATPlus::qswat_run( + project_dir = file.path(tempdir(), "ravn_quick"), + dem_file = dem, + landuse_file = landuse, + soil_file = soil, + landuse_lookup = lu_lookup, + soil_lookup = soil_lookup, + outlet_file = outlet, + threshold = 500, + slope_breaks = c(0, 5, 15, 9999), + landuse_threshold = 5, + soil_threshold = 5, + db_file = "swat.db", + quiet = TRUE +) + +# ── 2. Load the project into swatplusEditoR ───────────────────────────────── +project <- load_project(project) + +# ── 3. Add weather data ───────────────────────────────────────────────────── +stations <- data.frame( + name = "ravn_met", lat = 55.85, lon = 9.65, + pcp = "pcp.cli", tmp = "tmp.cli", slr = "slr.cli", + hmd = "hmd.cli", wnd = "wnd.cli", pet = "pet.cli", + atmo_dep = "atmo.cli", stringsAsFactors = FALSE +) +add_weather_stations(project, stations) +set_weather_dir(project, "/path/to/weather") + +# ── 4. Configure simulation ───────────────────────────────────────────────── +set_simulation_time(project, + day_start = 1, yrc_start = 2000, + day_end = 365, yrc_end = 2010 +) +set_print_options(project, nyskip = 2, csvout = TRUE) + +# ── 5. Write input files ──────────────────────────────────────────────────── +write_config_files(project) + +# ── 6. Run the model ──────────────────────────────────────────────────────── +result <- run_swatplus( + swat_exe = swatplus_exe(), + working_dir = file.path(project$project_dir, "TxtInOut"), + verbose = TRUE +) + +cat("Success:", result$success, "\n") +cat("Elapsed:", round(result$elapsed, 1), "seconds\n") +``` + +--- + +## Tips and Troubleshooting + +* **Database access** – You can always open the project database directly for + custom queries: + + ```r + con <- open_project_db(project$db_file) + DBI::dbGetQuery(con, "SELECT * FROM time_sim") + DBI::dbDisconnect(con) + ``` + +* **Parameter exploration** – To see what columns a table has, read it first: + + ```r + con <- open_project_db(project$db_file) + head(DBI::dbReadTable(con, "hydrology_hyd")) + DBI::dbDisconnect(con) + ``` + +* **Weather file names** – The file names in `add_weather_stations()` must + match files present in the weather data directory or already copied to + TxtInOut. + +* **Cross-platform execution** – The bundled executable is Windows-only. On + Linux / macOS, compile SWAT+ from source and pass the path to + `run_swatplus(swat_exe = "/path/to/swatplus")`.